/* style.css */
#app-wrapper { 
    position: fixed; 
    inset: 0; 
    z-index: 999999; 
    overflow-y: auto; 
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 18px 40px rgba(112, 144, 176, 0.12);
}

.dark .glass-card {
    background: rgba(17, 28, 68, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.custom-scrollbar::-webkit-scrollbar { 
    width: 6px; 
}
.custom-scrollbar::-webkit-scrollbar-track { 
    background: transparent; 
}
.custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #A3AED0; 
    border-radius: 10px; 
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #2B3674; 
}

.hidden-view { 
    display: none !important; 
}