.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #334155;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Accordion Animation */
.accordion-content {
    max-height: 1000px;
    opacity: 1;
}
.accordion-content.collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    .no-print {
        display: none !important;
    }
    .glass-card {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    #resultsSection {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .accordion-content.collapsed {
        max-height: none !important;
        opacity: 1 !important;
        display: block !important;
    }
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}
