/* ══════════════════════════════════════════════════════════════
   shared.css — Design System مشترك لجميع صفحات RADIUS Manager
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --bg-primary:    #090d1a;
  --bg-card:       #0f1629;
  --bg-card-hover: #141d35;
  --bg-elevated:   #1a2340;
  --border:        rgba(255,255,255,0.07);
  --border-active: rgba(99,102,241,0.4);
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #475569;
  --accent:        #6366f1;
  --accent-hover:  #4f46e5;
  --accent-glow:   rgba(99,102,241,0.25);
  --blue:          #3b82f6;
  --purple:        #8b5cf6;
  --green:         #10b981;
  --orange:        #f59e0b;
  --red:           #ef4444;
  --cyan:          #06b6d4;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --sidebar-w:     270px;
  --font-body:     'Cairo', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --shadow:        0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.5);
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  direction: rtl;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 800px 600px at 10% 5%, rgba(99,102,241,0.07), transparent 60%),
    radial-gradient(ellipse 600px 500px at 90% 90%, rgba(59,130,246,0.05), transparent 60%),
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(139,92,246,0.03), transparent 70%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════ */
.sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  gap: 0;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  transition: var(--transition);
}

/* Custom scrollbar for sidebar */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border-active); border-radius: 4px; }

.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.brand-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}

.brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px var(--accent-glow);
  flex-shrink: 0;
}

.brand-text h2 {
  font-size: 15px; font-weight: 800; color: var(--text-primary);
  white-space: nowrap;
}

.brand-text span {
  font-size: 11px; color: var(--text-muted);
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex; flex-direction: column;
  gap: 6px;
}

.nav-section-label {
  font-size: 10px; font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 8px 6px;
}

.nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px; font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  white-space: nowrap;
}

.nav-link .nav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  background: transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.2);
}

.nav-link:hover .nav-icon {
  background: rgba(99,102,241,0.15);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.15));
  border-color: rgba(99,102,241,0.35);
}

.nav-link.active .nav-icon {
  background: rgba(99,102,241,0.25);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--purple));
  border-radius: 3px 0 0 3px;
}

/* ── Submenus Collapsible ───────────────────────────────── */
.submenu-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  width: 100%;
  text-align: right;
  font-family: inherit;
  transition: var(--transition);
  position: relative;
}

.submenu-header:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.submenu-header .nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.submenu-header:hover .nav-icon {
  background: rgba(255,255,255,0.06);
}

.submenu-arrow {
  margin-right: auto; /* Push to far left */
  font-size: 9px;
  color: var(--text-muted);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}

.submenu-group.open .submenu-arrow {
  transform: rotate(-90deg); /* points down in RTL */
  color: var(--accent);
}

.submenu-group.open .submenu-header {
  color: var(--text-primary);
  background: rgba(255,255,255,0.02);
}

.submenu-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px dashed rgba(255,255,255,0.06);
  margin-right: 28px; /* aligns beautifully under title */
}

.submenu-group.open .submenu-items {
  max-height: 500px; /* high limit to fit all children */
  padding-top: 4px;
  padding-bottom: 4px;
}

.submenu-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.submenu-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.02);
}

.submenu-link.active {
  color: var(--accent);
  background: rgba(99,102,241,0.06);
  font-weight: 700;
}

.submenu-link.active::before {
  content: '';
  position: absolute;
  right: -5px; /* aligns exactly with parent border */
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.sidebar-status {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius);
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.status-text { font-size: 12px; color: var(--green); font-weight: 700; }

/* ── Mobile Hamburger ─────────────────────────────────────── */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 16px; right: 16px;
  z-index: 300;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.hamburger-btn:hover { background: var(--bg-elevated); }

.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 199;
  backdrop-filter: blur(4px);
}

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

.main-content {
  flex: 1;
  margin-right: var(--sidebar-w);
  padding: 36px 32px 80px;
  min-width: 0;
}

/* ══════════════════════════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════════════════════════ */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.page-header-text h1 {
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.page-header-text p {
  color: var(--text-secondary); font-size: 13.5px;
}

/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(99,102,241,0.2);
}

/* ── Stats Grid ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: var(--transition);
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--stat-color, var(--accent));
  opacity: 0.6;
}

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.stat-icon {
  font-size: 22px; opacity: 0.9;
}

.stat-label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); }
.stat-value {
  font-size: 26px; font-weight: 800;
  font-family: var(--font-mono);
  color: var(--stat-color, var(--accent));
}

.stat-card.blue  { --stat-color: var(--blue); }
.stat-card.green { --stat-color: var(--green); }
.stat-card.purple{ --stat-color: var(--purple); }
.stat-card.orange{ --stat-color: var(--orange); }
.stat-card.red   { --stat-color: var(--red); }
.stat-card.cyan  { --stat-color: var(--cyan); }

/* ══════════════════════════════════════════════════════════
   TOOLBAR & FILTERS
   ══════════════════════════════════════════════════════════ */
.toolbar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
}

.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.search-input, .filter-select {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus, .filter-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-input { min-width: 220px; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative; overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(99,102,241,0.4);
}

.btn-success {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.25);
}

.btn-danger {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,68,68,0.25);
}

.btn-warning {
  background: linear-gradient(135deg, #b45309, #f59e0b);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-outline:hover { border-color: var(--accent); color: var(--text-primary); }

.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn-icon {
  padding: 8px;
  width: 36px; height: 36px;
}

/* ══════════════════════════════════════════════════════════
   DATA TABLE
   ══════════════════════════════════════════════════════════ */
.table-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table-scroll { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

thead th {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: right;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(99,102,241,0.04); }

tbody td {
  padding: 13px 16px;
  color: var(--text-primary);
  vertical-align: middle;
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11.5px; font-weight: 700;
  white-space: nowrap;
}

.badge-green  { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
.badge-red    { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.badge-blue   { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.badge-purple { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.25); }
.badge-orange { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.badge-gray   { background: rgba(100,116,139,0.12);color: #94a3b8; border: 1px solid rgba(100,116,139,0.25); }
.badge-cyan   { background: rgba(6,182,212,0.12);  color: #22d3ee; border: 1px solid rgba(6,182,212,0.25); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 20px;
  flex-wrap: wrap;
}

.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}

.page-btn:hover { border-color: var(--accent); color: var(--text-primary); }
.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

/* ══════════════════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.shared-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(99,102,241,0.15);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-overlay.open .shared-modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.modal-title { font-size: 17px; font-weight: 800; }

.modal-close {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  transition: var(--transition);
}

.modal-close:hover { color: var(--text-primary); border-color: var(--red); }

.modal-body { padding: 20px 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; justify-content: flex-end;
}

/* ══════════════════════════════════════════════════════════
   FORM ELEMENTS
   ══════════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text-secondary); }

.form-input, .form-select, .form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-hint { font-size: 11.5px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 13.5px; }

/* ══════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  display: flex; flex-direction: column-reverse; gap: 10px;
}

.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 13.5px; font-weight: 700;
  max-width: 360px;
  animation: toastIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
  transition: var(--transition);
}

.toast.success { border-color: rgba(16,185,129,0.3); }
.toast.error   { border-color: rgba(239,68,68,0.3); }
.toast.info    { border-color: rgba(99,102,241,0.3); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-20px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ══════════════════════════════════════════════════════════
   LOADING SPINNER
   ══════════════════════════════════════════════════════════ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(100%);
    box-shadow: none;
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }

  .sidebar-overlay.open { display: block; }

  .hamburger-btn { display: flex; }

  .main-content {
    margin-right: 0;
    padding: 72px 16px 64px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .filters-row { flex-direction: column; align-items: stretch; }
  .search-input { min-width: unset; width: 100%; }

  table { font-size: 12px; }
  thead th, tbody td { padding: 10px 12px; }

  .shared-modal-box { max-width: 100%; margin: 0; }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .shared-modal-box { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }

  .btn { padding: 9px 16px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.text-primary   { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted     { color: var(--text-muted) !important; }
.text-green     { color: var(--green) !important; }
.text-red       { color: var(--red) !important; }
.text-blue      { color: var(--blue) !important; }
.text-orange    { color: var(--orange) !important; }
.text-purple    { color: var(--purple) !important; }
.text-mono      { font-family: var(--font-mono); }
.font-bold      { font-weight: 700; }

.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.items-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.gap-8          { gap: 8px; }
.gap-12         { gap: 12px; }
.gap-16         { gap: 16px; }
.gap-20         { gap: 20px; }
.gap-24         { gap: 24px; }
.mb-16          { margin-bottom: 16px; }
.mb-24          { margin-bottom: 24px; }
.mb-32          { margin-bottom: 32px; }

.hidden { display: none !important; }
.w-full { width: 100%; }
