@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
* { font-family: 'Inter', sans-serif; box-sizing: border-box; }
body { -webkit-font-smoothing: antialiased; }

.auth-input, .field-input {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    width: 100%;
    transition: all .14s;
}
.auth-input:focus, .field-input:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99,102,241,.10);
}
.field-label { font-size: 11px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: .03em; }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; cursor: pointer; inset: 0; background: #cbd5e1; border-radius: 999px; transition: .15s; }
.switch .slider:before { content:""; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: .15s; }
.switch input:checked + .slider { background: #6366f1; }
.switch input:checked + .slider:before { transform: translateX(18px); }

.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; }
.sidebar-link { display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:10px; font-size:13px; font-weight:600; color:#475569; transition:.12s; }
.sidebar-link:hover { background:#f1f5f9; color:#1e293b; }
.sidebar-link.active { background:#eef2ff; color:#4338ca; }
.sidebar-link.locked { opacity:.45; cursor:not-allowed; }

.badge { display:inline-flex; align-items:center; gap:4px; font-size:10px; font-weight:700; padding:3px 8px; border-radius:999px; text-transform:uppercase; letter-spacing:.03em; }
.badge-green { background:#dcfce7; color:#15803d; }
.badge-red { background:#fee2e2; color:#b91c1c; }
.badge-indigo { background:#e0e7ff; color:#4338ca; }
.badge-amber { background:#fef3c7; color:#92400e; }

@media print {
    .no-print { display:none !important; }
    body { background:#fff !important; }
}
