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

.admin-area { font-family: 'Outfit', system-ui, -apple-system, sans-serif; }
.admin-area .content-shell { min-height: 100vh; background: #f8fafc; }
.sidebar { background: linear-gradient(180deg, #0b1021 0%, #0f172a 100%); color: #e2e8f0; display: flex; }
.nav-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem; border-radius: 0.55rem; color: #cbd5e1; font-weight: 600; transition: background 0.15s ease, color 0.15s ease; }
.nav-link:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.nav-link.active { background: rgba(59, 130, 246, 0.18); color: #fff; }
.nav-icon { width: 1.5rem; height: 1.5rem; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary { background: #2563eb; color: white; font-weight: 600; padding: 0.65rem 1.1rem; border-radius: 0.5rem; box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2); }
.btn-secondary { background: rgba(255, 255, 255, 0.08); color: white; font-weight: 600; padding: 0.65rem 1.1rem; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.2); }
.topbar { box-shadow: 0 1px 0 rgba(15, 23, 42, 0.12); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; }
.profile-trigger { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid rgb(51 65 85); }
.profile-menu { position: absolute; right: 0; margin-top: 0.5rem; background: white; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15); border-radius: 0.75rem; min-width: 220px; border: 1px solid rgb(226 232 240); }
.input-text { width: 100%; border-radius: 0.5rem; border: 1px solid rgb(226 232 240); padding: 0.75rem 0.9rem; font-size: 0.95rem; background: white; }
.input-text:focus { outline: 2px solid rgb(59 130 246); outline-offset: 0; }
table.admin-table th { text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; }
@media (max-width: 767px) { .sidebar { transform: translateX(-100%); position: fixed; inset: 0 auto 0 0; z-index: 40; transition: transform 0.2s ease; } .sidebar.open { transform: translateX(0); } }
