:root {
    /* Definimos los colores en formato RGB numérico para poder jugar con la opacidad */
    --bg-rgb: 227, 244, 242;      /* #E3F4F2 */
    --fg-rgb: 31, 41, 55;         /* #1F2937 */
    --card-rgb: 255, 255, 255;    /* #FFFFFF */
    --accent-rgb: 58, 126, 118;   /* #3A7E76 */
    
    /* Variables normales usando las RGB de arriba */
    --bg: rgb(var(--bg-rgb));
    --fg: rgb(var(--fg-rgb));
    --card: rgb(var(--card-rgb));
    --heading: #F3F4F6;
    --accent: rgb(var(--accent-rgb));
    --accent-hover: #2D6660;
    
    /* Variables auxiliares se mantienen igual */
    --completed-bg: #ECFDF5; 
    --completed-fg: #059669;
    --overdue-bg: #FEF2F2; 
    --overdue-fg: #DC2626;
    --border: rgba(255, 255, 255, 0.4); /* Borde más sutil para cristal */
    --shadow: rgba(58, 126, 118, 0.15);
}

body.dark {
    --bg-rgb: 17, 24, 39;         /* #111827 */
    --fg-rgb: 249, 250, 251;      /* #F9FAFB */
    --card-rgb: 31, 41, 55;       /* #1F2937 */
    --accent-rgb: 45, 212, 191;   /* #2DD4BF */

    --bg: rgb(var(--bg-rgb));
    --fg: rgb(var(--fg-rgb));
    --card: rgb(var(--card-rgb));
    --heading: #374151;
    --accent: rgb(var(--accent-rgb));
    --accent-hover: #14B8A6;
    
    --completed-bg: #064E3B; 
    --completed-fg: #6EE7B7;
    --overdue-bg: #450A0A; 
    --overdue-fg: #FCA5A5;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0,0,0,0.4);
}

body { font-family: 'Quicksand', sans-serif; background: var(--bg); color: var(--fg); margin: 0; padding: 0; min-height: 100vh; transition: 0.3s; overscroll-behavior-y: none; touch-action: pan-y }
.view-container { display: flex; justify-content: center; width: 100%; padding: 20px; box-sizing: border-box; }
.app-wrapper { width: 100%; max-width: 800px; padding-bottom: 100px; }

/* Login */
.login-box { background: var(--card); padding: 40px; border-radius: 24px; width: 100%; max-width: 400px; margin-top: 10vh; text-align: center; box-shadow: 0 20px 50px var(--shadow); }
.login-box h1 { color: var(--accent); font-size: 2.5rem; margin-bottom: 30px; letter-spacing: -1px; }

/* Inputs */
input, textarea { 
    width: 100%; 
    padding: 16px; 
    border-radius: 16px; 
    
    /* Fondo más oscuro/claro que la tarjeta, pero transparente */
    background: rgba(var(--bg-rgb), 0.5); 
    
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde muy sutil */
    color: var(--fg); 
    
    font-family: inherit; 
    font-size: 16px; 
    outline: none; 
    margin-bottom: 10px;
    
    /* Sombra interna para dar profundidad "hundida" */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

input:focus, textarea:focus { 
    background: rgba(var(--bg-rgb), 0.8);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.input-wrapper { position: relative; margin-bottom: 5px; }
.eye-btn { position: absolute; right: 15px; top: 42%; transform: translateY(-50%); opacity: 0.5; color:#111826; cursor: pointer; font-size: 1.2rem; z-index: 10; }

/* Botones */
.btn-main { 
    /* Bajamos la opacidad para ver el fondo a través del botón */
    background: rgba(var(--accent-rgb), 0.75) !important;
    color: white; 
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
    
    /* EFECTO LÍQUIDO 3D */
    box-shadow: 
        0 4px 15px var(--shadow),                 /* Sombra externa */
        inset 0 2px 4px rgba(255,255,255,0.3),    /* Brillo superior interno */
        inset 0 -2px 4px rgba(0,0,0,0.1);         /* Sombra inferior interna */
        
    transition: all 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(var(--accent-rgb), 0.95);
    box-shadow: 
        0 10px 25px var(--shadow),
        inset 0 2px 4px rgba(255,255,255,0.4);
}


.btn-main:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--fg); border: none; font-weight: 600; cursor: pointer; opacity: 0.7; width: 100%; margin-top: 10px; }
.btn-icon { background: transparent; color: var(--fg); border: none; font-size: 1.4rem; padding: 8px; cursor: pointer; display: flex; border-radius: 8px; }
.btn-icon:hover { background: var(--bg); color: var(--accent); }

/* Seguridad */
.pw-meter { height: 6px; background: #ddd; border-radius: 3px; margin: 10px 0; display: flex; overflow: hidden; }
.pw-seg { flex: 1; height: 100%; border-right: 1px solid var(--card); transition: 0.3s; }
.pw-text { font-size: 0.8rem; text-align: left; font-weight: bold; margin-bottom: 15px; }

/* Header */
header { margin-bottom: 20px; }
.top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px; /* Esto controla la altura en la barra superior. */
    width: auto;  /* Mantiene la proporción */
    object-fit: contain;
    pointer-events: none;       /* La magia: ignora el toque en la imagen y permite scroll */
    user-select: none;          /* Evita que se ponga azul al mantener presionado */
    -webkit-user-drag: none;    /* Evita el "fantasma" al arrastrar en Chrome/Safari */
    -webkit-touch-callout: none;
}
.profile-pill { background: var(--card); border: 1px solid var(--border); padding: 5px 12px 5px 5px; border-radius: 50px; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.avatar-small { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); }
.search-container { background: var(--card); border: 1px solid var(--border); padding: 5px 15px; border-radius: 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px var(--shadow); }
.search-bar { border: none; margin: 0; background: transparent; flex-grow: 1; }

/* CORRECCIÓN BOTÓN VER TODO */
#filterBtn {
    width: auto !important; 
    margin-top: 0 !important; 
    padding: 6px 12px; 
    white-space: nowrap;
    font-size: 0.85rem;
}

/* Materias */
.subject-card { 
    /* CAMBIO CLAVE: De 0.65 bajamos a 0.35 para que sea REALMENTE transparente */
    background: rgba(var(--card-rgb), 0.35) !important;
    
    /* Desenfoque fuerte */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    border-radius: 24px; 
    margin-bottom: 15px; 
    
    /* Borde blanco más notable */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    
    /* Sombra con tinte azulado */
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
        
    overflow: hidden; 
    transition: transform 0.2s, background 0.3s;
}

body.dark .subject-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}


.subject-card.dragging { opacity: 0.5; border: 2px dashed var(--accent); transform: scale(0.98); }
.subject-header { 
    padding: 15px; 
    display: flex; 
    align-items: center; 
    
    /* Fondo ligeramente diferente para separar del cuerpo, pero transparente */
    background: linear-gradient(to right, rgba(255,255,255,0.05), transparent);
    
    cursor: pointer; 
    
    /* Borde inferior suave */
    border-bottom: 1px solid rgba(var(--fg-rgb), 0.05);
    
    touch-action: pan-y;
    user-select: none;
}

.subject-info { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; flex-grow: 1; }
.color-dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--border); }
.chevron { transition: 0.3s; font-size: 1.2rem; opacity: 0.5; }
.collapsed .chevron { transform: rotate(-90deg); }
.actions { display: flex; gap: 5px; margin-left: auto; }

/* Tareas */
.task-list { padding: 0; margin: 0; display: block; }
.task-list.collapsed { display: none; }
.task-item { padding: 12px; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; transition: 0.2s; }
.task-content { flex-grow: 1; min-width: 0; }
.task-title { font-weight: 600; font-size: 1rem; line-height: 1.3; }
.task-desc { font-size: 0.85rem; opacity: 0.7; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.task-desc.expanded { -webkit-line-clamp: unset; }
.task-date { font-size: 0.75rem; font-weight: 700; margin-top: 6px; display: inline-flex; gap: 4px; opacity: 0.8; background: var(--bg); padding: 2px 6px; border-radius: 4px; }

.state-done { background: var(--completed-bg) !important; }
.state-done .task-title { text-decoration: line-through; color: var(--completed-fg); }
.state-overdue { background: var(--overdue-bg) !important; border-left: 4px solid var(--overdue-fg); }
.state-overdue .task-title, .state-overdue .task-date { color: var(--overdue-fg); }

/* FAB */
.fabs { position: fixed; bottom: 25px; right: 25px; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; z-index: 50; }
.fab-mini { width: 48px; height: 48px; border-radius: 50%; background: var(--card); color: var(--fg); border: 1px solid var(--border); font-size: 1.4rem; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 5px 15px var(--shadow); }
.fab-main { background: var(--accent); color: white; padding: 16px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.2); border: none; cursor: pointer; }

/* Modales */
.modal-wrap { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 1000; display: none; justify-content: center; align-items: center; padding: 20px; }
.modal-wrap.active { display: flex; }
.modal { background: var(--card); width: 100%; max-width: 400px; padding: 25px; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto; }
.modal.center { text-align: center; }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.hidden { display: none !important; }
.mt-10 { margin-top: 10px; } .mt-15 { margin-top: 15px; } .text-red { color: #ef4444; } .text-left { text-align: left; display: block; font-weight: 600; margin-bottom: 5px; }

/* Grids */
.color-grid { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.color-opt { width: 36px; height: 36px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; }
.color-opt.selected { border-color: var(--fg); transform: scale(1.2); }

.avatar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 20px 0; }
.avatar-opt { width: 100%; aspect-ratio: 1; border-radius: 50%; border: 2px solid transparent; cursor: pointer; background: var(--bg); }
.avatar-opt.selected { border-color: var(--accent); transform: scale(1.1); }
.avatar-large { width: 80px; height: 80px; border-radius: 50%; background: var(--bg); margin-bottom: 10px; }
.welcome-list { text-align: left; padding-left: 20px; opacity: 0.8; line-height: 1.8; margin-bottom: 25px; }

/* Botón de Ayuda (Izquierda Abajo) */
.fab-help {
    position: fixed;
    bottom: 25px;
    left: 25px; /* A la izquierda */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    color: var(--fg);
    border: 1px solid var(--border);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow);
    z-index: 90; /* Por encima de casi todo */
    transition: transform 0.2s;
}

.fab-help:hover {
    transform: scale(1.1);
    color: var(--accent);
    border-color: var(--accent);
}

/* --- ANIMACIONES PARA LOS OTROS BOTONES --- */

/* 1. Botones Pequeños (Archivadas y Tema) */
.fab-mini {
    transition: transform 0.2s ease, color 0.2s, border-color 0.2s;
}

.fab-mini:hover {
    transform: scale(1.1);        /* Crece un 10% */
    color: var(--accent);         /* Se pinta del color del tema */
    border-color: var(--accent);  /* El borde también cambia */
}

/* 2. Botón Grande (Agregar Materia) */
.fab-main {
    transition: transform 0.2s ease, background-color 0.2s;
}

.fab-main:hover {
    transform: scale(1.05);       /* Crece un 5% */
    background-color: var(--accent-hover); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}

/* --- BOTÓN DE AGREGAR AL FINAL DE LA LISTA --- */
.btn-add-bottom {
    width: 100%;
    padding: 20px;
    margin-top: 15px; /* Separación de la última materia */
    
    background: transparent; /* Fondo transparente para no pesar visualmente */
    border: 2px dashed var(--border); /* Borde punteado elegante */
    border-radius: 16px; /* Mismo redondeo que las tarjetas */
    
    color: var(--fg);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    
    opacity: 0.6; /* Un poco tenue por defecto */
    transition: all 0.2s ease;
}

.btn-add-bottom:hover {
    background: var(--card); 
    border-color: var(--accent); 
    color: var(--accent); 
    opacity: 1;
    transform: scale(1.01); 
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-add-bottom i {
    font-size: 1.4rem;
}

/* --- CORRECCIÓN: NOMBRES LARGOS --- */
.actions {
    flex-shrink: 0; 
    margin-left: 10px; 
}

.subject-info {
    min-width: 0; 
    margin-right: 5px;
}

.subject-info span:not(.drag-handle) {
    white-space: nowrap;      
    overflow: hidden;         
    text-overflow: ellipsis;  
    flex-grow: 1;             
    flex-shrink: 1;           
    min-width: 0;
}

.subject-info small,
.subject-info .chevron,
.subject-info .color-dot {
    flex-shrink: 0;
}

/* --- ANIMACIÓN DE ENTRADA: ORBES FLOTANTES --- */

#auth-view {
    position: relative;
    width: 100%;           
    min-height: 100vh;     
    overflow: hidden;      
    background: var(--bg); 
    display: flex;
    justify-content: center;
    align-items: flex-start; 
}

.orbs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px); 
    opacity: 0.5; 
    animation: floatOrb 8s infinite ease-in-out alternate;
}

.orb-1 {
    width: 300px; height: 300px;
    background: var(--accent); 
    top: -50px; 
    left: -50px;
    animation-duration: 12s;
}

.orb-2 {
    width: 250px; height: 250px;
    background: #F06292; 
    bottom: 10%; 
    right: -50px;
    animation-delay: -2s;
}

.orb-3 {
    width: 150px; height: 150px;
    background: #42A6FF; 
    top: 40%; 
    left: 20%;
    animation-duration: 10s;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* EFECTO CRISTAL PARA EL LOGIN */
#auth-view .login-box {
    position: relative;
    z-index: 1; 
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

body.dark #auth-view .login-box {
    background: rgba(31, 41, 55, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
} /* <--- ¡AQUÍ FALTABA LA LLAVE DE CIERRE! YA ESTÁ ARREGLADO */

/* --- ARREGLO DEFINITIVO CRISTAL (GLASSMORPHISM) --- */

/* 1. EL TELÓN DE FONDO (modal-wrap) */
.modal-wrap {
    background: rgba(0, 0, 0, 0.2) !important; 
    backdrop-filter: blur(5px) !important; 
    -webkit-backdrop-filter: blur(5px);
}

/* 2. LA VENTANA DE CRISTAL (.modal) */
.modal {
    background: rgba(255, 255, 255, 0.60) !important; 
    backdrop-filter: blur(15px) !important; 
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    color: var(--fg);
}

/* 3. MODO OSCURO */
body.dark .modal-wrap {
    background: rgba(0, 0, 0, 0.4) !important; 
}

body.dark .modal {
    background: rgba(30, 40, 55, 0.65) !important; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* 4. Arreglo para que los Inputs se lean bien sobre el cristal */
.modal input, 
.modal textarea {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

body.dark .modal input, 
body.dark .modal textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}


/* --- ANIMACIÓN DE BRILLO PARA BOTÓN ENTRAR --- */

.btn-main {
    position: relative; /* Necesario para contener el brillo */
    overflow: hidden;   /* Para que el brillo no se salga del botón */
    z-index: 1;         /* Para estar encima del brillo */
}

/* La luz que pasará */
.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Empieza escondido a la izquierda */
    width: 100%;
    height: 100%;
    
    /* Degradado inclinado transparente-blanco-transparente */
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    
    transition: all 0.6s; /* Duración del paso de luz */
    z-index: -1; /* Detrás del texto */
}

/* Al pasar el mouse, la luz cruza a la derecha */
.btn-main:hover::before {
    left: 100%;
}

/* --- 1. ANIMACIONES DE TRANSICIÓN (LOGIN -> APP) --- */
.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.5s ease;
}

.fade-in {
    animation: enterApp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes enterApp {
    0% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- 2. AJUSTES MÓVILES --- */
@media (max-width: 768px) {
    /* Ocultamos los botones SOLO en la tarjeta de MATERIA */
    .subject-card > .subject-header .actions {
        display: none !important;
    }
    
    /* En las TAREAS se quedan visibles (no tocamos .task-item .actions) */
    
    /* Damos más espacio al texto de la materia */
    .subject-info span {
        margin-right: 0;
    }
}

/* --- 3. ESTILO MODAL "BOTTOM SHEET" (Menú inferior) --- */
.modal.bottom-sheet {
    margin-top: auto; /* Se pega abajo */
    margin-bottom: 20px;
    width: 90%;
    max-width: 400px;
    transform: translateY(20px);
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.mobile-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-option {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--fg);
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.btn-option i { font-size: 1.3rem; color: var(--accent); }
.btn-option:active { background: var(--card); transform: scale(0.98); }
.mb-15 { margin-bottom: 15px; }

/* Ajuste para el logo en la caja de login */
.login-logo img {
    max-width: 180px; /* Ajusta este número según qué tan grande lo quieras */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;       /* La magia: ignora el toque en la imagen y permite scroll */
    user-select: none;          /* Evita que se ponga azul al mantener presionado */
    -webkit-user-drag: none;    /* Evita el "fantasma" al arrastrar en Chrome/Safari */
    -webkit-touch-callout: none;
}

/* --- BOTÓN DE CERRAR SESIÓN (Header) --- */
.btn-logout {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ef4444; /* Color rojo base */
    cursor: pointer;
    font-size: 1.3rem;
    
    /* AQUÍ ESTÁ LA ANIMACIÓN */
    transition: all 0.2s ease;
}

.btn-logout:hover {
    transform: scale(1.1); /* Crece un 10% */
    background: #FEF2F2;   /* Fondo rojo muy suave */
    border-color: #ef4444; /* El borde se pone rojo */
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2); /* Sombra roja sutil */
}


/* --- ESTILOS DEL CAFÉ --- */
.qr-container {
    background: #e3f4f2;
    color: #1F2937;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qr-img {
    width: 250px; /* Tamaño del QR */
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    mix-blend-mode: multiply;
}

/* Pestañas (Invitar | Muro) */
.tab-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--bg);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.tab-switch button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    color: var(--fg);
    font-weight: 600;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}
.tab-switch button.active {
    background: var(--card);
    opacity: 1;
    box-shadow: 0 2px 5px var(--shadow);
    color: var(--accent);
}

/* Tarjeta de Donación en el Muro */
.donation-item {
    background: var(--bg);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: left;
    border: 1px solid var(--border);
}
.donation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.donation-name {
    font-weight: 700;
    color: var(--accent);
}
.donation-msg {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Corrección para el botón dentro del QR */
.qr-container .btn-ghost {
    color: #1F2937 !important; /* <--- Fuerza el texto a ser gris oscuro siempre */
    border: 1px solid rgba(31, 41, 55, 0.2); /* Le ponemos un borde suave para que se note más */
    opacity: 1; /* Le quitamos la transparencia por defecto */
}

.qr-container .btn-ghost:hover {
    background: rgba(31, 41, 55, 0.05); /* Efecto hover suave */
    color: #000 !important;
}

/* --- SPINNER DE CARGA --- */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(58, 126, 118, 0.1); /* Color suave de fondo */
    border-left-color: var(--accent); /* Tu color principal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* --- TEMA NAVIDAD "DELUGE" (Estilo Regalo) --- */
body.christmas {
    /* Fondo Rojo con degradado radial para profundidad */
    --bg: #8B0000; /* Color de respaldo */
    background: radial-gradient(circle, #a51818 0%, #580000 100%);
    
    /* Textos y Bordes */
    --fg: #8B0000;        /* Texto crema suave */
    --heading: #D4AF37;   /* Dorado para textos especiales */
    --accent: #D4AF37;    /* Botones dorados */
    --accent-hover: #C5A059;
    --border: #D4AF37;    /* Borde Dorado Metálico */
    
    /* Colores funcionales */
    --completed-bg: rgba(46, 125, 50, 0.5); 
    --completed-fg: #81c784;

/* AGREGADO: Tareas Retrasadas */
    --overdue-bg: rgba(0, 0, 0, 0.3); 
    --overdue-fg: #ff4d4d;
}

/* 1. TARJETAS: Estilo "Caja de Regalo" */
body.christmas .subject-card {
    background: transparent; /* Quitamos fondo general */
    border: 2px solid #D4AF37; /* Borde dorado grueso */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra fuerte */
    overflow: visible; /* ¡IMPORTANTE! Para que el gorro de santa pueda salir de la caja */
    position: relative;
    margin-top: 30px; /* Espacio extra para el gorro */
}

/* 2. DECORACIÓN: Gorrito de Santa Flotante (Usando Emoji) */
body.christmas .subject-card::before {
    content: "❄️"; 
    font-size: 3rem;
    position: absolute;
    top: -35px; /* Lo subimos para que "cuelgue" de la esquina */
    left: -15px;
    z-index: 20;
    transform: rotate(-15deg);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
}

/* 3. DECORACIÓN: Lazo Dorado en el centro (Usando Emoji) */
body.christmas .subject-card::after {
    content: "🎄";
    font-size: 2.5rem;
    position: absolute;
    top: 45px; /* Justo en la unión del blanco y el verde */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

/* 4. ENCABEZADO: Blanco Crema */
body.christmas .subject-header {
    background: #FFF8F0;
    border-bottom: 4px double #D4AF37; /* Doble línea dorada */
    color: #8B0000; /* Texto rojo oscuro */
    border-radius: 14px 14px 0 0;
    position: relative;
    padding-top: 15px;
}

/* Pequeño detalle de muérdago en el header */
body.christmas .subject-header .subject-info::after {
    content: "✨";
    margin-left: 8px;
    font-size: 1.2rem;
}

/* 5. LISTA DE TAREAS: Verde Pizarra */
body.christmas .task-list {
    background: #1a472a; /* Verde oscuro elegante */
    color: #fff;
    border-radius: 0 0 14px 14px;
    padding: 5px;
}

/* Tareas individuales */
body.christmas .task-item {
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3); /* Línea punteada dorada */
}

/* 6. BOTÓN GRANDE (Nueva Materia) */
body.christmas .btn-add-bottom {
    background: #1a472a;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

body.christmas .btn-add-bottom:hover {
    background: #2e7d32;
    color: white;
}


/* --- CORRECCIÓN: LEGIBILIDAD LOGIN NAVIDAD --- */
body.christmas .login-box input {
    color: #ffffff !important;       /* Texto BLANCO PURO al escribir */
    font-weight: 600;                /* Un poco más gordito para que se lea mejor */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Sombra suave para separar del fondo */
}


/* 1. Estilo general de los botones del menú (Editar, Agregar Tarea) */
body.christmas .btn-option {
    background: #FFF8F0 !important;       /* Fondo Crema (Papel) */
    color: #3e1f00 !important;            /* Texto Café oscuro (Legible) */
    border: 1px solid #D4AF37 !important; /* Borde Dorado */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Sombra para que floten */
    font-weight: 600;

}


/* Color del texto de ayuda (ej: "Correo Electrónico") */
body.christmas .login-box input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important; 
}


body.christmas #btnCafe {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%) !important; /* Degradado Dorado */
    color: #3e1f00 !important;       /* Texto Café/Marrón oscuro para contraste elegante */
    font-weight: 800 !important;      /* Letra muy gruesa */
    border: 1px solid #FFF8E1 !important; /* Borde crema */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Sombra flotante */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* 7. Ajustes de la Nieve para que resalte más */
.snowflake {
    color: #FFF; /* Nieve blanca pura */
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
}

/* --- EFECTO NIEVE (Se mantiene igual) --- */
.snowflake {
    position: fixed;
    top: -20px;
    z-index: 9999;
    color: #e6be9a; /* Cambiamos la nieve a color Beige para que combine! */
    font-size: 1.2rem;
    pointer-events: none; 
    animation: fall linear forwards;
    opacity: 0.8;
}

@keyframes fall {
    to { transform: translateY(105vh) rotate(360deg); }
}

/* --- BOTONES SÓLIDOS (SECUNDARIOS) --- */
.btn-secondary {
    background: var(--border); 
    color: var(--fg);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover { background: #d1d5db; }
body.dark .btn-secondary:hover { background: #4b5563; }

/* --- AJUSTE DE ALINEACIÓN (Para otros modales) --- */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.modal-actions button {
    margin-top: 0 !important;
    flex: 1;
}

/* --- NUEVO PIE DE PÁGINA (PERFIL) --- */
.modal-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}
.spacer { flex-grow: 1; }

/* Botón Circular de Navidad (Geometría perfecta) */
.btn-navidad-circle {
    width: 48px !important;      /* Ancho fijo */
    height: 48px !important;     /* Alto fijo */
    min-width: 48px !important;  /* Evita que se aplaste */
    padding: 0 !important;       /* <--- ESTO ES LA CLAVE: Quita el relleno extra */
    
    border-radius: 50%;          /* Lo hace redondo */
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 1.5rem;
    cursor: pointer;
    
    /* Centrado del emoji */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    
    transition: transform 0.2s, background 0.2s;
}

.btn-navidad-circle:hover {
    transform: scale(1.1);
    background: #FEF2F2;
    border-color: #ef4444;
}

/* --- CORRECCIÓN FINAL DE ALINEACIÓN (EL "TRUCO") --- */
/* Esto obliga a que los 3 botones midan 48px de alto y se centren */
.modal-footer button {
    height: 48px !important;       
    margin-top: 0 !important;      
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajuste para los botones de texto (Cancelar/Actualizar) */
.modal-footer .btn-secondary,
.modal-footer .btn-main {
    width: auto !important;       
    padding: 0 24px !important;    
    font-size: 0.95rem;
}

/* --- BOTÓN DE REGRESAR (Flecha Arriba Izquierda) --- */
.btn-back {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--fg);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
    z-index: 10;
}

.btn-back:hover {
    background: rgba(0,0,0,0.05);
    color: var(--accent);
}

/* --- AJUSTE DEL FOOTER PARA CENTRADO PERFECTO --- */
.modal-footer {
    position: relative; /* Referencia para los elementos absolutos */
    display: flex;
    justify-content: center; /* Centra el botón Actualizar */
    align-items: center;
    margin-top: 25px;
    width: 100%;
    min-height: 48px; /* Altura mínima para que quepa el círculo */
}

/* El botón de Navidad flota a la izquierda sin empujar al del centro */
.modal-footer .btn-navidad-circle {
    position: absolute;
    left: 0;
    bottom: 0; /* Asegura que quede alineado abajo */
}

/* Ajuste del botón Actualizar para que no sea eterno */
.modal-footer .btn-main {
    width: auto !important;
    min-width: 140px; /* Un tamaño decente */
    padding: 0 30px !important;
}

/* --- ESTILOS RESPONSIVE: LOGIN PANTALLA DIVIDIDA --- */

/* 1. POR DEFECTO (Móvil): Ocultamos la portada izquierda */
.auth-cover {
    display: none;
}
/* En móvil, el contenedor desktop-split no hace nada especial */
.desktop-split {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* --- SOLO EN PC (Pantallas mayores a 1024px) --- */
@media (min-width: 1024px) {
    
    /* 1. CENTRADO VERTICAL DE LA PANTALLA */
    #auth-view {
        align-items: center; 
        padding: 0;
    }

    /* 2. LA TARJETA GIGANTE (Contenedor Padre) */
    .desktop-split {
        width: 1000px; 
        max-width: 90vw; 
        height: 600px; /* Altura fija importante */
        
        background: var(--card); /* Fondo base */
        border-radius: 24px;     /* AQUÍ van las esquinas redondas DE TODO */
        box-shadow: 0 20px 60px rgba(0,0,0,0.4); /* Sombra general */
        
        overflow: hidden;        /* Recorta lo que sobresalga (clave para las esquinas) */
        display: flex;           /* Pone los lados uno junto al otro */
        border: 1px solid var(--border);
    }

    /* --- LADO IZQUIERDO: PORTADA --- */
    .auth-cover {
        display: flex; 
        width: 50%; 
        height: 100%;             /* Asegura altura completa */
        background: var(--accent); 
        color: white;
        flex-direction: column; 
        justify-content: center; 
        
        /* Alineación y Espaciado */
        align-items: flex-start !important; 
        text-align: left !important;
        padding: 0 50px !important; /* Espacio interno cómodo */
        position: relative;
    }

    /* Título: Ajustado para que no se vea tan apretado */
    .auth-cover h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem !important;      /* Un poco más pequeño para que no rompa feo */
        line-height: 1.1 !important;
        letter-spacing: -1px !important; 
        margin: 0 0 15px 0 !important;
        font-weight: 800;
        text-transform: none;            /* Respetar mayúsculas/minúsculas */
    }

    /* Frase Cursiva */
    .auth-cover p {
        font-family: 'Dancing Script', cursive !important;
        font-size: 2rem !important;
        font-weight: 500 !important;
        opacity: 0.95 !important;
        margin-bottom: 30px;
        line-height: 1.4 !important;
    }

    /* Icono */
    .auth-cover i {
        font-size: 5rem !important; 
        opacity: 0.8 !important;
        align-self: flex-start !important;
        animation: floatIcon 6s ease-in-out infinite;
    }

    @keyframes floatIcon {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* --- LADO DERECHO: LOGIN (ARREGLADO) --- */
    /* Aquí estaba el problema: le quitamos su estilo de "tarjeta" individual */
    .desktop-split .login-box {
        width: 50%; 
        max-width: none !important; /* Quitar límite de ancho móvil */
        height: 100%;               /* Llenar toda la altura */
        margin: 0 !important;       /* Pegarlo a los bordes */
        
        border-radius: 0 !important;    /* ¡IMPORTANTE! Esquinas cuadradas para unir */
        box-shadow: none !important;    /* Sin sombra propia */
        border: none !important;        /* Sin borde propio */
        
        background: var(--bg); /* Usa el color de fondo del tema (Oscuro en tu caso) */
        
        display: flex; 
        flex-direction: column; 
        justify-content: center;
        padding: 40px !important;
    }
    
    /* Ajustes Navidad PC */
    body.christmas .auth-cover {
        background: radial-gradient(circle at top left, #a51818, #580000);
        border-right: 4px solid #D4AF37;
    }
    body.christmas .desktop-split { border: 2px solid #D4AF37; }
}

/* --- ESTILO DE INPUTS MODERNOS (TIPO TOLKER) --- */

/* 1. Transformar la Caja en una Línea */
.login-box input {
    background: transparent !important;   /* Fondo invisible */
    border: none !important;              /* Quitamos los 4 bordes */
    border-bottom: 2px solid rgba(0,0,0,0.1) !important; /* Solo línea abajo (sutil) */
    border-radius: 0 !important;          /* Esquinas cuadradas */
    padding: 15px 5px !important;         /* Espacio para escribir */
    margin-bottom: 20px !important;       /* Separación entre líneas */
    box-shadow: none !important;          /* Quitamos sombras viejas */
    transition: all 0.3s ease;            /* Animación suave al tocar */
}

/* 2. Efecto al hacer clic (FOCUS) */
.login-box input:focus {
    border-bottom: 2px solid var(--accent) !important; /* La línea se pinta de tu color principal */
    background: transparent !important;
    transform: translateY(-2px); /* Se levanta un poquito sutilmente */
}

/* 3. Ajuste del texto de ayuda (Placeholder) */
.login-box input::placeholder {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: 0.3s;
}

/* --- AJUSTES ESPECÍFICOS PARA EL TEMA NAVIDAD --- */
/* Como el fondo es rojo/verde oscuro, necesitamos que la línea y letras sean claras */

body.christmas .login-box input {
    color: #e6be9a !important;            /* Texto Beige/Crema (Tu paleta navideña) */
    border-bottom: 2px solid rgba(230, 190, 154, 0.3) !important; /* Línea beige semitransparente */
}

body.christmas .login-box input:focus {
    border-bottom-color: #D4AF37 !important; /* Al tocar, la línea se pone DORADA */
}

body.christmas .login-box input::placeholder {
    color: rgba(230, 190, 154, 0.6) !important; /* Placeholder beige suave */
}

/* --- ARREGLO DEL BOTÓN DEL OJO (VER CONTRASEÑA) --- */
/* Al cambiar el input, el ojito puede quedar desalineado, esto lo arregla */
.login-box .eye-btn {
    top: 35% !important; 
    right: 5px !important;
    color: var(--fg);
    opacity: 0.5;
}
body.christmas .eye-btn {
    color: #e6be9a !important; /* Ojito beige en navidad */
}

/* --- QUITAR FONDO AMARILLO DE AUTOCOMPLETAR --- */

/* El truco: Le decimos al navegador que tarde mucho en cambiar el color de fondo */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    
    /* Aquí forzamos el color del TEXTO para que no se ponga negro por defecto */
    -webkit-text-fill-color: var(--fg) !important;
    
    /* Mantenemos tu cursor personalizado si lo tuvieras */
    caret-color: var(--fg);
}

/* Ajuste específico para el TEMA NAVIDAD */
/* Para que el texto autocompletado sea beige/blanco y no oscuro */
body.christmas input:-webkit-autofill {
    -webkit-text-fill-color: #e6be9a !important;
    caret-color: #e6be9a;
}


/* Nota: El modo Navidad ya tiene su propio fondo, así que no se romperá */

/* --- MEJORA VISUAL PORTADA (SOLO PC) --- */
@media (min-width: 1024px) {

    .auth-cover {
        /* 1. PROFUNDIDAD: Degradado diagonal en vez de color plano */
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
        position: relative; /* Necesario para que el patrón se posicione bien */
        overflow: hidden;   /* Corta lo que sobre */
        z-index: 1;
    }

    /* 2. EL PATRÓN (Textura de Puntos) */
    /* Creamos un elemento fantasma encima para dibujar los puntos */
    .auth-cover::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        
        /* Patrón de puntitos blancos semitransparentes */
        background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1.5px, transparent 1.5px);
        background-size: 24px 24px; /* Separación de los puntos */
        
        opacity: 1;
        z-index: -1; /* Detrás del texto */
        pointer-events: none;
    }
    
    /* Opcional: Una luz decorativa en la esquina */
    .auth-cover::after {
        content: "";
        position: absolute;
        top: -50px; left: -50px;
        width: 300px; height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }
}

/* =========================================
   UNIFICACIÓN DE FONDO (ORBES GLOBALES)
   ========================================= */

/* 1. Los Orbes ahora son fijos para toda la app */
.orbs-bg {
    position: fixed !important; 
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; 
    pointer-events: none;
    display: block; /* Se muestran por defecto en Modo Claro y Oscuro */
}

/* 2. Quitamos el fondo sólido de las vistas para ver los orbes */
#auth-view {
    background: transparent !important; 
}

/* 3. Ajuste para el Dashboard (App) */
.app-wrapper {
    position: relative;
    z-index: 1; 
}

/* 4. Ajuste para la Tarjeta de PC (Split Screen) */
@media (min-width: 1024px) {
    .desktop-split {
        background: rgba(255, 255, 255, 0.85); 
        backdrop-filter: blur(20px);           
    }
    
    body.dark .desktop-split {
        background: rgba(31, 41, 55, 0.85);
    }
}

/* =========================================
   MODO NAVIDAD: GRADIENTE SÍ, ORBES NO
   ========================================= */

body.christmas {
    /* 1. Fondo Rojo con profundidad radial (Gradiente) */
    background: radial-gradient(circle, #a51818 0%, #580000 100%) !important;
    background-attachment: fixed !important; 
    background-size: cover !important;
}

/* 2. ¡OCULTAR ORBES EN NAVIDAD! */
body.christmas .orbs-bg {
    display: none !important; /* Esto hace que desaparezcan las bolas de luz */
}


/* =========================================
   NOTIFICACIONES (UI) - CORREGIDO
   ========================================= */

/* 1. El Botón de Campana */
.btn-bell-circle {
    position: absolute; 
    right: 0; bottom: 0;
    width: 48px !important; height: 48px !important; padding: 0 !important;
    border-radius: 50%; border: 1px solid var(--border); background: var(--bg);
    font-size: 1.3rem; color: var(--fg);
    display: flex; justify-content: center; align-items: center; 
    cursor: pointer; transition: 0.2s;
}
.btn-bell-circle:hover { transform: scale(1.1); border-color: var(--accent); color: var(--accent); }
.btn-bell-circle.active { background: var(--accent); color: white; border-color: var(--accent); }

/* 2. El Menú Flotante */
.notif-menu {
    position: absolute;
    bottom: 60px; right: -10px;
    width: 180px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 100;
    text-align: center;
    transform-origin: bottom right;
    animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.notif-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; opacity: 0.7; }
.notif-options { display: flex; flex-direction: column; gap: 5px; }

/* 3. Opciones del menú */
.notif-opt {
    background: transparent; border: none; padding: 8px;
    border-radius: 8px; cursor: pointer; font-size: 0.9rem;
    color: var(--fg); font-weight: 500; transition: 0.2s;
}

/* Estado Hover (Pasar el mouse) */
.notif-opt:hover { background: var(--bg); }

/* Estado Seleccionado (IMPORTANTE: Esto debe ir al final) */
.notif-opt.selected { 
    background: var(--accent) !important; 
    color: white !important; 
    font-weight: 800 !important; /* Letra más gruesa */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Pequeña sombra para destacar */
}

.notif-opt.text-red:hover { background: #fee2e2; color: #ef4444; }

/* Ajustes Navidad */
body.christmas .btn-bell-circle { border-color: #D4AF37; color: #D4AF37; background: #1a472a; }
body.christmas .btn-bell-circle.active { background: #D4AF37; color: #8B0000; }
body.christmas .notif-menu { border-color: #D4AF37; background: #FFF8F0; }
/* Selección en Navidad */
body.christmas .notif-opt.selected { background: #D4AF37 !important; color: #8B0000 !important; }


/* Estilo para la opción seleccionada */
.notif-opt.selected { 
    background: var(--accent) !important; 
    color: white !important; 
    font-weight: 800 !important;
}
/* Ajuste para Navidad */
body.christmas .notif-opt.selected { 
    background: #D4AF37 !important; 
    color: #8B0000 !important; 
}

body.christmas .donation-msg { color: #FFF8F0 !important; }

/* --- CORRECCIÓN VISIBILIDAD MÓVIL --- */

/* 1. Ocultar por defecto en PC (Forzado) */
li.only-mobile { 
    display: none !important; 
}

/* 2. Mostrar SOLO en pantallas pequeñas (Móvil) */
@media (max-width: 768px) {
    li.only-mobile { 
        display: flex !important; 
    }
}

/* =======================================================
   PARCHE MAESTRO: ESTILO + MAQUETACIÓN FORMULARIOS
   ======================================================= */

/* 1. ARREGLO DE CAJAS (Evita que se salgan de la ventana) */
input, textarea, select {
    box-sizing: border-box !important;
    max-width: 100% !important;
}

/* 2. ESTRUCTURA DE MODALES (ETIQUETAS Y CAMPOS) */
/* Esto fuerza a que el texto "Nombre", "Fecha", etc. ocupe su propia línea */
.modal label {
    display: block !important;       /* Ocupa todo el ancho */
    text-align: left !important;     /* Alineado a la izquierda */
    margin-bottom: 8px !important;   /* Separación con el input */
    margin-top: 10px !important;     /* Separación del campo anterior */
    font-weight: 700 !important;
    color: var(--accent) !important; /* Color bonito para el texto */
}

/* Esto asegura que los inputs estén debajo y respeten el ancho */
.modal input, .modal textarea {
    display: block !important;       /* Fuerza salto de línea */
    width: 100% !important;          /* Ocupa todo el ancho disponible */
    margin-bottom: 5px !important;
    margin-left: 0 !important;       /* Quita márgenes extraños */
}

/* 3. FECHA ESPECÍFICA (Pequeña pero en su propia línea) */
input[type="date"] {
    display: block !important;       /* Fuerza que baje a otra línea */
    width: auto !important;          /* No ocupa todo el ancho */
    min-width: 150px !important;     /* Tamaño mínimo legible */
    padding: 10px !important;
}

/* 4. ORBES SUAVES (Fondo tranquilo) */
.orb {
    opacity: 0.5 !important;
}

/* 5. BOTÓN PRINCIPAL: CRISTAL PLANO (Minimalista) */
.btn-main {
    background: rgba(var(--accent-rgb), 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transform: none !important;
    margin-top: 20px !important; /* Separación extra del último input */
}

.btn-main:hover {
    background: rgba(var(--accent-rgb), 0.85) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* 6. BOTONES REDONDOS (Ayuda, Archivar, Tema) */
.fab-mini, .fab-help {
    background: rgba(var(--card-rgb), 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: var(--fg) !important;
}

.fab-mini:hover, .fab-help:hover {
    background: rgba(var(--card-rgb), 0.9) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: scale(1.05); 
}

/* --- CORRECCIÓN PERFIL: OCULTAR INPUT FEO --- */
#fileUpload {
    display: none !important;
}

/* --- CORRECCIÓN: TAREAS COMPLETADAS MÁS VISIBLES --- */

/* Esto cambia el color SOLO en modo claro para que se note bien el verde */
:root {
    --completed-bg: rgba(16, 185, 129, 0.35) !important; /* Verde cristal más fuerte */
}

/* Opcional: Un borde verde suave para que resalte más */
.state-done {
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

/* --- ESTILOS DEL CALENDARIO --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid transparent;
    transition: 0.2s;
}
.cal-day:hover { background: var(--bg); }
.cal-day.today { border-color: var(--accent); color: var(--accent); }
.cal-day.selected { background: var(--accent); color: white !important; }
.cal-day.has-task::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444; 
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
}
.cal-day.has-task.all-done::after { background: #10b981; }

/* --- ESTILOS DEL CALENDARIO --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid transparent;
    transition: 0.2s;
}
.cal-day:hover { background: var(--bg); }
.cal-day.today { border-color: var(--accent); color: var(--accent); }
.cal-day.selected { background: var(--accent); color: white !important; }
.cal-day.has-task::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444; 
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
}
.cal-day.has-task.all-done::after { background: #10b981; }

/* =========================================
   MENÚ FLOTANTE RESPONSIVO (CORREGIDO)
   ========================================= */

/* 1. Estilos Base (PC por defecto) */
.fab-actions {
    display: flex;
    flex-direction: column; 
    gap: 12px;
    /* Aseguramos que en PC sean visibles y tocables */
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.fab-trigger { display: none; } /* Oculto en PC */

/* 2. Estilos SOLO MÓVIL */
@media (max-width: 768px) {
    .fabs {
        flex-direction: row-reverse; /* Alineación a la derecha */
        align-items: center;
        gap: 15px;
    }

    .fab-trigger { 
        display: flex; 
        z-index: 60; 
        background: var(--accent); 
        color: white;
        border: none;
    }

    .fab-actions {
        flex-direction: row-reverse; /* Fila horizontal */
        position: absolute;
        right: 70px; 
        bottom: 0;   
        
        /* Oculto inicialmente */
        opacity: 0;
        transform: translateX(20px) scale(0.8); 
        pointer-events: none; 
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .fab-actions.active {
        opacity: 1;
        transform: translateX(0) scale(1);
        pointer-events: all;
    }
} /* <--- ¡ESTA LLAVE ES LA QUE FALTABA! */


/* --- MEJORA VISUAL MODAL DE TAREAS --- */
.form-group {
    margin-bottom: 18px; 
    text-align: left;    
}

.form-group label {
    display: block;          
    margin-bottom: 8px;      
    font-weight: 600;        
    font-size: 0.95rem;
    color: var(--accent);    
    letter-spacing: 0.5px;
}

input[type="date"] {
    width: 100%;             
    cursor: pointer;         
    color: var(--fg);        
    min-height: 52px;        
    appearance: none;        
}

body.dark ::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* --- PARCHE DE EMERGENCIA (Final del archivo) --- */

/* 1. Forzar visibilidad en PC */
@media (min-width: 769px) {
    .fab-actions {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        right: 25px !important;
        bottom: 90px !important; 
    }
    .fab-trigger { display: none !important; }
}

/* 2. Asegurar que los modales no se estorben */
.modal-wrap { z-index: 2000 !important; } /* Modales encima de todo */
.fabs { z-index: 100 !important; }        /* Botones debajo de modales */



}


/* =========================================
   EXPERIENCIA NATIVA (NO TEXT SELECTION)
   ========================================= */

/* 1. Desactivar selección de texto y menú contextual en TODA la app */
body {
    -webkit-user-select: none;   /* Chrome / Safari / Android */
    user-select: none;           /* Estándar */
    -webkit-touch-callout: none; /* Bloquea el menú de mantener presionado en iOS */
}

/* 2. Quitar el "flash" azul o gris al tocar cualquier cosa en Android */
* {
    -webkit-tap-highlight-color: transparent;
}

/* 3. ¡IMPORTANTE! Reactivar la selección SOLO en los campos de escritura */
/* Si no pones esto, no podrías escribir ni corregir texto en los inputs */
input, textarea {
    -webkit-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important; /* Devuelve el menú de copiar/pegar aquí */
    cursor: auto;
}














































