/* ============================================================
   FriskaOps Sales & Fulfilment System — styles.css
   ============================================================ */

:root {
  --friska-green: #0B6B3A;
  --friska-green-light: #0d7f46;
  --friska-green-pale: #e8f5ee;
  --deep-brown: #4A2E1F;
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;
  --info: #2563EB;
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --border: #E5E7EB;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --sidebar-width: 240px;
  --header-height: 64px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ─── LOGIN ──────────────────────────────────────────────── */
#login-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #0B6B3A 0%, #084d2b 100%);
  padding: 1rem;
}
.login-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo img { height: 48px; }
.login-logo h1 { color: var(--friska-green); font-size: 1.4rem; font-weight: 700; margin-top: 0.75rem; }
.login-logo p { color: var(--text-secondary); font-size: 0.85rem; }
.login-form .form-group { margin-bottom: 1rem; }
.login-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.login-form select, .login-form input {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text-primary);
  transition: border-color var(--transition);
}
.login-form select:focus, .login-form input:focus { outline: none; border-color: var(--friska-green); }
.btn-login {
  width: 100%; padding: 0.75rem;
  background: var(--friska-green); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
}
.btn-login:hover { background: var(--friska-green-light); }

/* ─── APP LAYOUT ────────────────────────────────────────── */
#app {
  display: none;
  min-height: 100vh;
}
#app.visible { display: flex; }

/* ─── SIDEBAR ───────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--deep-brown);
  min-height: 100vh;
  position: fixed;
  top: 0; left: 0; z-index: 100;
  display: flex; flex-direction: column;
  transition: transform var(--transition);
  overflow-y: auto;
}
.sidebar-header {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.sidebar-logo { color: white; }
.sidebar-logo .logo-name { font-size: 1rem; font-weight: 700; }
.sidebar-logo .logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.sidebar-user {
  margin: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
.sidebar-user .user-name { color: white; font-size: 0.85rem; font-weight: 600; }
.sidebar-user .user-role { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.sidebar-nav { flex: 1; padding: 0.5rem 0; }
.nav-section-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.75rem 1rem 0.35rem;
}
.nav-item {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
  font-size: 0.85rem;
  position: relative;
}
.nav-item:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-item.active {
  background: var(--friska-green);
  color: white;
}
.nav-item.active::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: #7BE8A8;
}
.nav-item .nav-icon { width: 18px; text-align: center; flex-shrink: 0; }
.nav-badge {
  margin-left: auto;
  background: var(--danger); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 1px 6px; border-radius: 10px; min-width: 18px; text-align: center;
}
.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.btn-logout {
  width: 100%; padding: 0.55rem;
  background: rgba(220,38,38,0.15); color: #FCA5A5;
  border: 1px solid rgba(220,38,38,0.3); border-radius: var(--radius-sm);
  font-size: 0.8rem; cursor: pointer;
  transition: all var(--transition);
}
.btn-logout:hover { background: rgba(220,38,38,0.25); }

/* ─── MAIN CONTENT ──────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.topbar {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-height);
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: var(--shadow);
}
.topbar-left { display: flex; align-items: center; gap: 1rem; }
.topbar-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.topbar-time { font-size: 0.8rem; color: var(--text-secondary); }
.online-indicator {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: var(--success); font-weight: 500;
}
.online-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.25rem; color: var(--text-primary);
}
.hamburger svg { width: 22px; height: 22px; }

.page-content { padding: 1.5rem; flex: 1; }

/* ─── PAGE HEADER ───────────────────────────────────────── */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem;
}
.page-header h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.page-header p { color: var(--text-secondary); font-size: 0.85rem; }

/* ─── METRIC CARDS ──────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.metric-card {
  background: white; border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.metric-card:hover { box-shadow: var(--shadow-md); }
.metric-card.green  { background: var(--friska-green); color: white; border-color: transparent; }
.metric-card.coral  { background: #F97316; color: white; border-color: transparent; }
.metric-card.purple { background: #7C3AED; color: white; border-color: transparent; }
.metric-card.blue   { background: #2563EB; color: white; border-color: transparent; }
.metric-card.amber  { background: #F59E0B; color: white; border-color: transparent; }
.metric-card.red    { background: var(--danger); color: white; border-color: transparent; }
.metric-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; margin-bottom: 0.4rem; }
.metric-value { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.metric-value.lg { font-size: 2.2rem; }
.metric-sub { font-size: 0.72rem; opacity: 0.8; margin-top: 0.35rem; }
.metric-card:not(.green):not(.coral):not(.purple):not(.blue):not(.amber):not(.red) .metric-label { color: var(--text-secondary); }
.metric-card:not(.green):not(.coral):not(.purple):not(.blue):not(.amber):not(.red) .metric-value { color: var(--text-primary); }
.metric-card:not(.green):not(.coral):not(.purple):not(.blue):not(.amber):not(.red) .metric-sub { color: var(--text-secondary); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.card-body { padding: 1.25rem; }
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) { .card-grid { grid-template-columns: 1fr; } }

/* ─── TABLES ─────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
thead th {
  background: #F9FAFB; color: var(--text-secondary);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left; white-space: nowrap;
}
tbody td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #F3F4F6;
  vertical-align: middle;
}
tbody tr:hover { background: #FAFAFA; }
tbody tr:last-child td { border-bottom: none; }
.table-actions { display: flex; gap: 0.35rem; }

/* ─── BADGES / STATUS ───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 12px;
  font-size: 0.7rem; font-weight: 600; white-space: nowrap;
}
.badge-green   { background: #DCFCE7; color: #15803D; }
.badge-red     { background: #FEE2E2; color: #B91C1C; }
.badge-amber   { background: #FEF3C7; color: #B45309; }
.badge-grey    { background: #F3F4F6; color: #6B7280; }
.badge-blue    { background: #DBEAFE; color: #1D4ED8; }
.badge-purple  { background: #EDE9FE; color: #6D28D9; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full { grid-column: 1 / -1; }
label.form-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 0.05em;
}
label.form-label .required { color: var(--danger); }
input, select, textarea {
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text-primary);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--friska-green);
  box-shadow: 0 0 0 3px rgba(11,107,58,0.1);
}
textarea { resize: vertical; min-height: 80px; }
.form-hint { font-size: 0.72rem; color: var(--text-muted); }
.form-error { font-size: 0.72rem; color: var(--danger); font-weight: 500; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--friska-green); color: white; border-color: var(--friska-green); }
.btn-primary:hover { background: var(--friska-green-light); }
.btn-secondary { background: white; color: var(--text-primary); border-color: var(--border); }
.btn-secondary:hover { background: #F9FAFB; }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #B91C1C; }
.btn-warning { background: var(--warning); color: white; border-color: var(--warning); }
.btn-warning:hover { background: #D97706; }
.btn-success { background: var(--success); color: white; border-color: var(--success); }
.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.75rem; }
.btn-xs { padding: 0.2rem 0.5rem; font-size: 0.7rem; }
.btn-icon { padding: 0.35rem; border-radius: var(--radius-sm); display: inline-flex; }
.btn-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ─── MODALS ─────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 14px;
  width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.2s ease;
}
.modal-lg { max-width: 860px; }
@keyframes modalIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: white; z-index: 1; border-radius: 14px 14px 0 0;
}
.modal-title { font-size: 1rem; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--text-secondary); padding: 0.25rem; border-radius: 4px; }
.modal-close:hover { color: var(--text-primary); background: var(--border); }
.modal-body { padding: 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 0.75rem;
  position: sticky; bottom: 0; background: white; border-radius: 0 0 14px 14px;
}

/* ─── TABS ───────────────────────────────────────────────── */
.tabs { display: flex; gap: 0; border-bottom: 1.5px solid var(--border); margin-bottom: 1.25rem; overflow-x: auto; }
.tab-btn {
  padding: 0.6rem 1.1rem; cursor: pointer;
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1.5px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); transition: all var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--friska-green); border-bottom-color: var(--friska-green); }
.tab-btn:hover { color: var(--text-primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── CHARTS ─────────────────────────────────────────────── */
.chart-container { position: relative; height: 220px; width: 100%; }
.chart-bar-wrap { display: flex; align-items: flex-end; gap: 6px; height: 160px; padding: 0 4px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--friska-green); min-width: 20px;
  transition: height 0.5s ease; cursor: pointer;
}
.chart-bar:hover { background: var(--friska-green-light); }
.chart-labels { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-muted); padding: 4px 4px 0; }
.chart-legend { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.72rem; color: var(--text-secondary); margin-top: 0.5rem; }
.legend-item { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ─── SEARCH / FILTER BAR ───────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.search-input-wrap { position: relative; flex: 1; min-width: 200px; }
.search-input-wrap input { padding-left: 2.2rem; width: 100%; }
.search-icon { position: absolute; left: 0.65rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

/* ─── ORDER ITEMS TABLE ─────────────────────────────────── */
.items-table-wrapper { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1rem; }
.items-table-wrapper table { margin: 0; }
.items-table-wrapper thead th { background: var(--friska-green-pale); color: var(--friska-green); }

/* ─── ALERTS ─────────────────────────────────────────────── */
.alert {
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500;
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 1rem;
}
.alert-success { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.alert-danger { background: #FEE2E2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-warning { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }
.alert-info { background: #DBEAFE; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ─── EMPTY STATES ───────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--text-muted);
}
.empty-state svg { width: 48px; height: 48px; opacity: 0.4; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.85rem; }

/* ─── TOOLTIPS ───────────────────────────────────────────── */
.tooltip { position: relative; }
.tooltip::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #1F2937; color: white; font-size: 0.7rem;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 999;
}
.tooltip:hover::after { opacity: 1; }

/* ─── ONLINE USERS ───────────────────────────────────────── */
.user-presence-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.presence-card {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; background: #F9FAFB;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  min-width: 220px;
}
.presence-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--friska-green); color: white; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.presence-info .name { font-size: 0.82rem; font-weight: 600; }
.presence-info .role { font-size: 0.7rem; color: var(--text-secondary); }
.presence-info .page { font-size: 0.7rem; color: var(--text-muted); }

/* ─── SIDEBAR OVERLAY (mobile) ───────────────────────────── */
.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99;
}
.sidebar-overlay.open { display: block; }

/* ─── TOAST ──────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  background: #1F2937; color: white;
  padding: 0.7rem 1.1rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 500;
  box-shadow: var(--shadow-md); min-width: 260px;
  animation: toastIn 0.25s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─── LOADING ────────────────────────────────────────────── */
.loader-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,0.8);
  display: none; align-items: center; justify-content: center; z-index: 9999;
}
.loader-overlay.show { display: flex; }
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--friska-green);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── STOCK ALERT BANNER ─────────────────────────────────── */
.stock-alert-banner {
  display: flex; align-items: center; gap: 0.5rem;
  background: #FEF3C7; border: 1px solid #FDE68A;
  border-radius: var(--radius-sm); padding: 0.5rem 0.85rem;
  font-size: 0.78rem; color: #92400E; font-weight: 500; margin-bottom: 1rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .page-content { padding: 1rem; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.cols-2 { grid-template-columns: 1fr; }
  .form-grid.cols-3 { grid-template-columns: 1fr; }
  .modal { border-radius: 12px 12px 0 0; margin-top: auto; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; }
  .filter-bar { flex-direction: column; }
  .metric-value { font-size: 1.4rem; }
  .topbar-time { display: none; }
  .table-wrapper { font-size: 0.78rem; }
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.flex { display: flex; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.text-sm { font-size: 0.82rem; } .text-xs { font-size: 0.72rem; }
.text-muted { color: var(--text-secondary); }
.font-bold { font-weight: 700; } .font-semibold { font-weight: 600; }
.text-right { text-align: right; }
.text-green { color: var(--friska-green); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.w-full { width: 100%; }
.hidden { display: none !important; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
