@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.gold-bg { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }
.gold-text { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gold-border { border-color: #d97706; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #d97706; border-radius: 4px; }

.fade-in { animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

input, select {
    background-color: rgba(15, 23, 42, 0.8) !important;
    color: white !important;
    border: 1px solid #334155 !important;
}
input:focus, select:focus {
    border-color: #d97706 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2) !important;
}

@media print {
    body { background: white !important; color: black !important; }
    .no-print { display: none !important; }
    .glass-panel { background: white !important; border: 1px solid #ccc !important; box-shadow: none !important; color: black !important; }
    .gold-text { background: none; -webkit-text-fill-color: black; color: black; }
    #print-header { display: block !important; text-align: center; margin-bottom: 20px; }
    * { color: black !important; }
}

#print-header { display: none; }
