/* ===================================================
   SMS PORTAL - Main Stylesheet
   =================================================== */

:root {
  --primary:     #c0c0c0;
  --primary-dark:#a8a8a8;
  --secondary:   #d4af37;
  --success:     #22c55e;
  --warning:     #f59e0b;
  --danger:      #ef4444;
  --info:        #06b6d4;
  --dark:        #1e1f26;
  --dark2:       #16171d;
  --sidebar-bg:  #1a1b23;
  --sidebar-w:   260px;
  --text:        #e2e4ea;
  --text-muted:  #8b8fa8;
  --border:      #2e2f3e;
  --card-bg:     #22232f;
  --input-bg:    #2a2b38;
  --topbar-h:    64px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,0,0,0.3);
  --gradient:    linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

* { margin:0; padding:0; box-sizing:border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
code { font-family: 'Courier New', monospace; background: #1a1b23; padding: 2px 6px; border-radius: 4px; font-size: 13px; color: #a5b4fc; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--radius); border: none;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 0.2s ease; font-family: inherit; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gradient); color: #1a1a1a; font-weight: 600; }
.btn-primary:hover { box-shadow: 0 4px 15px rgba(212,175,55,0.5); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-danger  { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-white   { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f0ff; }
.btn-sm  { padding: 6px 12px; font-size: 12px; }
.btn-lg  { padding: 13px 26px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--text); font-size: 13px; }
input, select, textarea {
  width: 100%; padding: 10px 14px;
  background: var(--input-bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 14px;
  font-family: inherit; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,192,192,0.15);
}
input[readonly], input[disabled] { opacity: 0.6; cursor: not-allowed; }
.input-with-toggle { position: relative; }
.input-with-toggle input { padding-right: 44px; }
.toggle-pwd {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0 4px;
}
.input-prefix { position: relative; }
.input-prefix .prefix {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-weight: 500;
}
.input-prefix input { padding-left: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.inline-form { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 120px; }

/* ── Alerts ────────────────────────────────────────────── */
.alert {
  padding: 12px 16px; border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.alert-success { background: rgba(34,197,94,0.12);  border-left: 3px solid var(--success); color: #86efac; }
.alert-danger  { background: rgba(239,68,68,0.12);  border-left: 3px solid var(--danger);  color: #fca5a5; }
.alert-warning { background: rgba(245,158,11,0.12); border-left: 3px solid var(--warning); color: #fcd34d; }
.alert-info    { background: rgba(6,182,212,0.12);  border-left: 3px solid var(--info);    color: #67e8f9; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.card-header {
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.card-header h3 { font-size: 16px; font-weight: 600; flex: 1; }
.card-body { padding: 24px; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.my-4 { margin: 24px 0; }
.mb-3 { margin-bottom: 12px; }

/* ── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-pending   { background: rgba(245,158,11,0.15);  color: #fbbf24; }
.badge-received  { background: rgba(34,197,94,0.15);   color: #4ade80; }
.badge-cancelled { background: rgba(239,68,68,0.15);   color: #f87171; }
.badge-expired   { background: rgba(139,139,139,0.15); color: #9ca3af; }
.badge-info      { background: rgba(6,182,212,0.15);   color: #22d3ee; }
.badge-warning   { background: rgba(245,158,11,0.15);  color: #fbbf24; }
.badge-danger    { background: rgba(239,68,68,0.15);   color: #f87171; }
.badge-success   { background: rgba(34,197,94,0.15);   color: #4ade80; }

/* ── Tables ────────────────────────────────────────────── */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 16px; text-align: left; color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid rgba(46,47,62,0.5); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-danger { color: var(--danger); }

/* ── Pagination ────────────────────────────────────────── */
.pagination { padding: 16px 24px; display: flex; gap: 6px; flex-wrap: wrap; }
.page-btn { padding: 6px 12px; border-radius: 6px; background: var(--input-bg); color: var(--text); border: 1px solid var(--border); font-size: 13px; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Stats Grid ────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stats-admin { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.stat-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; display: flex; align-items: center; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.stat-info { flex: 1; }
.stat-value { font-size: 24px; font-weight: 700; line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.stat-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ── Toggle Switch ─────────────────────────────────────── */
.toggle-switch { position: relative; display: inline-flex !important; align-items: center; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0 !important; height: 0 !important; padding: 0 !important; margin: 0 !important; border: none !important; position: absolute; }
.toggle-slider { width: 44px; height: 24px; background: #6b7280; border-radius: 12px; transition: 0.2s; position: relative; flex-shrink: 0; display: inline-block; }
.toggle-slider::after { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.toggle-switch input:checked + .toggle-slider { background: var(--success); }
.toggle-switch input:checked + .toggle-slider::after { transform: translateX(20px); }

/* ── Filter Tabs ───────────────────────────────────────── */
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; padding: 12px 0; }
.filter-tab { padding: 6px 14px; border-radius: 20px; color: var(--text-muted); font-size: 13px; transition: all 0.2s; }
.filter-tab:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.filter-tab.active { background: var(--primary); color: #fff; }

/* ── Search Form ───────────────────────────────────────── */
.search-form { display: flex; gap: 8px; }
.search-form input { padding: 8px 12px; border-radius: var(--radius); min-width: 220px; }

/* ── Action Buttons ────────────────────────────────────── */
.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── Code Block ────────────────────────────────────────── */
.code-block {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin: 12px 0;
  overflow-x: auto;
}
.code-block pre { margin: 0; }
.code-block code { background: none; padding: 0; }
.api-endpoint { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.method { padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.method-get  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.method-post { background: rgba(192,192,192,0.15); color: #818cf8; }
.endpoint-path { flex: 1; color: var(--text-muted); font-size: 13px; }
.endpoint-desc { color: var(--text-muted); font-size: 13px; }
.api-key-display {
  display: flex; align-items: center; gap: 10px;
  background: var(--input-bg); padding: 12px; border-radius: var(--radius); border: 1px solid var(--border);
}
.api-key-display code { flex: 1; overflow: hidden; text-overflow: ellipsis; background: none; }
.copy-btn { background: none; border: none; color: var(--primary); cursor: pointer; padding: 4px; }

/* ── Modal ─────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal.hidden { display: none; }
.modal-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); width: 100%; max-width: 480px; }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }
.close-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  background: var(--success); color: #fff; padding: 12px 20px;
  border-radius: var(--radius); font-size: 14px; font-weight: 500;
  animation: slideUp 0.3s ease, fadeOut 0.3s ease 1.7s forwards;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; } }
.toast-error { background: var(--danger); }

/* ── Service Badge ─────────────────────────────────────── */
.service-badge { display: inline-flex; align-items: center; gap: 6px; }
.code-highlight { color: #a5f3fc; font-family: monospace; font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   LANDING PAGE
═══════════════════════════════════════════════════════ */
.landing { background: var(--dark); }

/* Navbar */
.navbar { background: rgba(26,27,35,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 64px; gap: 32px; }
.nav-brand { font-size: 20px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nav-brand i { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; }

/* Hero */
.hero { padding: 80px 0 60px; }
.hero-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,192,192,0.15); color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; margin-bottom: 20px; }
.hero-text h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { color: var(--text-muted); font-size: 18px; line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.hero-stat span { color: var(--text-muted); font-size: 13px; }

/* Live Card */
.hero-live { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.live-header { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.2)} }
.live-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.live-item:last-child { border-bottom: none; }
.live-icon { font-size: 22px; }
.live-info { flex: 1; }
.live-service { display: block; font-size: 13px; font-weight: 500; }
.live-code { display: block; font-size: 12px; color: var(--text-muted); }
.live-time { color: var(--text-muted); font-size: 12px; white-space: nowrap; }

/* Sections */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 18px; }

/* How it works */
.how-it-works { padding: 80px 0; background: rgba(255,255,255,0.01); }
.steps { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { text-align: center; max-width: 220px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }
.step-arrow { color: var(--text-muted); font-size: 20px; }

/* Services grid */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.service-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--text); transition: all 0.2s; }
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); background: rgba(192,192,192,0.05); }
.service-card .service-icon { font-size: 36px; }
.service-card span { font-size: 13px; font-weight: 500; }
.service-more { border-style: dashed; color: var(--text-muted); }

/* Features */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Payment section */
.payment-section { padding: 60px 0; background: rgba(255,255,255,0.01); }
.payment-methods { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.payment-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 40px; text-align: center; min-width: 220px; transition: border-color 0.2s; }
.payment-card:hover { border-color: var(--primary); }
.payment-card h3 { font-size: 18px; font-weight: 600; margin: 12px 0 8px; }
.payment-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-box { background: var(--gradient); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; }
.cta-box h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 28px; }

/* Footer */
.footer { background: var(--sidebar-bg); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); margin-top: 12px; max-width: 300px; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer-links a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 24px; text-align: center; color: var(--text-muted); font-size: 13px; max-width: 1280px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at top, rgba(192,192,192,0.15) 0%, var(--dark) 60%);
  padding: 20px;
}
.auth-container { width: 100%; max-width: 440px; }
.auth-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-logo { font-size: 22px; font-weight: 700; color: var(--text); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.auth-logo i { color: var(--primary); }
.auth-header h1 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.auth-header p { color: var(--text-muted); }
.auth-form { }
.auth-footer { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 14px; }
.auth-footer a { color: var(--primary); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   PANEL
═══════════════════════════════════════════════════════ */
.panel-body { background: var(--dark); min-height: 100vh; }
.panel-wrapper { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w); background: var(--sidebar-bg);
  border-right: 1px solid var(--border); display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh; z-index: 200;
  transition: transform 0.3s ease; overflow-y: auto;
}
.sidebar-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.sidebar-logo { font-size: 18px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.sidebar-logo i { color: var(--primary); }
.sidebar-close { display: none; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; }
.sidebar-balance { padding: 20px; border-bottom: 1px solid var(--border); }
.balance-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.balance-amount { display: block; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.sidebar-nav { padding: 12px; flex: 1; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius); color: var(--text-muted); font-size: 14px; transition: all 0.2s; margin-bottom: 2px; }
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav-item.active { background: rgba(192,192,192,0.15); color: var(--primary); font-weight: 500; }
.nav-item.nav-admin { color: #a78bfa; }
.nav-item.text-danger { color: var(--danger); }
.nav-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* Main */
.panel-main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-height: 100vh; min-width: 0; overflow-x: hidden; }

/* Topbar */
.topbar {
  height: var(--topbar-h); background: var(--sidebar-bg); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 16px;
  position: sticky; top: 0; z-index: 100;
}
.topbar-toggle { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; display: none; }
.topbar-title { font-size: 16px; font-weight: 600; flex: 1; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-balance { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.topbar-user { position: relative; cursor: pointer; }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.admin-avatar { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.user-dropdown { position: relative; }
.user-dropdown > span { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.dropdown-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 8px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); min-width: 160px; padding: 6px; z-index: 500; }
.topbar-user:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 6px; color: var(--text-muted); font-size: 13px; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

/* Panel Content */
.panel-content { padding: 24px; flex: 1; }
.section-title { font-size: 18px; font-weight: 600; margin-bottom: 16px; }

/* Quick Actions */
.quick-actions { margin-bottom: 24px; }
.action-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.action-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-muted); transition: all 0.2s; text-align: center; }
.action-card:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.action-card i { font-size: 24px; }
.action-card span { font-size: 13px; font-weight: 500; }

/* Admin quick actions */
.admin-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.aq-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-muted); font-size: 13px; transition: all 0.2s; }
.aq-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Stats list */
.stats-list { }
.stat-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.stat-row:last-child { border-bottom: none; }
.stat-row span { color: var(--text-muted); }

/* Profile */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.profile-avatar-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700; }

/* Buy Number */
.buy-wrapper { max-width: 800px; }
.buy-panel { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.buy-panel.hidden { display: none; }
.step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.step-badge { width: 32px; height: 32px; background: var(--gradient); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.step-header h2 { font-size: 20px; font-weight: 600; flex: 1; }
.step-header p { color: var(--text-muted); font-size: 14px; margin: 0; }
.back-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; padding: 4px 8px; border-radius: 6px; }
.back-btn:hover { background: rgba(255,255,255,0.05); }
.service-search { position: relative; margin-bottom: 16px; }
.service-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.service-search input { padding-left: 42px; }
.services-list { max-height: 420px; overflow-y: auto; }
.service-item { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: var(--radius); cursor: pointer; transition: background 0.15s; }
.service-item:hover { background: rgba(192,192,192,0.1); }
.s-icon { font-size: 24px; width: 36px; text-align: center; }
.s-name { flex: 1; font-size: 15px; }
.s-arrow { color: var(--text-muted); }

/* Provider tabs */
.provider-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.provider-tab { padding: 7px 16px; border-radius: 20px; background: var(--input-bg); border: 1px solid var(--border); color: var(--text-muted); font-size: 13px; cursor: pointer; transition: all 0.2s; }
.provider-tab:hover { border-color: var(--primary); }
.provider-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Country list */
.countries-list { max-height: 380px; overflow-y: auto; }
.country-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius); cursor: pointer; transition: background 0.15s; }
.country-item:hover { background: rgba(192,192,192,0.08); }
.c-flag { font-size: 22px; }
.c-name { flex: 1; font-size: 15px; }
.c-price { font-weight: 600; color: var(--primary); }
.c-stock { color: var(--text-muted); font-size: 12px; background: rgba(255,255,255,0.05); padding: 2px 8px; border-radius: 10px; }
.loading-spinner { padding: 20px; text-align: center; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 10px; }
.no-data { padding: 32px; text-align: center; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 10px; }

/* Number Display */
.number-display { background: var(--dark2); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-bottom: 24px; }
.number-service { font-size: 22px; margin-bottom: 12px; }
.number-phone { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.number-phone span { font-size: 28px; font-weight: 700; letter-spacing: 2px; color: var(--text); }
.number-timer { color: var(--text-muted); font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.number-timer strong { color: var(--warning); }
.sms-waiting { text-align: center; padding: 24px; }
.sms-waiting .spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.sms-waiting p { color: var(--text-muted); margin-bottom: 8px; }
.sms-received { }
.sms-code-box { background: var(--dark2); border-radius: var(--radius-lg); padding: 24px; text-align: center; margin-bottom: 16px; }
.code-label { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.code-value { font-size: 40px; font-weight: 800; letter-spacing: 4px; color: var(--success); margin-bottom: 16px; font-family: monospace; }
.sms-full-text { color: var(--text-muted); font-size: 13px; padding: 12px; background: var(--input-bg); border-radius: var(--radius); }
.number-actions { display: flex; gap: 12px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }

/* Balance page */
.balance-layout { }
.current-balance-display { padding: 32px; text-align: center; }
.big-balance { font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.amount-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 20px; }
.amount-preset { padding: 10px; background: var(--input-bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); cursor: pointer; font-size: 15px; font-weight: 600; transition: all 0.2s; }
.amount-preset:hover { border-color: var(--primary); color: var(--primary); }
.payment-methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.payment-method-card { position: relative; }
.payment-method-card input { position: absolute; opacity: 0; }
.pm-content { border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; cursor: pointer; transition: all 0.2s; }
.payment-method-card input:checked + .pm-content { border-color: var(--primary); background: rgba(192,192,192,0.08); }
.pm-content span { display: block; font-weight: 600; margin-top: 8px; }
.pm-content small { color: var(--text-muted); font-size: 12px; }

/* Support tickets */
.ticket-messages { display: flex; flex-direction: column; gap: 16px; }
.ticket-msg { border-radius: var(--radius-lg); padding: 16px; }
.msg-user { background: var(--input-bg); border-left: 3px solid var(--primary); }
.msg-admin { background: rgba(192,192,192,0.08); border-left: 3px solid var(--success); }
.msg-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
.msg-header strong { color: var(--text); }
.msg-header span { color: var(--text-muted); }
.msg-body { color: var(--text); line-height: 1.6; }

/* Admin sidebar */
.admin-body .sidebar { background: #12131a; }
.admin-body .sidebar .sidebar-logo { color: #a78bfa; }
.admin-body .sidebar .sidebar-logo i { color: #a78bfa; }
.admin-body .sidebar .nav-item.active { background: rgba(167,139,250,0.15); color: #a78bfa; }

/* Providers grid */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
.provider-card .card-header { flex-wrap: nowrap; }

/* Countries admin */
.countries-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-live { max-width: 500px; }
  .hero-text h1 { font-size: 38px; }
  .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Layout */
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); box-shadow: 4px 0 20px rgba(0,0,0,0.5); }
  .sidebar-close { display: block; }
  .panel-main { margin-left: 0; }
  .topbar-toggle { display: block; }
  .topbar-balance { display: none; }
  .panel-content { padding: 12px; overflow-x: hidden; }
  .user-dropdown > span { display: none; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 64px; right: 16px;
    background: var(--sidebar-bg); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px; gap: 8px; min-width: 180px;
    z-index: 100;
  }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 12px 10px; gap: 8px; min-width: 0; }
  .stat-value { font-size: 18px; }
  .stat-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
  .stat-value { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .stat-icon { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }

  /* Quick Actions */
  .action-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .action-card { padding: 14px 8px; min-width: 0; }
  .action-card i { font-size: 20px; }
  .action-card span { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

  /* Cards & Tables */
  .card-body { padding: 14px; }
  .card-header { padding: 12px 14px; }
  .card-header h3 { font-size: 14px; }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table th, .data-table td { padding: 10px 8px; font-size: 12px; }
  .data-table th { font-size: 10px; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .countries-admin-grid { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-grid > * { min-width: auto; }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }

  /* Forms & Search */
  .search-form { flex-direction: column; }
  .search-form input { min-width: auto; width: 100%; }
  .inline-form { flex-direction: column; }
  .admin-quick-actions { flex-wrap: wrap; }

  /* Topbar */
  .topbar { padding: 0 12px; height: 56px; }
  .topbar-title { font-size: 14px; }
  .topbar-right { gap: 8px; }

  /* Modal */
  .modal-box { max-width: 95%; margin: 10px; }
  .modal-header { padding: 16px; }
  .modal-body { padding: 16px; }

  /* Landing page */
  .hero-text h1 { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 22px; }
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .buy-wrapper { width: 100%; }

  /* Buy page */
  .buy-panel { padding: 16px; }
  .step-header { gap: 10px; margin-bottom: 16px; }
  .step-header h2 { font-size: 17px; }
  .step-badge { width: 28px; height: 28px; font-size: 13px; }
  .service-search input { font-size: 14px; }

  /* Number display */
  .number-display { padding: 20px 14px; }
  .number-service { font-size: 16px; }
  .number-phone span { font-size: 22px; letter-spacing: 1px; }
  .number-actions { gap: 8px; }
  .number-actions .btn { font-size: 11px; padding: 6px 10px; }

  /* Balance page */
  .big-balance { font-size: 38px; }
  .current-balance-display { padding: 20px; }

  /* Badges */
  .badge { font-size: 10px; padding: 2px 8px; }

  /* Section titles */
  .section-title { font-size: 16px; }
}

@media (max-width: 480px) {
  .panel-content { padding: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card { padding: 12px 10px; }
  .stat-value { font-size: 16px; }
  .stat-icon { width: 34px; height: 34px; font-size: 14px; }
  .action-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .action-card { padding: 14px 8px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }

  /* Auth */
  .auth-card { padding: 24px 16px; }
  .auth-header h1 { font-size: 22px; }

  /* Landing */
  .hero { padding: 40px 0 30px; }
  .hero-text h1 { font-size: 24px; }
  .hero-text p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat strong { font-size: 20px; }
  .section-header h2 { font-size: 22px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .cta-box { padding: 32px 16px; }
  .cta-box h2 { font-size: 22px; }
  .cta-box p { font-size: 14px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Buy page */
  .number-phone span { font-size: 18px; letter-spacing: 0; }
  .code-value { font-size: 26px; letter-spacing: 2px; }
  .big-balance { font-size: 32px; }
  .sms-code-box { padding: 16px; }
  .channel-item { gap: 10px; }

  /* Topbar */
  .topbar { padding: 0 10px; }
  .topbar-title { font-size: 13px; }
  .user-avatar { width: 32px; height: 32px; font-size: 13px; }

  /* Toast */
  .toast { bottom: 16px; right: 12px; left: 12px; text-align: center; font-size: 13px; }

  /* Tables on very small screens */
  .data-table th, .data-table td { padding: 8px 6px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
═══════════════════════════════════════════════════════ */
/* GPU-accelerated hover transforms */
.stat-card,
.service-card,
.feature-card,
.action-card,
.country-card { will-change: transform; }

/* Layout containment for scrollable lists */
.services-list,
.countries-list,
.countries-grid { contain: layout; }

/* Faster mobile taps */
.btn, a, .nav-item, .filter-tab, .provider-tab,
.service-item, .country-item, .channel-item,
.action-card, .page-btn, .amount-preset,
.country-card, .toggle-switch, .copy-btn,
.back-btn, .close-btn, .theme-toggle,
.nav-toggle, .topbar-toggle, .sidebar-close { touch-action: manipulation; }

/* ═══════════════════════════════════════════════════════
   LIGHT THEME
═══════════════════════════════════════════════════════ */
body.light {
  --dark:       #f0f2f8;
  --dark2:      #e4e7f0;
  --sidebar-bg: #ffffff;
  --text:       #1e1f2e;
  --text-muted: #6b7280;
  --border:     #e0e3ef;
  --card-bg:    #ffffff;
  --input-bg:   #f4f6fc;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
}

body.light { background: var(--dark); color: var(--text); }

/* Navbar light */
body.light .navbar {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
}
body.light .nav-brand { color: var(--text); }
body.light .nav-links a { color: var(--text-muted); }
body.light .nav-links a:hover { color: var(--text); }

/* Sidebar light */
body.light .sidebar {
  background: var(--sidebar-bg);
  border-right-color: var(--border);
  box-shadow: 2px 0 12px rgba(0,0,0,0.06);
}
body.light .sidebar-logo { color: var(--text); }
body.light .nav-item { color: var(--text-muted); }
body.light .nav-item:hover { background: rgba(192,192,192,0.07); color: var(--text); }
body.light .nav-item.active { background: rgba(192,192,192,0.12); color: var(--primary); }
body.light .nav-item.text-danger { color: var(--danger); }
body.light .nav-divider { border-color: var(--border); }
body.light .balance-amount { color: var(--text); }

/* Topbar light */
body.light .topbar {
  background: #ffffff;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
body.light .topbar-title { color: var(--text); }
body.light .topbar-toggle { color: var(--text-muted); }

/* Cards light */
body.light .card { background: var(--card-bg); border-color: var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
body.light .card-header { border-bottom-color: var(--border); }
body.light .stat-card { background: var(--card-bg); border-color: var(--border); }
body.light .stat-card:hover { border-color: var(--primary); }

/* Inputs light */
body.light input,
body.light select,
body.light textarea {
  background: var(--input-bg);
  border-color: var(--border);
  color: var(--text);
}
body.light input:focus,
body.light select:focus,
body.light textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,192,192,0.12);
}
body.light input[disabled],
body.light input[readonly] { opacity: 0.6; }

/* Tables light */
body.light .data-table th { border-bottom-color: var(--border); color: var(--text-muted); background: #f8f9fd; }
body.light .data-table td { border-bottom-color: #edf0f9; }
body.light .data-table tr:hover td { background: rgba(192,192,192,0.04); }

/* Hero light */
body.light .hero-live { background: #fff; border-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
body.light .live-item { border-bottom-color: var(--border); }

/* How it works / steps light */
body.light .how-it-works { background: rgba(192,192,192,0.03); }
body.light .step p { color: var(--text-muted); }

/* Service cards light */
body.light .service-card { background: #fff; border-color: var(--border); color: var(--text); }
body.light .service-card:hover { border-color: var(--primary); background: rgba(192,192,192,0.05); }
body.light .service-more { color: var(--text-muted); }

/* Feature cards light */
body.light .feature-card { background: #fff; border-color: var(--border); }
body.light .feature-card h3 { color: var(--text); }
body.light .feature-card p { color: var(--text-muted); }

/* Payment cards light */
body.light .payment-section { background: rgba(192,192,192,0.03); }
body.light .payment-card { background: #fff; border-color: var(--border); }
body.light .payment-card h3 { color: var(--text); }
body.light .payment-card p { color: var(--text-muted); }

/* Footer light */
body.light .footer { background: #fff; border-top-color: var(--border); }
body.light .footer-bottom { border-top-color: var(--border); }
body.light .footer-links a { color: var(--text-muted); }
body.light .footer-links a:hover { color: var(--text); }
body.light .footer-brand p { color: var(--text-muted); }

/* Buy panel light */
body.light .buy-panel { background: #fff; border-color: var(--border); }
body.light .service-item:hover { background: rgba(192,192,192,0.07); }
body.light .country-item:hover { background: rgba(192,192,192,0.07); }
body.light .provider-tab { background: var(--input-bg); border-color: var(--border); color: var(--text-muted); }
body.light .provider-tab.active { background: var(--primary); color: #fff; }
body.light .number-display { background: #f4f6fc; }
body.light .sms-code-box { background: #f4f6fc; }
body.light .sms-full-text { background: var(--input-bg); }

/* Auth light */
body.light.auth-page { background: radial-gradient(ellipse at top, rgba(192,192,192,0.1) 0%, #f0f2f8 60%); }
body.light .auth-card { background: #fff; border-color: var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
body.light .auth-logo { color: var(--text); }

/* Dropdown light */
body.light .dropdown-menu { background: #fff; border-color: var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
body.light .dropdown-menu a { color: var(--text-muted); }
body.light .dropdown-menu a:hover { background: var(--input-bg); color: var(--text); }

/* Modal light */
body.light .modal-box { background: #fff; border-color: var(--border); }
body.light .modal-header { border-bottom-color: var(--border); }
body.light .modal-footer { border-top-color: var(--border); }

/* Misc light */
body.light code { background: #eef0f9; color: #5a67d8; }
body.light .code-block { background: #f4f6fc; border-color: var(--border); }
body.light .code-block code { color: #5a67d8; }
body.light .action-card { background: #fff; border-color: var(--border); color: var(--text-muted); }
body.light .action-card:hover { border-color: var(--primary); color: var(--primary); }
body.light .aq-btn { background: #fff; border-color: var(--border); color: var(--text-muted); }
body.light .aq-btn:hover { border-color: var(--primary); color: var(--primary); }
body.light .amount-preset { background: var(--input-bg); border-color: var(--border); color: var(--text); }
body.light .pm-content { border-color: var(--border); }
body.light .page-btn { background: var(--input-bg); border-color: var(--border); color: var(--text); }
body.light .stat-row { border-bottom-color: var(--border); }
body.light .nav-toggle { color: var(--text-muted); }
body.light .back-btn { color: var(--text-muted); }
body.light .back-btn:hover { background: var(--input-bg); }
body.light .sidebar-close { color: var(--text-muted); }
body.light .loading-spinner { color: var(--text-muted); }
body.light .no-data { color: var(--text-muted); }
body.light .toggle-slider { background: #9ca3af; }
body.light .toggle-switch input:checked + .toggle-slider { background: var(--success); }

/* Theme toggle button */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--input-bg);
  color: var(--text-muted); cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.2s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* Admin sidebar light */
body.light .admin-body .sidebar { background: #fff; }
body.light .admin-body .topbar { background: #fff; }
body.light .admin-sidebar .nav-item.active { background: rgba(167,139,250,0.12); color: #7c3aed; }
