/* ============================================================
   HSE MANAGEMENT SYSTEM - Main Stylesheet
   Theme: Industrial Safety — Navy + Safety Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1b2e45;
  --navy-light:  #243b55;
  --orange:      #f4820a;
  --orange-dark: #c96800;
  --orange-light:#ffa733;
  --cream:       #faf7f2;
  --white:       #ffffff;
  --gray-100:    #f4f6f9;
  --gray-200:    #e9ecef;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --green:       #1a7a4a;
  --green-light: #d4edda;
  --red:         #c0392b;
  --red-light:   #f8d7da;
  --yellow:      #d4ac0d;
  --yellow-light:#fff3cd;

  --font-main:   'Barlow', sans-serif;
  --font-heading:'Barlow Condensed', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;

  --shadow-sm:   0 2px 8px rgba(13,27,42,0.08);
  --shadow-md:   0 4px 20px rgba(13,27,42,0.12);
  --shadow-lg:   0 8px 40px rgba(13,27,42,0.18);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  background: var(--gray-100);
  color: var(--gray-800);
  min-height: 100vh;
}

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ---- Sidebar ---- */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  z-index: 1000;
  transition: width 0.3s ease;
}

.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-brand .brand-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.sidebar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.sidebar-brand .brand-sub {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.nav-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 12px 20px 6px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.sidebar-nav a.active {
  background: rgba(244,130,10,0.15);
  color: var(--orange-light);
  border-left-color: var(--orange);
}

.sidebar-nav a .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 16px;
  opacity: 0.8;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.user-name  { font-weight: 600; font-size: 13px; color: var(--white); }
.user-role  { font-size: 11px; color: var(--gray-400); text-transform: capitalize; }

/* ---- Main Content ---- */
.main-content {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: var(--white);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
}

.topbar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-content {
  padding: 28px;
  flex: 1;
}

/* ============================================================
   CARDS & SECTIONS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.card-header-hse {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-header-hse .header-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.card-header-hse .header-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.5px;
}

.card-header-hse .header-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.card-body-pad { padding: 24px; }

/* Section divider in form */
.section-block {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.section-block-header {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-block-header .section-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.section-block-header .section-badge {
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.section-block-body {
  padding: 22px;
  background: var(--white);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.form-label .required { color: var(--red); }

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}

.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,130,10,0.12);
  outline: none;
}

.form-control.readonly-styled {
  background: var(--gray-100);
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
}

textarea.form-control { resize: vertical; min-height: 90px; }

.input-prefix {
  display: flex;
  align-items: center;
  gap: 0;
}

.input-prefix-text {
  background: var(--navy);
  color: white;
  padding: 9px 14px;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  border: 1.5px solid var(--navy);
}

.input-prefix .form-control {
  border-radius: 0 8px 8px 0;
}

/* Checkbox / Radio styled */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  font-weight: 500;
  user-select: none;
}

.check-pill:hover { border-color: var(--orange); background: rgba(244,130,10,0.05); }
.check-pill input { accent-color: var(--orange); width: 16px; height: 16px; }
.check-pill.selected { border-color: var(--orange); background: rgba(244,130,10,0.1); color: var(--orange-dark); }

/* Question box (Ya/Tidak) */
.question-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
  flex-wrap: wrap;
}

.question-box:last-child { border-bottom: none; }
.question-box:nth-child(odd) { background: rgba(244,246,249,0.5); }

.question-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800);
  flex: 1;
}

.yn-group { display: flex; gap: 8px; flex-shrink: 0; }

.yn-btn {
  padding: 5px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.yn-btn:hover { border-color: var(--orange); }
.yn-btn.yn-yes.active  { background: var(--green); border-color: var(--green); color: white; }
.yn-btn.yn-no.active   { background: var(--red);   border-color: var(--red);   color: white; }

/* ============================================================
   RISK MATRIX
   ============================================================ */
.risk-matrix-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .risk-matrix-wrap { grid-template-columns: 1fr; }
}

.risk-slider-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.risk-slider-group label span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(244,130,10,0.4);
  transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.risk-result-box {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid;
  transition: var(--transition);
}

.risk-result-box.low      { background: #d4edda; border-color: #28a745; color: #155724; }
.risk-result-box.medium   { background: #fff3cd; border-color: #ffc107; color: #856404; }
.risk-result-box.high     { background: #ffe0cc; border-color: #fd7e14; color: #7d3700; }
.risk-result-box.critical { background: #f8d7da; border-color: #dc3545; color: #721c24; }

.risk-score-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.risk-level-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.risk-formula {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* ---- Risk matrix grid 5x5 ---- */
.matrix-grid {
  display: grid;
  grid-template-columns: 30px repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr) 30px;
  gap: 3px;
  max-width: 300px;
}

.matrix-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: var(--transition);
  cursor: default;
}

.matrix-cell.active { outline: 3px solid var(--navy); outline-offset: 1px; }
.matrix-axis { background: transparent; font-size: 11px; font-weight: 600; color: var(--gray-600); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,130,10,0.35); }

.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-mid); }

.btn-success {
  background: var(--green);
  color: white;
}
.btn-success:hover { background: #145a37; }

.btn-danger {
  background: var(--red);
  color: white;
}
.btn-danger:hover { background: #96281b; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-800);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-draft    { background: var(--gray-200); color: var(--gray-600); }
.badge-reviewed { background: var(--yellow-light); color: #7d5a00; }
.badge-approved { background: var(--green-light); color: var(--green); }

.badge-risk-low      { background: #d4edda; color: #155724; }
.badge-risk-medium   { background: #fff3cd; color: #856404; }
.badge-risk-high     { background: #ffe0cc; color: #7d3700; }
.badge-risk-critical { background: #f8d7da; color: #721c24; }

.badge-open       { background: #cce5ff; color: #004085; }
.badge-inprogress { background: var(--yellow-light); color: #7d5a00; }
.badge-closed     { background: var(--green-light); color: var(--green); }

/* ============================================================
   STATS CARDS (Dashboard)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}

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

.stat-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-icon.orange { background: rgba(244,130,10,0.12); color: var(--orange); }
.stat-icon.navy   { background: rgba(13,27,42,0.08); color: var(--navy); }
.stat-icon.green  { background: rgba(26,122,74,0.1); color: var(--green); }
.stat-icon.red    { background: rgba(192,57,43,0.1); color: var(--red); }

.stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   DATA TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

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

table.hse-table thead tr {
  background: var(--navy);
  color: white;
}

table.hse-table thead th {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: left;
}

table.hse-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

table.hse-table tbody tr:hover { background: rgba(244,130,10,0.04); }
table.hse-table tbody tr:last-child { border-bottom: none; }

table.hse-table tbody td {
  padding: 12px 16px;
  color: var(--gray-800);
  vertical-align: middle;
}

.nomor-kasus {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
}

/* ============================================================
   APPROVAL TIMELINE
   ============================================================ */
.approval-timeline {
  display: flex;
  gap: 0;
  margin: 20px 0;
}

.approval-step {
  flex: 1;
  position: relative;
  text-align: center;
}

.approval-step::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

.approval-step:last-child::after { display: none; }

.step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gray-200);
  transition: var(--transition);
}

.approval-step.done .step-circle   { background: var(--green); border-color: var(--green); color: white; }
.approval-step.active .step-circle { background: var(--orange); border-color: var(--orange); color: white; }
.approval-step.done::after         { background: var(--green); }

.step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--gray-600); letter-spacing: 0.5px; }
.step-sub   { font-size: 10px; color: var(--gray-400); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.login-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 32px 32px 28px;
  text-align: center;
}

.login-logo {
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
}

.login-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.login-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.login-body { padding: 32px; }

.login-body .form-label { font-size: 14px; }
.login-body .form-control { font-size: 15px; padding: 12px 16px; }

.login-footer-text {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 20px;
}

/* ============================================================
   ALERT / FLASH MESSAGES
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-success { background: var(--green-light); color: var(--green); border: 1px solid #b7dfcb; }
.alert-danger  { background: var(--red-light);   color: var(--red);   border: 1px solid #f1c0bb; }
.alert-warning { background: var(--yellow-light); color: #7d5a00;     border: 1px solid #ffe08a; }
.alert-info    { background: #cce5ff;             color: #004085;     border: 1px solid #b8d4f5; }

/* ============================================================
   PROGRESS STEPS (Form wizard)
   ============================================================ */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  transition: var(--transition);
}

.form-step.current .step-dot { background: var(--orange); color: white; }
.form-step.done    .step-dot { background: var(--green);  color: white; }

.step-connector {
  width: 40px; height: 3px;
  background: var(--gray-200);
  transition: var(--transition);
}

.step-connector.done { background: var(--green); }

.step-name {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
  color: var(--gray-600);
  white-space: nowrap;
}

.form-step.current .step-name { color: var(--orange); }
.form-step.done .step-name    { color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sidebar { width: 220px; }
  .main-content { margin-left: 220px; }
}

@media (max-width: 640px) {
  .sidebar { transform: translateX(-100%); width: 260px; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .page-content { padding: 16px; }
  .topbar { padding: 12px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--gray-600); font-size: 12px; }
.fw-bold     { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.font-mono   { font-family: var(--font-mono); }
.font-heading{ font-family: var(--font-heading); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.row  { display: flex; flex-wrap: wrap; gap: 16px; }
.col-12 { width: 100%; }
.col-6  { flex: 1 1 calc(50% - 8px); min-width: 200px; }
.col-4  { flex: 1 1 calc(33.333% - 11px); min-width: 180px; }
.col-3  { flex: 1 1 calc(25% - 12px); min-width: 150px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-1 { gap: 8px; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }
