body { font-family: 'Inter', sans-serif; }

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.custom-scroll::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

@page {
    margin: 0;
    size: auto;
}

@media print {
    body {
        padding: 20px 40px !important;
    }

    button, input, .no-print {
        display: none !important;
    }

    .max-w-4xl, .max-w-7xl {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .glass-panel {
        background: white !important;
        border: none !important;
        box-shadow: none !important;
        min-height: auto !important;
    }

    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    

    .overflow-x-auto {
        overflow: visible !important;
    }
    
    body {
        background: white;
    }
}
