:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --danger: #dc2626;
  --danger-hover: #b91c1c;
  --success: #16a34a;
  --warning: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  min-height: 100vh;
}

/* ── Layout ─────────────────────────────────────────── */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: 240px;
  background: var(--gray-900);
  color: white;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.sidebar-brand {
  padding: 0 24px 24px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  border-bottom: 1px solid var(--gray-700);
  margin-bottom: 16px;
}

.sidebar-nav { flex: 1; }

/* Item 58: grouped sidebar section headers. */
.sidebar-group-label {
  padding: 14px 24px 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.sidebar-group-label:first-child { padding-top: 4px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.sidebar-nav a.active { border-right: 3px solid var(--primary); }

.sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-700);
  font-size: 13px;
  color: var(--gray-500);
}

.sidebar-footer .user-info { margin-bottom: 8px; color: var(--gray-300); }

.sidebar-footer button {
  background: none;
  border: 1px solid var(--gray-600);
  color: var(--gray-400);
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  width: 100%;
}

.sidebar-footer button:hover { border-color: var(--gray-400); color: white; }

.main-content {
  flex: 1;
  margin-left: 240px;
  padding: 32px;
  max-width: 1200px;
}

/* ── Auth pages (no sidebar) ────────────────────────── */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.auth-card {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
}

.auth-card h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.auth-card p {
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
}

.auth-tabs button {
  flex: 1;
  background: none;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}

.auth-tabs button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ── Form elements ──────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.15s;
  background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

.btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-primary:disabled { background: var(--gray-300); cursor: not-allowed; }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: var(--danger-hover); }

.btn-outline {
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Cards & Tables ─────────────────────────────────── */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-header h1 { font-size: 24px; font-weight: 700; }

.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  text-align: left;
  padding: 12px 16px;
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-600);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

tr:hover td { background: var(--gray-50); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-green { background: #dcfce7; color: #166534; }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ── Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal {
  background: white;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal h2 { font-size: 20px; margin-bottom: 20px; }

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* ── Alerts & Toast ─────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  animation: slideIn 0.3s ease;
  max-width: 400px;
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Tenant picker ──────────────────────────────────── */
.tenant-list { display: flex; flex-direction: column; gap: 12px; }

.tenant-option {
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}

.tenant-option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.tenant-option .name { font-weight: 600; font-size: 16px; }
.tenant-option .slug { color: var(--gray-500); font-size: 13px; }

/* ── Loading ─────────────────────────────────────────── */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--gray-400);
  gap: 12px;
}

/* ── Leave color dot ────────────────────────────────── */
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Empty state ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-400);
}

.empty-state h3 { color: var(--gray-600); margin-bottom: 8px; }

/* ── TOTP page (item 19) ─────────────────────────────── */
.totp-card { max-width: 480px; }
.totp-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  margin: 12px 0;
}
.totp-backup-section {
  background: #fff7ed;
  border-color: #fed7aa;
}
.totp-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.totp-qr {
  display: flex;
  justify-content: center;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
}
.totp-qr svg { display: block; max-width: 100%; height: auto; }
.totp-mono {
  font-family: ui-monospace, monospace;
  font-size: 16px;
  letter-spacing: 0.05em;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  word-break: break-all;
}
.totp-backup {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.totp-hint {
  color: var(--gray-500);
  font-size: 12px;
  margin: 8px 0 0 0;
}
.totp-confirm-saved {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}
.btn-small {
  padding: 4px 10px;
  font-size: 12px;
  margin-right: 6px;
}

/* ── Audit diff cell (item 27) ───────────────────────── */
.audit-diff-toggle {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0 4px;
  font-size: 11px;
  vertical-align: middle;
}
.audit-diff-toggle:hover { color: var(--gray-800); }
.audit-more { color: var(--gray-400); }
.audit-diff-full { white-space: normal; line-height: 1.5; }

/* ── Calendar ────────────────────────────────────────── */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-header h2 { font-size: 20px; font-weight: 700; min-width: 220px; text-align: center; }

.cal-nav { display: flex; gap: 8px; }

.cal-nav button {
  padding: 6px 14px;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}

.cal-nav button:hover { background: var(--gray-50); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-day-header {
  padding: 10px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.cal-day {
  min-height: 90px;
  padding: 4px;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: white;
  position: relative;
  overflow: hidden;
}

.cal-day:nth-child(7n) { border-right: none; }

.cal-day.outside {
  background: var(--gray-50);
  color: var(--gray-300);
}

.cal-day.today {
  background: var(--primary-light);
}

.cal-day.weekend {
  background: #fafafa;
}

.cal-day-num {
  font-size: 13px;
  font-weight: 500;
  padding: 2px 4px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-day.outside .cal-day-num { color: var(--gray-300); }
.cal-day.today .cal-day-num { color: var(--primary); font-weight: 700; }

.cal-day-add {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
  padding: 0;
}
.cal-day:hover .cal-day-add { opacity: 1; }

.cal-event {
  display: block;
  padding: 2px 6px;
  margin: 1px 0;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  line-height: 1.4;
}

.cal-event.pending { opacity: 0.6; border: 1px dashed rgba(255,255,255,0.5); }

/* Continuous absence bars */
.cal-bar {
  display: block;
  padding: 2px 6px;
  margin: 1px 0;
  font-size: 11px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  line-height: 1.4;
  position: relative;
}
.cal-bar.bar-start { border-radius: 4px 0 0 4px; margin-right: -4px; }
.cal-bar.bar-end { border-radius: 0 4px 4px 0; margin-left: -4px; }
.cal-bar.bar-mid { border-radius: 0; margin-left: -4px; margin-right: -4px; }
.cal-bar.bar-single { border-radius: 4px; }
.cal-bar.bar-pending { opacity: 0.6; border: 1px dashed rgba(255,255,255,0.5); }

/* Calendar events (holidays etc.) */
.cal-static-event {
  display: block;
  padding: 1px 6px;
  margin: 1px 0;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  color: #78350f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  line-height: 1.4;
  background: #fef3c7;
  border-left: 3px solid;
}

.cal-employee-picker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cal-employee-picker select {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  min-width: 220px;
}

.cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray-500);
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

/* ── Gantt / Team Schedule ──────────────────────────── */
.gantt-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.gantt-controls .cal-nav { display: flex; gap: 8px; }
.gantt-controls .cal-nav button {
  padding: 6px 14px; border: 1px solid var(--gray-300);
  background: white; border-radius: var(--radius);
  cursor: pointer; font-size: 13px;
}
.gantt-controls .cal-nav button:hover { background: var(--gray-50); }
.gantt-zoom { display: flex; gap: 4px; }
.gantt-zoom button {
  padding: 5px 12px; border: 1px solid var(--gray-300);
  background: white; border-radius: var(--radius);
  cursor: pointer; font-size: 12px;
}
.gantt-zoom button:hover { background: var(--gray-50); }
.gantt-zoom button.active { background: var(--primary); color: white; border-color: var(--primary); }

.gantt-wrapper {
  overflow-x: auto; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: white;
}
.gantt-table {
  border-collapse: collapse; width: max-content; min-width: 100%;
}
.gantt-table th, .gantt-table td {
  border: 1px solid var(--gray-100); padding: 0; text-align: center;
  font-size: 11px; white-space: nowrap;
}
.gantt-table thead th {
  background: var(--gray-50); color: var(--gray-500);
  font-weight: 600; position: sticky; top: 0; z-index: 2;
}
.gantt-table .gantt-name-col {
  position: sticky; left: 0; z-index: 3; background: white;
  text-align: left; padding: 6px 12px; font-size: 13px;
  font-weight: 500; min-width: 180px; max-width: 220px;
  border-right: 2px solid var(--gray-200);
}
.gantt-table thead .gantt-name-col {
  z-index: 4; background: var(--gray-50);
  font-size: 12px; color: var(--gray-600);
}
.gantt-table .gantt-day-cell {
  min-width: var(--gantt-cell-w, 36px); height: 34px;
  position: relative; vertical-align: middle;
}
.gantt-table .gantt-day-cell.weekend { background: #f9fafb; }
.gantt-table .gantt-day-cell.today-col { background: var(--primary-light); }
.gantt-table .gantt-day-cell.event-col { background: #fef9e7; }

.gantt-bar {
  position: absolute; top: 4px; bottom: 4px; left: 0; right: 0;
  border-radius: 3px; cursor: default;
}
.gantt-bar-start { left: 2px; border-radius: 3px 0 0 3px; }
.gantt-bar-end { right: 2px; border-radius: 0 3px 3px 0; }
.gantt-bar-single { left: 2px; right: 2px; border-radius: 3px; }
.gantt-bar-pending { opacity: 0.5; border: 1px dashed rgba(255,255,255,0.6); }
.gantt-bar-label {
  position: absolute; left: 6px; top: 0; bottom: 0;
  display: flex; align-items: center;
  font-size: 10px; color: white; font-weight: 500;
  white-space: nowrap; overflow: hidden;
  pointer-events: none;
}

.gantt-month-header th {
  background: var(--gray-100); font-size: 12px; font-weight: 700;
  color: var(--gray-700); padding: 4px 0;
}
.gantt-day-header th {
  padding: 4px 2px; font-size: 10px;
}

/* ── Mobile top bar + drawer ────────────────────────── */
.mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  background: var(--gray-900);
  color: white;
  padding: 10px 14px;
  z-index: 9;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-topbar .brand { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.mobile-topbar button {
  background: none;
  border: 1px solid var(--gray-600);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  min-width: 40px;
}
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 11;
}
.sidebar-backdrop.open { display: block; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-topbar { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
    z-index: 12;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content {
    margin-left: 0;
    padding: 16px;
    max-width: 100%;
  }
  .page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .filters { gap: 8px; }
  .filters input, .filters select { flex: 1 1 calc(50% - 8px); min-width: 0; }
  /* Tables and wide grids scroll horizontally rather than overflow the page. */
  table { display: block; overflow-x: auto; white-space: nowrap; }
  .cal-grid, .gantt-table-wrap { overflow-x: auto; }
  .modal { max-width: 95vw !important; }
  .form-row { flex-direction: column; }
}

/* ── Filters bar ────────────────────────────────────── */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.filters input, .filters select {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 13px;
}

.filters input:focus, .filters select:focus {
  outline: none;
  border-color: var(--primary);
}

/* ── Pagination ──────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.pagination button {
  padding: 6px 14px;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}

.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination button:hover:not(:disabled) { background: var(--gray-50); }

/* Registration page (public, no sidebar) */
.register-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  padding: 24px;
}

.register-card {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
}

.plan-preview {
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.invite-banner {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
}
.invite-banner a { color: #92400e; font-weight: 600; }

.plan-preview .plan-name { font-weight: 600; color: var(--primary); }
.plan-preview .plan-price { font-size: 24px; font-weight: 700; margin: 4px 0; }
.plan-preview .plan-desc { font-size: 13px; color: var(--gray-500); }

/* Settings link */
.api-url-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 6px 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 50;
}

.api-url-bar input {
  background: var(--gray-700);
  border: none;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  flex: 1;
  max-width: 400px;
}
