/* =========================
   ESTILOS PARA LA TABLA
========================= */

/* Encabezados de la tabla */
.table thead th,
.table .table-secondary th {
    color: #475569; /* mismo color del título */
    font-weight: 700;              /* misma negrita */
    font-size: 1.125rem;
    vertical-align: middle;
}

/* Texto normal de la tabla */
.table tbody td {
    color: #475569; /* mismo color del texto normal */
    font-weight: 400;
    vertical-align: middle;
}

/* Opcional: mejora visual */
.table tbody tr:hover {
    background-color: rgba(0,0,0,0.03);
}


