/* ═══════════════════════════════════════════════
   AviationHub — Main Stylesheet
   Fonts: Bebas Neue | DM Sans | JetBrains Mono
═══════════════════════════════════════════════ */

/* ── FONTS (از پوشه fonts/ لود میشن) ── */
@font-face {
  font-family: 'Bebas Neue';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono.woff2') format('woff2');
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-weight: 100 700;
  font-display: block;
  src: url('../fonts/material-symbols.woff2') format('woff2');
}

/* ── CSS VARIABLES ── */
:root {
  --bg: #F0F5FB;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --border: #D0E2F0;
  --dim: #B8CCE0;
  --red: #0F3460;
  --red-dark: #071E3D;
  --gold: #F5A800;
  --text: #2C3E50;
  --muted: #8A8D98;
  --on-surface: #4A6B8A;
  --orange: #E48843;
  --fail: #C93B3B;
  --green: #2E7D32;
  --sidebar-w: 250px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── MATERIAL ICONS ── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  font-feature-settings: 'liga';
  font-size: 20px;
}

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--on-surface);
}

/* ── LAYOUT ── */
.layout { display: flex; min-height: 100vh; }

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: linear-gradient(160deg, #1E5BA8 0%, #0F3460 45%, #061A33 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; flex-direction: column;
  position: fixed; top: 16px; left: 16px; bottom: 16px;
  z-index: 100; overflow-y: auto;
  transition: transform 0.25s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
}
/* Ensure modals always appear above sidebar */
[style*="position:fixed"][style*="background:rgba(0,0,0"] { z-index: 99999 !important; }
.sidebar-logo {
  padding: 22px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  border-radius: 16px 16px 0 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,58,130,0.35);
}
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.1em; color: #fff; line-height: 1; }
.logo-sub { font-size: 9px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }

.sub-badge {
  margin: 10px 16px; padding: 7px 12px; border-radius: 7px;
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.sub-badge.active { background: #FFF3CC; border: 1px solid #FFD54F; color: #7A4A00; }
.sub-badge.inactive { background: #FFEBEE; border: 1px solid #EF9A9A; color: #C62828; }

.nav { flex: 1; padding: 4px 0; }
.nav-link {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 20px;
  font-size: 13px; color: #A8C6E0;
  border-left: 2px solid transparent;
  transition: all 0.15s; font-weight: 500;
  width:100%;
}
.nav-link:hover { color: #FFFFFF; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #FFFFFF; background: rgba(255,255,255,0.12); border-left-color: var(--gold); font-weight: 600; }
.nav-divider { height: 1px; background: var(--border); margin: 4px 0; }

.sidebar-footer { border-top: 1px solid var(--border); border-radius: 0 0 16px 16px; }
.signout-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 20px; width: 100%; text-align: left;
  background: none; border: none;
  color: var(--muted); font-size: 14px;
  transition: color 0.15s;
}
.signout-btn:hover { color: var(--red); }

/* ── MAIN ── */
.main-content { flex: 1; margin-left: calc(var(--sidebar-w) + 32px); min-width: 0; display: flex; flex-direction: column; }

/* ── MOBILE HEADER ── */
.mobile-header {
  display: none;
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,52,96,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  align-items: center; gap: 14px;
}
.hamburger {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 7px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer; flex-shrink: 0;
}
.hamburger span { width: 16px; height: 2px; background: var(--on-surface); border-radius: 1px; display: block; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); z-index: 99;
}

/* ── PAGE ── */
.page { padding: clamp(16px, 4vw, 48px); max-width: 1100px; margin: 0 auto; width: 100%; }
.page-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 44px); letter-spacing: 0.04em; color: #0F3460; line-height: 1.1; }
.page-sub { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  transition: box-shadow 0.3s ease;
}
.card:hover { box-shadow: 0 0 24px -4px rgba(255,180,171,0.1); }

/* Stat card */
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  position: relative; overflow: hidden;
}
.stat-card-icon { position: absolute; right: -8px; bottom: -8px; opacity: 0.25; font-size: 80px; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-surface); margin-bottom: 8px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red { background: linear-gradient(135deg, #0F3460, #071E3D); color: #fff; box-shadow: 0 4px 14px rgba(15,52,96,0.3); position: relative; overflow: hidden; }
.btn-red::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.15); }
.btn-red:hover { box-shadow: 0 6px 20px rgba(11,58,130,0.4); }

.btn-gold { background: linear-gradient(135deg, var(--gold), #9a7a30); color: #000; font-weight: 700; }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--on-surface); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--dim); }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 6px; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 5px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.badge-green { background: rgba(73,168,106,0.1); border: 1px solid rgba(73,168,106,0.25); color: #49A86A; }
.badge-red { background: rgba(11,58,130,0.1); border: 1px solid rgba(11,58,130,0.25); color: #C62828; }
.badge-gold { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); color: var(--gold); }
.badge-gray { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted); }
.badge-blue { background: rgba(160,201,255,0.1); border: 1px solid rgba(160,201,255,0.2); color: #a0c9ff; }

/* ── FORMS ── */
.field { margin-bottom: 16px; }
.field-label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-surface); margin-bottom: 8px; }
.input { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text); font-size: 14px; outline: none; transition: border-color 0.15s, box-shadow 0.15s; }
.input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(11,58,130,0.08); }
.input-icon-wrap { position: relative; }
.input-icon-wrap .input { padding-left: 44px; }
.input-icon-wrap .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--on-surface); font-size: 18px; }
.otp-input { text-align: center; font-size: 28px; letter-spacing: 12px; font-family: 'JetBrains Mono', monospace; }

/* ── ALERTS ── */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; line-height: 1.5; border: 1px solid; }
.alert-error { background: rgba(11,58,130,0.08); border-color: rgba(11,58,130,0.2); color: #C62828; }
.alert-success { background: rgba(73,168,106,0.08); border-color: rgba(73,168,106,0.2); color: #49A86A; }
.alert-info { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); color: var(--gold); }

/* ── TABLES ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
th { padding: 11px 16px; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; background: #F0F5FB; }
td { padding: 12px 16px; font-size: 13px; color: #ccc; border-bottom: 1px solid rgba(255,255,255,0.03); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.01); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal { background: var(--card); border: 1px solid var(--border); border-radius: 14px; width: 100%; max-width: 560px; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.05em; color: #fff; }
.modal-close { background: none; border: none; color: var(--on-surface); font-size: 24px; line-height: 1; cursor: pointer; padding: 0; transition: color 0.15s; }
.modal-close:hover { color: var(--red); }
.modal-body { padding: 24px; overflow-y: auto; flex: 1; }

/* ── AUTH ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; overflow: hidden; }
.auth-glow-r { position: fixed; width: 600px; height: 600px; background: radial-gradient(circle, rgba(11,58,130,0.12) 0%, transparent 70%); top: -200px; right: -100px; pointer-events: none; border-radius: 50%; }
.auth-glow-g { position: fixed; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); bottom: -150px; left: -80px; pointer-events: none; border-radius: 50%; }
.fly-bg { position: fixed; font-family: 'Bebas Neue', sans-serif; font-size: clamp(150px,25vw,350px); color: rgba(15,52,96,0.06); user-select: none; pointer-events: none; line-height: 1; }
.auth-card { background: #FFFFFF; backdrop-filter: blur(12px); border: 1px solid #D0E2F0; border-radius: 14px; padding: 36px; width: 100%; max-width: 440px; position: relative; z-index: 1; box-shadow: 0 0 40px -10px rgba(11,58,130,0.2); }
.auth-logo-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(11,58,130,0.4); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 11px 8px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-surface); border-bottom: 2px solid transparent; transition: all 0.15s; }
.auth-tab:hover { color: var(--red); }
.auth-tab.active { color: var(--red); border-bottom-color: var(--red); }

/* ── EXAM ── */
.exam-topbar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 30; }
.timer-pill { display: flex; align-items: center; gap: 6px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 6px 12px; font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 700; color: var(--gold); }
.option { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; background: var(--card); border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.15s; margin-bottom: 8px; }
.option:hover { border-color: rgba(201,168,76,0.3); }
.option.selected { background: rgba(201,168,76,0.06); border-color: var(--gold); }
.option.correct { background: rgba(73,168,106,0.06); border-color: rgba(73,168,106,0.3); }
.option.wrong { background: rgba(201,59,59,0.06); border-color: rgba(201,59,59,0.3); }
.opt-key { width: 28px; height: 28px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; flex-shrink: 0; background: var(--dim); color: var(--muted); border: 1px solid var(--border); transition: all 0.15s; }
.option.selected .opt-key { background: var(--gold); color: #000; border-color: var(--gold); }
.option.correct .opt-key { background: #49A86A; color: #000; }
.option.wrong .opt-key { background: #C93B3B; color: #fff; }
.q-dot { width: 30px; height: 30px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; font-family: 'JetBrains Mono', monospace; border: 1px solid var(--border); background: rgba(10,10,16,0.8); color: var(--muted); cursor: pointer; }
.q-dot.answered { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold); }
.q-dot.current { background: var(--red); border-color: var(--red); color: #fff; }

/* ── RESULTS ── */
.score-pass { background: linear-gradient(180deg,#fff 0%,#49A86A 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.score-fail { background: linear-gradient(180deg,#fff 0%,#C93B3B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BOTTOM NAV ── */
.bottom-nav { display: none; position: sticky; bottom: 0; z-index: 30; background: rgba(13,13,20,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.bottom-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 10px 4px 12px; color: var(--on-surface); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; gap: 3px; transition: color 0.15s; }
.bottom-nav-item:hover, .bottom-nav-item.active { color: var(--red); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-120%);
    top: 12px; left: 12px; bottom: 12px;
    width: 270px;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .main-content { margin-left: 0; }
  .mobile-header { display: flex; }
  .bottom-nav { display: flex; }
}
@media (max-width: 575px) {
  .auth-card { padding: 24px 18px; }
  .page { padding: 16px; }
}

/* ── UTILITY ── */
.text-red { color: var(--fail); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-on-surface { color: var(--on-surface); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.bg-card { background: var(--card); }
.border-ah { border: 1px solid var(--border); }
.rounded-ah { border-radius: 12px; }
.gap-3 { gap: 12px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media(max-width:767px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   BUG FIXES
   1. Dark select/dropdown
   2. Flight Tools tab color
   3. Exam page right whitespace
══════════════════════════════════════════ */

/* ── FIX 1: Dark Select / Dropdown ── */
select.input,
select {
  background-color: var(--card) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 36px !important;
}
select option {
  background-color: #12121c;
  color: #eeeef5;
}
select option:checked,
select option:hover {
  background-color: #0B3A82;
  color: #fff;
}

/* ── FIX 2: Flight Tools Tab Color ── */
.tool-tab {
  color: var(--on-surface) !important;
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
.tool-tab:hover:not(.active) {
  color: var(--text) !important;
  background: rgba(255,255,255,0.03) !important;
}
.tool-tab.active {
  background: #0F3460 !important;
  color: #FFFFFF !important;
  border-color: var(--border) !important;
  border-bottom-color: var(--card) !important;
}

/* ── FIX 3: Exam / Questions page right whitespace ── */
.main-content {
  overflow-x: hidden;
  max-width: 100%;
}
.page {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}

/* ── FLOATING GLASS BOTTOM NAV ── */
@media (max-width: 768px) {
  .bottom-nav {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 320px !important;
    max-width: calc(100vw - 32px) !important;
    background: rgba(15,52,96,0.45) !important;
    backdrop-filter: blur(32px) !important;
    -webkit-backdrop-filter: blur(32px) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 36px !important;
    padding: 8px 16px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
    border-top: none !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 4px !important;
    z-index: 200 !important;
  }
  .bottom-nav-item {
    border-radius: 28px !important;
    padding: 7px 12px !important;
    color: rgba(168,198,224,0.85) !important;
  }
  .bottom-nav-item.active {
    color: #F5A800 !important;
    background: rgba(245,168,0,0.15) !important;
    border: 1px solid rgba(245,168,0,0.3) !important;
  }
  .main-content { padding-bottom: 100px !important; }
}

.btn-red, .btn-red:hover, .btn-red:focus, .btn-red:active { color: #fff !important; opacity: 1 !important; }

.acc-group { flex-shrink: 0; }
