/* NIRYAT Demo - Shared styles */
:root {
  --navy: #0B1F3A;
  --navy-light: #1A3358;
  --cyan: #00B4D8;
  --cyan-dark: #0098B8;
  --cyan-bg: rgba(0,180,216,0.1);
  --orange: #FF8C42;
  --orange-dark: #E87A30;
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --bg: #F7F8FA;
  --text: #1A1A1A;
  --text-muted: #5C6470;
  --border: #E5E7EB;
  --border-strong: #CBD5E1;
  --success: #10B981;
  --success-bg: #D1FAE5;
  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  --danger: #EF4444;
  --danger-bg: #FEE2E2;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(11,31,58,0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.5;
  font-size: 14px;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.app { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }

/* SIDEBAR */
.sidebar {
  background: var(--navy); color: white; padding: 24px 0;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.sidebar-logo {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 20px; padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em;
  text-decoration: none; color: white;
}
.sidebar-logo:hover { text-decoration: none; }
.sidebar-logo-mark {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.sidebar-section-label {
  padding: 16px 24px 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4); font-weight: 600;
}
.sidebar-nav { padding: 8px 12px; flex: 1; overflow-y: auto; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; color: rgba(255,255,255,0.75);
  text-decoration: none; border-radius: 8px;
  font-size: 14px; font-weight: 500; margin-bottom: 2px;
  transition: all 0.15s; position: relative;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.06); color: white; text-decoration: none; }
.sidebar-nav a.active {
  background: rgba(0,180,216,0.15); color: var(--cyan);
}
.sidebar-nav a .badge-count {
  margin-left: auto; background: var(--orange); color: white;
  padding: 2px 7px; border-radius: 100px; font-size: 11px; font-weight: 700;
}
.nav-icon {
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.sidebar-footer {
  padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.sidebar-footer strong { color: white; font-weight: 600; display: block; margin-bottom: 2px; font-size: 13px; }

/* TOPBAR */
.topbar {
  background: white; padding: 14px 32px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.breadcrumb { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); text-decoration: none; }
.breadcrumb strong { color: var(--text); font-weight: 600; }
.breadcrumb-sep { opacity: 0.4; }

.topbar-actions { display: flex; align-items: center; gap: 16px; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); padding: 7px 12px; border-radius: 8px;
  border: 1px solid transparent; transition: all 0.15s; min-width: 280px;
}
.search-box:focus-within { background: white; border-color: var(--cyan); }
.search-box input {
  border: none; background: transparent; outline: none; font-size: 14px;
  flex: 1; font-family: inherit;
}
.search-box .kbd {
  font-size: 11px; color: var(--text-muted); background: white;
  padding: 2px 6px; border-radius: 4px; border: 1px solid var(--border);
}
.icon-btn {
  width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.15s; position: relative;
  font-size: 16px;
}
.icon-btn:hover { background: var(--bg); color: var(--text); }
.icon-btn .notif-dot {
  position: absolute; top: 7px; right: 9px;
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; border: 2px solid white;
}

.user-menu { position: relative; }
.user-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 12px 5px 5px; background: var(--bg); border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s;
  border: 1px solid transparent;
}
.user-chip:hover { border-color: var(--border-strong); }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: white; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.user-chip-meta { display: flex; flex-direction: column; line-height: 1.2; }
.user-chip-meta strong { font-size: 13px; font-weight: 600; }
.user-chip-meta span { font-size: 11px; color: var(--text-muted); }
.dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 220px;
  background: white; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 100;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; color: var(--text); border-radius: 6px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background 0.1s; cursor: pointer; width: 100%; text-align: left;
}
.dropdown-item:hover { background: var(--bg); text-decoration: none; }
.dropdown-item.danger:hover { background: var(--danger-bg); color: #991B1B; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* MAIN */
.main { padding: 28px 32px; max-width: 1400px; }
.page-header { margin-bottom: 24px; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.page-title {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 26px; color: var(--navy); letter-spacing: -0.01em;
}
.page-subtitle { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.page-actions { display: flex; gap: 8px; }

/* CARDS */
.card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin-bottom: 16px;
}
.card.compact { padding: 16px; }
.card.flat { box-shadow: none; }
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 16px; flex-wrap: wrap;
}
.card-title {
  font-weight: 700; font-size: 16px; color: var(--navy);
  font-family: 'Manrope', sans-serif;
}
.card-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* KPIs */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi-card {
  background: white; padding: 20px; border-radius: 12px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all 0.15s;
}
.kpi-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.kpi-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 600; }
.kpi-value {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 28px; color: var(--navy); margin-bottom: 4px; line-height: 1.1;
}
.kpi-meta { font-size: 12px; color: var(--text-muted); }
.kpi-meta.positive { color: var(--success); font-weight: 600; }
.kpi-meta.negative { color: var(--danger); font-weight: 600; }
.kpi-card.danger { border-left: 3px solid var(--danger); }
.kpi-card.warning { border-left: 3px solid var(--warning); }
.kpi-card.success { border-left: 3px solid var(--success); }

/* TABLES */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
  padding: 12px 16px; border-bottom: 1px solid var(--border); font-weight: 600;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; vertical-align: middle;
}
.data-table tbody tr { transition: background 0.1s; cursor: pointer; }
.data-table tbody tr:hover { background: var(--bg); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr.no-click { cursor: default; }
.mono { font-family: 'SF Mono', Monaco, Menlo, monospace; font-size: 13px; }

.table-empty {
  text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.table-empty-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.4; }
.table-empty-text { font-size: 14px; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 100px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  white-space: nowrap;
}
.badge-danger { background: var(--danger-bg); color: #991B1B; }
.badge-warning { background: var(--warning-bg); color: #92400E; }
.badge-success { background: var(--success-bg); color: #065F46; }
.badge-info { background: var(--cyan-bg); color: var(--cyan-dark); }
.badge-neutral { background: var(--bg); color: var(--text-muted); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  padding: 8px 14px; border-radius: 8px;
  font-weight: 600; font-size: 13px; text-decoration: none; cursor: pointer;
  border: 1px solid var(--border); background: white; color: var(--navy);
  transition: all 0.15s; font-family: inherit; white-space: nowrap;
  user-select: none;
}
.btn:hover { border-color: var(--navy); text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--orange); color: white; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: white; }
.btn-cyan { background: var(--cyan); color: white; border-color: var(--cyan); }
.btn-cyan:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); color: white; }
.btn-navy { background: var(--navy); color: white; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: white; }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #DC2626; color: white; }
.btn-ghost { border-color: transparent; }
.btn-ghost:hover { background: var(--bg); border-color: transparent; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-lg { padding: 12px 20px; font-size: 15px; }
.btn-block { width: 100%; }

/* ALERTS */
.alert {
  padding: 16px 20px; border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 12px;
  border-left: 3px solid;
}
.alert-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.alert-body { flex: 1; }
.alert-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.alert-text { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.alert-text a { color: inherit; font-weight: 700; text-decoration: underline; }
.alert.danger { background: var(--danger-bg); border-color: var(--danger); }
.alert.danger .alert-title { color: #991B1B; }
.alert.warning { background: var(--warning-bg); border-color: var(--warning); }
.alert.warning .alert-title { color: #92400E; }
.alert.success { background: var(--success-bg); border-color: var(--success); }
.alert.success .alert-title { color: #065F46; }
.alert.info { background: var(--cyan-bg); border-color: var(--cyan); }
.alert.info .alert-title { color: var(--cyan-dark); }

/* TWO COLUMN */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cols-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* FORMS */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-help { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-control {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit; outline: none;
  transition: all 0.15s; background: white; color: var(--text);
}
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-bg); }
.form-control:disabled { background: var(--bg); cursor: not-allowed; }
textarea.form-control { min-height: 80px; resize: vertical; font-family: inherit; }

.checkbox-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.checkbox-row input { width: 16px; height: 16px; cursor: pointer; }
.checkbox-row label { font-size: 14px; cursor: pointer; }

.toggle {
  position: relative; display: inline-block; width: 40px; height: 22px;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--border-strong); transition: 0.2s; border-radius: 100px;
}
.toggle-slider:before {
  content: ''; position: absolute; height: 16px; width: 16px;
  left: 3px; bottom: 3px; background: white; transition: 0.2s; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-slider { background: var(--cyan); }
.toggle input:checked + .toggle-slider:before { transform: translateX(18px); }

/* MODAL */
.modal-backdrop {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,31,58,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.2s; padding: 24px;
  backdrop-filter: blur(2px);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: white; border-radius: 14px; box-shadow: var(--shadow-xl);
  max-width: 600px; width: 100%; max-height: 90vh; overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(8px) scale(0.99);
  transition: transform 0.2s;
}
.modal.modal-lg { max-width: 800px; }
.modal.modal-xl { max-width: 1000px; }
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-shrink: 0;
}
.modal-title {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--navy); line-height: 1.3;
}
.modal-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px; color: var(--text-muted);
  font-size: 20px; transition: all 0.15s;
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-body {
  padding: 24px; overflow-y: auto; flex: 1;
}
.modal-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; justify-content: flex-end;
  background: var(--bg); flex-shrink: 0;
}

/* WIZARD */
.wizard-steps {
  display: flex; gap: 8px; margin-bottom: 24px; padding: 0 4px;
}
.wizard-step { flex: 1; }
.wizard-step-bar {
  height: 4px; background: var(--border); border-radius: 100px; margin-bottom: 8px;
  transition: background 0.2s;
}
.wizard-step.active .wizard-step-bar { background: var(--cyan); }
.wizard-step.complete .wizard-step-bar { background: var(--success); }
.wizard-step-label {
  font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.wizard-step.active .wizard-step-label { color: var(--cyan-dark); }
.wizard-step.complete .wizard-step-label { color: var(--success); }
.wizard-pane { display: none; }
.wizard-pane.active { display: block; }

/* TABS */
.tabs {
  display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.tab {
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--text-muted);
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.15s; margin-bottom: -1px;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--navy); border-bottom-color: var(--cyan); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* TOAST */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 300;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.toast {
  background: var(--navy); color: white;
  padding: 14px 18px; border-radius: 10px; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 10px;
  min-width: 300px; max-width: 420px; pointer-events: auto;
  animation: toastSlide 0.3s ease;
}
@keyframes toastSlide { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast.success { background: var(--success); }
.toast.danger { background: var(--danger); }
.toast.warning { background: var(--warning); color: var(--navy); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-text { font-size: 14px; font-weight: 500; flex: 1; }
.toast-action {
  font-size: 13px; font-weight: 700; color: inherit; text-decoration: underline;
  background: none; border: none; cursor: pointer; padding: 0;
}

/* SPINNER */
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* TIMELINE */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 20px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
}
.timeline-item.complete::before { background: var(--success); border-color: var(--success); }
.timeline-item.pending::before { background: var(--warning); border-color: var(--warning); }
.timeline-item.blocked::before { background: var(--danger); border-color: var(--danger); }
.timeline-date { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.timeline-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.timeline-text { font-size: 13px; color: var(--text-muted); }

/* DETAIL ROW (key-value display) */
.detail-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.detail-value { font-size: 14px; color: var(--text); }
.detail-value.mono { font-family: 'SF Mono', Monaco, Menlo, monospace; font-size: 13px; }

/* HELP / EMPTY */
.empty-state {
  text-align: center; padding: 48px 24px;
}
.empty-state-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.4; }
.empty-state-title { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.empty-state-text { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* LOGIN */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #FFE9C7 100%);
  padding: 20px;
}
.login-box {
  background: white; padding: 40px; border-radius: 16px; box-shadow: var(--shadow-xl);
  max-width: 420px; width: 100%;
}
.login-logo {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px;
  color: var(--navy); margin-bottom: 6px; letter-spacing: -0.02em;
}
.login-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 800;
}
.login-tagline { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.login-quick {
  margin-top: 20px; padding: 12px; background: var(--cream); border-radius: 8px;
  font-size: 12px; color: #6B5A2A; text-align: center;
}

/* PROGRESS */
.progress-track {
  width: 100%; height: 8px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; overflow: hidden; position: relative;
}
.progress-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transition: width 0.4s ease;
}
.progress-fill.warning { background: linear-gradient(90deg, var(--warning), #D97706); }
.progress-fill.danger { background: linear-gradient(90deg, var(--danger), #DC2626); }
.progress-fill.success { background: linear-gradient(90deg, var(--success), #047857); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .search-box { display: none; }
}
@media (max-width: 768px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main { padding: 16px; }
}

/* UTIL */
.hidden { display: none !important; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-mono { font-family: 'SF Mono', Monaco, Menlo, monospace; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.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; }
.p-0 { padding: 0; }

/* INFO BLOCK (for callout in modals etc.) */
.info-block {
  padding: 12px 14px; background: var(--bg); border-radius: 8px;
  font-size: 13px; line-height: 1.55; color: var(--text);
}
.info-block strong { color: var(--navy); font-weight: 700; }
.info-block.info-cyan { background: var(--cyan-bg); }
.info-block.info-cyan strong { color: var(--cyan-dark); }
.info-block.info-success { background: var(--success-bg); }
.info-block.info-success strong { color: #065F46; }
.info-block.info-warning { background: var(--warning-bg); }
.info-block.info-warning strong { color: #92400E; }
