/* Avatar cuando NO hay lección iniciada */
.avatar-asistencia.no-leccion {
    
    color: #757575;
    border-radius: 50%;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(0, 0, 0, 0.15),
        4px 4px 10px rgba(0, 0, 0, 0.15);

    cursor: not-allowed;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Icono apagado */
.avatar-asistencia.no-leccion .icono {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Hover sutil (solo visual) */
.avatar-asistencia.no-leccion:hover {
    transform: scale(1.02);
}

/* Quitar cualquier animación heredada */
.avatar-asistencia.no-leccion *,
.avatar-asistencia.no-leccion::before,
.avatar-asistencia.no-leccion::after {
    animation: none !important;
}
