/* ═══════════════════════════════════════════
   GSA SYSTEM v2 — DESIGN SYSTEM
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --gsa: #1e1b4b;
  --gsa-mid: #4338ca;
  --gsa-light: #eef2ff;
  --gsa-border: #c7d2fe;

  --al: #0c2340;
  --al-mid: #0369a1;
  --al-light: #e0f2fe;
  --al-border: #bae6fd;

  --ag: #052e16;
  --ag-mid: #16a34a;
  --ag-light: #dcfce7;
  --ag-border: #86efac;

  --danger: #dc2626;
  --danger-lt: #fee2e2;
  --warn: #d97706;
  --warn-lt: #fef3c7;
  --success: #16a34a;
  --success-lt: #dcfce7;
  --info: #0369a1;
  --info-lt: #e0f2fe;

  --bg: #f6f5f2;
  --surface: #ffffff;
  --surface2: #f1f0ec;
  --surface3: #e9e8e3;

  --text1: #111110;
  --text2: #525250;
  --text3: #a3a29e;
  --text4: #d4d3cf;

  --border: rgba(0,0,0,.08);
  --border2: rgba(0,0,0,.14);
  --border3: rgba(0,0,0,.22);

  --sidebar: 232px;
  --header: 54px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --font: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', monospace;
  --sh-sm: 0 1px 2px rgba(0,0,0,.06);
  --sh: 0 2px 8px rgba(0,0,0,.08);
  --sh-lg: 0 8px 24px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text1);
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--border3); }
::selection { background: var(--gsa-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes spin { to { transform:rotate(360deg); } }
.a-fadeUp { animation: fadeUp .22s ease both; }
.a-fadeIn { animation: fadeIn .18s ease both; }
.a-slideIn { animation: slideIn .2s ease both; }
.d1{animation-delay:.05s} .d2{animation-delay:.10s} .d3{animation-delay:.15s}
.d4{animation-delay:.20s} .d5{animation-delay:.25s}

/* ─── LOGIN ─── */
#login-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: var(--bg);
}
.login-card {
  width: 100%; max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh);
  overflow: hidden;
  animation: fadeUp .25s ease;
}
.login-head {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.login-logo-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.login-logo-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.login-head-text h1 { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.login-head-text p { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 2px; }
.login-body { padding: 24px 28px 28px; }
.login-body > p { font-size: 12.5px; color: var(--text2); margin-bottom: 18px; }
.login-fields { display: flex; flex-direction: column; gap: 13px; margin-bottom: 16px; }
.field-wrap label { font-size: 11.5px; font-weight: 500; color: var(--text2); display: block; margin-bottom: 5px; }
.field-wrap input, .field-wrap select {
  width: 100%; padding: 8px 11px;
  border: 1px solid var(--border2); border-radius: var(--r-sm);
  font-size: 13px; color: var(--text1); background: var(--surface);
  outline: none; transition: border .12s, box-shadow .12s;
}
.field-wrap input:focus, .field-wrap select:focus {
  border-color: var(--gsa-mid);
  box-shadow: 0 0 0 3px rgba(67,56,202,.1);
}
.field-wrap input::placeholder { color: var(--text4); }
.login-btn {
  width: 100%; padding: 10px;
  background: var(--gsa); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: opacity .12s; letter-spacing: -.2px;
}
.login-btn:hover { opacity: .88; }
.login-error { color: var(--danger); font-size: 11px; margin-top: 10px; text-align: center; min-height: 16px; }

/* ─── LAYOUT ─── */
#app { display: flex; min-height: 100vh; }
#sidebar {
  width: var(--sidebar); background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; inset: 0 auto 0 0; z-index: 200;
  overflow: hidden;
}
#main { margin-left: var(--sidebar); flex: 1; min-height: 100vh; display: flex; flex-direction: column; min-width: 0; }
#header {
  height: var(--header);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 22px; gap: 12px;
  position: sticky; top: 0; z-index: 100;
}
#content { padding: 22px; flex: 1; }

/* ─── SIDEBAR ─── */
.sb-logo {
  height: var(--header);
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sb-logo-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sb-logo-icon svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sb-logo-text { font-size: 13px; font-weight: 600; letter-spacing: -.3px; line-height: 1.2; }
.sb-logo-sub { font-size: 10px; color: var(--text3); font-weight: 400; }

.sb-user {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0;
}
.sb-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 600;
  flex-shrink: 0; letter-spacing: -.3px;
}
.sb-user-info { flex: 1; min-width: 0; }
.sb-user-info div:first-child { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-user-info div:last-child { font-size: 10px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sb-nav { flex: 1; overflow-y: auto; padding: 8px; }
.sb-section { margin-bottom: 4px; }
.sb-sec-title {
  font-size: 11px; font-weight: 700; color: #5a6b7f;
  letter-spacing: .04em;
  padding: 10px 10px 6px;
  margin: 4px 0 2px;
  border-left: 3px solid #c5d0dc;
  border-radius: 0;
  transition: all .15s;
}
.sb-sec-title:hover {
  color: #2d3a4a;
  border-left-color: var(--gsa-mid);
  background: rgba(0,0,0,.02);
}
.sb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  border-radius: var(--r-sm);
  font-size: 12.5px; color: var(--text2);
  transition: all .12s;
  border: none; background: none;
  width: 100%; text-align: left;
  position: relative; cursor: pointer;
}
.sb-item:hover { background: var(--surface2); color: var(--text1); }
.sb-item.active { background: var(--gsa-light); color: var(--gsa-mid); font-weight: 500; }
.sb-item.active.al { background: var(--al-light); color: var(--al-mid); }
.sb-item.active.ag { background: var(--ag-light); color: var(--ag-mid); }
.sb-item svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; opacity: .65; }
.sb-item.active svg { opacity: 1; }
.sb-badge {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  background: var(--danger); color: #fff;
  padding: 1px 5px; border-radius: 8px;
  min-width: 16px; text-align: center; line-height: 1.6;
}
.sb-badge.warn { background: var(--warn); }
.sb-badge.info { background: var(--info); }

.sb-footer {
  padding: 8px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sb-lang {
  display: flex; align-items: center;
  padding: 6px 8px;
  font-size: 11px; color: var(--text3);
  gap: 6px; margin-bottom: 2px;
}
.lang-pills { display: flex; gap: 2px; margin-left: auto; }
.lang-pill {
  font-size: 10px; padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  background: none; color: var(--text2);
  cursor: pointer; transition: all .1s;
}
.lang-pill.active { background: var(--gsa); color: #fff; border-color: var(--gsa); }
.sb-logout {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; border-radius: var(--r-sm);
  font-size: 12.5px; color: var(--text3);
  border: none; background: none; width: 100%;
  transition: all .12s; cursor: pointer;
}
.sb-logout:hover { background: var(--danger-lt); color: var(--danger); }

/* ─── TOPBAR ─── */
.topbar-title { font-size: 14px; font-weight: 600; letter-spacing: -.2px; }
.topbar-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer; transition: all .12s;
  position: relative; color: var(--text2);
}
.icon-btn:hover { background: var(--surface2); border-color: var(--border2); }
.icon-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notif-dot {
  position: absolute; top: 4px; right: 4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--danger); border: 1.5px solid var(--surface);
}

/* ─── PAGE HEADER ─── */
.pg-hd { margin-bottom: 20px; }
.pg-hd h1 { font-size: 19px; font-weight: 600; letter-spacing: -.4px; margin-bottom: 3px; }
.pg-hd p { font-size: 12.5px; color: var(--text2); }
.pg-hd-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 500;
  transition: all .12s; border: 1px solid transparent;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--gsa); color: #fff; border-color: var(--gsa); }
.btn-primary:hover { opacity: .88; }
.btn-primary.al { background: var(--al-mid); border-color: var(--al-mid); }
.btn-primary.ag { background: var(--ag-mid); border-color: var(--ag-mid); }
.btn-second { background: var(--surface); color: var(--text1); border-color: var(--border2); }
.btn-second:hover { background: var(--surface2); border-color: var(--border3); }
.btn-ghost { background: none; color: var(--text2); border-color: transparent; }
.btn-ghost:hover { background: var(--surface2); color: var(--text1); }
.btn-danger { background: var(--danger-lt); color: var(--danger); border-color: transparent; }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-sm { padding: 5px 10px; font-size: 11.5px; }
.btn-xs { padding: 3px 8px; font-size: 11px; }
.btn-lg { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── CARDS ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 14px;
}
.card-hd {
  padding: 13px 16px 11px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card-hd h3 { font-size: 13px; font-weight: 600; }
.card-hd-right { font-size: 11px; color: var(--text3); display: flex; align-items: center; gap: 8px; }
.card-bd { padding: 16px; }
.card-footer { padding: 11px 16px; border-top: 1px solid var(--border); background: var(--surface2); display: flex; align-items: center; justify-content: space-between; }

/* ─── KPI ─── */
.kpi-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); gap: 10px; margin-bottom: 18px; }
.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
}
.kpi-lbl { font-size: 11px; color: var(--text3); margin-bottom: 6px; font-weight: 500; letter-spacing: .01em; }
.kpi-val { font-size: 22px; font-weight: 600; letter-spacing: -.5px; line-height: 1; margin-bottom: 5px; }
.kpi-diff { font-size: 11px; display: flex; align-items: center; gap: 3px; }
.kpi-diff.up { color: var(--success); }
.kpi-diff.dn { color: var(--danger); }

/* ─── GRIDS ─── */
.g2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; margin-bottom: 14px; }
.g3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-bottom: 14px; }
.g4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-bottom: 14px; }

/* ─── TABLE ─── */
.tbl-wrap { overflow-x: auto; }
/* 예약자 입력 행 — focus/locked 상태를 CSS 클래스로 (스타일 개별 setter 대신)
   ⚠ IME 조합 중 리플로우 방지 위해 background 개별 setter 사용 안 함 */
tr.pax-row { border-bottom: 1px solid var(--border); }
tr.pax-row-locked { opacity: .85; }
tr.pax-row-focus,
tr.pax-row-focus > td { background: #e8f0fe; }
tr.pax-row-focus input:not(:disabled),
tr.pax-row-focus select:not(:disabled) { background: #e8f0fe; }
.tbl { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.tbl thead th {
  padding: 8px 13px; text-align: center;
  font-size: 12.5px; font-weight: 600; color: var(--text3);
  text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
  background: var(--surface2); white-space: nowrap;
}
.tbl td { padding: 10px 13px; border-bottom: 1px solid var(--border); vertical-align: middle; text-align: center; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: #fafaf9; }
/* ─ 모든 셀에 세로 구분선 ─ */
.tbl th + th, .tbl td + td { border-left: 1px solid var(--border); }
.tbl.bordered-tbl th, .tbl.bordered-tbl td { border: 1px solid var(--border); }
.mono { font-family: var(--font); }
.muted { color: var(--text3); }

/* ─── BADGES ─── */
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 500;
  padding: 2px 7px; border-radius: 5px;
  white-space: nowrap;
}
.b-green { background: var(--ag-light); color: var(--ag); }
.b-blue { background: var(--al-light); color: var(--al); }
.b-purple { background: var(--gsa-light); color: var(--gsa); }
.b-red { background: var(--danger-lt); color: var(--danger); }
.b-warn { background: var(--warn-lt); color: var(--warn); }
.b-gray { background: var(--surface2); color: var(--text2); }

/* ─── TABS ─── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.tab-btn {
  padding: 9px 15px;
  font-size: 12.5px; font-weight: 500;
  border: none; background: none; cursor: pointer;
  color: var(--text3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all .12s;
}
.tab-btn:hover { color: var(--text2); }
.tab-btn.active { color: var(--gsa-mid); border-bottom-color: var(--gsa-mid); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── AUTOCOMPLETE ─── */
.ap-suggest {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 10;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--sh); max-height: 180px; overflow-y: auto;
}
.ap-suggest-item {
  padding: 7px 10px; font-size: 12px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.ap-suggest-item:last-child { border-bottom: none; }
.ap-suggest-item:hover { background: var(--gsa-light); }

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-hint { font-size: 11px; color: var(--text3); }
.form-error { font-size: 11px; color: var(--danger); }

/* ─── MODAL ─── */
.modal-bg {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(2px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-bg.open { display: flex; animation: fadeIn .15s ease; }
.modal {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  width: 100%; max-width: 500px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  animation: fadeUp .18s ease;
  box-shadow: var(--sh-lg);
}
.modal.modal-lg { max-width: 680px; }
.modal.modal-sm { max-width: 380px; }
.modal-hd {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.modal-hd h3 { font-size: 14px; font-weight: 600; }
.modal-close {
  background: none; border: none; cursor: pointer;
  width: 26px; height: 26px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); transition: all .12s; font-size: 14px;
}
.modal-close:hover { background: var(--surface2); color: var(--text1); }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal-ft { padding: 13px 20px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; flex-shrink: 0; }

/* ─── SEAT BAR ─── */
.seat-bar { margin: 4px 0; }
.seat-track { height: 6px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
.seat-fill { height: 100%; border-radius: 3px; transition: width .3s; }
.seat-meta { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--text3); margin-top: 3px; }

/* ─── BAR CHART ─── */
.barchart { display: flex; align-items: flex-end; gap: 5px; height: 110px; }
.bc-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; justify-content: flex-end; }
.bc-bar { width: 100%; border-radius: 3px 3px 0 0; min-height: 3px; }
.bc-lbl { font-size: 10px; color: var(--text3); white-space: nowrap; }

/* ─── SPARKLINE ─── */
.spark { display: flex; align-items: flex-end; gap: 2px; height: 28px; }
.sp-bar { flex: 1; border-radius: 1px 1px 0 0; opacity: .7; }

/* ─── NOTIFICATIONS ─── */
.notif-row { display: flex; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--border); align-items: flex-start; }
.notif-row:last-child { border-bottom: none; }
.notif-txt { flex: 1; font-size: 12px; line-height: 1.5; }
.notif-time { font-size: 10.5px; color: var(--text3); flex-shrink: 0; }

/* ─── STATUS ROW ─── */
.s-row { display: flex; align-items: center; gap: 11px; padding: 9px 16px; border-bottom: 1px solid var(--border); }
.s-row:last-child { border-bottom: none; }
.s-row:hover { background: #fafaf9; }

/* ─── BANNER ─── */
.banner {
  padding: 12px 16px;
  border-radius: var(--r);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.banner svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.banner.blue { background: var(--al-light); color: var(--al); border: 1px solid var(--al-border); }
.banner.warn { background: var(--warn-lt); color: #92400e; border: 1px solid #fde68a; }
.banner.green { background: var(--ag-light); color: var(--ag); border: 1px solid var(--ag-border); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 22px; right: 22px;
  background: var(--text1); color: #fff;
  padding: 10px 16px;
  border-radius: var(--r);
  font-size: 12.5px;
  z-index: 9999;
  box-shadow: var(--sh-lg);
  max-width: 320px;
  animation: fadeUp .2s ease;
}
.toast.ok { background: var(--ag-mid); }
.toast.err { background: var(--danger); }

/* ─── FARE TIMELINE ─── */
.fare-timeline { position: relative; padding: 8px 0; }
.fare-tl-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 11.5px; }
.fare-tl-label { width: 160px; flex-shrink: 0; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fare-tl-track { flex: 1; height: 22px; background: var(--surface2); border-radius: 4px; position: relative; overflow: hidden; }
.fare-tl-bar {
  position: absolute; top: 2px; bottom: 2px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; white-space: nowrap;
  min-width: 20px; transition: all .3s;
}
.fare-tl-months { display: flex; font-size: 9px; color: var(--text3); margin-top: 4px; }
.fare-tl-months span { flex: 1; text-align: center; }

/* ─── AGENCY LOGIN THEME ─── */
.agency-login .login-btn:hover { opacity: .88; }
.agency-login .field-wrap input:focus {
  border-color: var(--ag-mid);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

/* ─── EMPTY STATE ─── */
.empty { text-align: center; padding: 52px 24px; }
.empty p { font-size: 13px; color: var(--text3); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 16px 0; }
