
    .table-vip { font-size: 0.85rem; border-collapse: separate; border-spacing: 0; table-layout: fixed; width: 100%; }
    .table-vip thead th { background-color: #1D2B53 !important; color: white !important; text-align: center; padding: 12px 4px; border: 1px solid #34447c; }
    
    /* COLUMNA FIJA ESTUDIANTE */
    .col-fixed { 
        position: sticky; left: 0; background: white !important; z-index: 10; 
        width: 250px; /* Ancho fijo para PC */
        border-right: 2px solid #1D2B53 !important; 
    }
    
    /* CELDAS DE MARCADO */
    .cell-check { 
        cursor: pointer; text-align: center; vertical-align: middle; 
        border: 1px solid #eee; transition: 0.2s;
        width: auto; /* Que se adapte al espacio restante en PC */
    }
    .cell-check:hover { background-color: #fff9c4; }
    .check-active { background-color: #28a745 !important; color: white; }

    /* AJUSTE ESPECÍFICO PARA MÓVIL */
    @media (max-width: 768px) {
        .table-vip { table-layout: auto; } /* En móvil vuelve a ser flexible */
        .col-fixed { width: 140px; min-width: 140px; font-size: 0.75rem; }
        .cell-check { width: 40px; min-width: 40px; height: 40px; }
        .extra-info { display: none; }
    }