@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-app: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent: #4f46e5;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    overflow: hidden;
}

/* Glass Panel */
.glass-panel {
    background-color: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

/* Inputs */
.glass-input {
    background-color: #f1f5f9;
    border: 1px solid var(--border);
    color: var(--text-main);
    outline: none;
    transition: 0.2s;
    font-weight: 600;
}
.glass-input:focus {
    background-color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Gradients */
.card-gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: white; border: none; }
.card-gradient-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; border: none; }
.card-gradient-orange { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); color: white; border: none; }

/* Utilities */
.no-scrollbar::-webkit-scrollbar { display: none; }
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; }

.animate-fade-in { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-active { background-color: #eff6ff; color: #1d4ed8; border-right: 3px solid #1d4ed8; }
.tab-inactive { color: #64748b; border-right: 3px solid transparent; }
.tab-inactive:hover { background-color: #f8fafc; color: #0f172a; }

.chart-container { position: relative; height: 100%; width: 100%; min-height: 250px; }

/* Print Styles */
@media print {
    .no-print { display: none !important; }
    body { background: white; height: auto; overflow: visible; }
    .modal-content { box-shadow: none; border: none; }
}
