body{
    background:#f5f7f6;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* HEADER */

.portal-header{
    background:#0f5132;
    color:white;
    padding:15px 30px;
    border-radius:6px;
    margin-bottom:30px;
}

/* CARDS */

.portal-card{
    background:white;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    padding:25px;
}

/* BOTONES */

.btn-cohan{
    background:#198754;
    color:white;
    border:none;
}

.btn-cohan:hover{
    background:#157347;
    color:white;
}

/* TABLAS */

.table thead{
    background:#e9f5ee;
}

/* MINI PDF */

.pdf-mini{
    border:1px solid #dcdcdc;
    border-radius:6px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

/* =========================
   TABLAS PROFESIONALES
========================= */

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.2s;
}

/* =========================
   BADGES ESTADO
========================= */

.badge-estado {
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 10px;
}

/* =========================
   CARD PORTAL
========================= */

.card-cohan {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* =========================
   TITULOS
========================= */

.titulo-seccion {
    font-weight: 600;
    margin-bottom: 10px;
}

body {
    background: linear-gradient(135deg, #e6f0ff, #d4e4ff);
    min-height: 100vh;
    position: relative;
}

/* mejora cards */
.card-cohan:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image: radial-gradient(rgba(13,110,253,0.08) 1px, transparent 1px);
    background-size: 20px 20px;

    opacity: 0.6;
}

footer {
    font-size: 12px;
    opacity: 0.8;
}

footer small {
    display: block;
    margin-bottom: 3px;
}