@import url("../assets/colors_and_type.css");

/* =====================================================================
   Thai diacritic-safe overrides
   GDS default 1.04 line-height clips Thai upper/lower marks.
   ===================================================================== */
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; }
h1, .vs-heading-xl { line-height: 1.25; }
h2, .vs-heading-l { line-height: 1.3; }
h3, .vs-heading-m, h4, .vs-heading-s { line-height: 1.4; }
p, .vs-body, label, .vs-input__hint, li { line-height: 1.55; }
.vs-body-l { line-height: 1.4; }

/* =====================================================================
   App shell
   ===================================================================== */
* { box-sizing: border-box; }
body { background: var(--vs-template-bg); }

.vs-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--vs-template-bg);
}

.vs-main {
  flex: 1;
  padding: 25px 0 60px;
  background: var(--vs-body-bg);
}
@media (max-width: 640px) {
  .vs-main { padding: 15px 0 40px; }
}

.vs-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--vs-gutter);
}
.vs-container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--vs-gutter);
}
@media (max-width: 640px) {
  .vs-container, .vs-container-narrow { padding: 0 var(--vs-gutter-half); }
}

/* =====================================================================
   Header
   ===================================================================== */
.vs-header {
  background: var(--vs-brand);
  color: #fff;
  border-bottom: 10px solid var(--vs-teal-accent);
}
.vs-header-top {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.vs-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 0;
}
.vs-header-logo img { height: 44px; width: auto; display: block; }
.vs-header-service {
  background: var(--vs-blue-shade-10);
  border-top: 1px solid rgba(255,255,255,.18);
}
.vs-header-service-inner {
  padding: 10px 0;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.vs-header-service-inner span {
  display: inline-block;
  background: var(--vs-red);
  color: #fff;
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 1px;
  font-size: 16px;
  letter-spacing: .5px;
}

.vs-role-switch {
  display: inline-flex;
  border: 2px solid #fff;
  background: transparent;
  font-size: 14px;
  line-height: 1;
}
.vs-role-switch button {
  background: transparent;
  color: #fff;
  border: 0;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
}
.vs-role-switch button.is-active {
  background: #fff;
  color: var(--vs-brand);
}

/* =====================================================================
   Phase banner
   ===================================================================== */
.vs-phase {
  border-bottom: 1px solid var(--vs-border);
  padding: 10px 0;
  font-size: 16px;
  background: var(--vs-body-bg);
}
.vs-phase-tag {
  background: var(--vs-brand);
  color: #fff;
  padding: 2px 8px;
  margin-right: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: 1px;
  text-transform: uppercase;
}

/* =====================================================================
   Footer
   ===================================================================== */
.vs-footer {
  background: var(--vs-template-bg);
  border-top: 1px solid var(--vs-surface-border);
  padding: 25px 0 20px;
  font-size: 16px;
}
.vs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}
.vs-footer-meta {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.vs-footer-meta img { height: 36px; width: auto; }

/* =====================================================================
   Headings & helpers
   ===================================================================== */
.vs-caption-l {
  font-size: 19px;
  color: var(--vs-text-secondary);
  font-weight: 400;
  margin: 0 0 5px;
}
.vs-lead {
  font-size: 21px;
  line-height: 1.5;
  margin: 0 0 25px;
}
@media (min-width: 641px) {
  .vs-lead { font-size: 24px; line-height: 1.4; }
}

.vs-meta {
  font-size: 16px;
  color: var(--vs-text-secondary);
  line-height: 1.5;
}

.vs-divider {
  border: 0;
  border-top: 1px solid var(--vs-border);
  margin: 30px 0;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--vs-font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  padding: 8px 12px 7px;
  border: 2px solid transparent;
  border-radius: 0;
  background: var(--vs-button);
  color: var(--vs-button-text);
  box-shadow: 0 2px 0 var(--vs-button-shadow);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 22px;
}
.vs-btn:hover { background: var(--vs-button-hover); color: #fff; }
.vs-btn:active { transform: translateY(2px); box-shadow: none; }
.vs-btn:focus {
  outline: 3px solid var(--vs-focus);
  outline-offset: 0;
  background: var(--vs-focus);
  color: var(--vs-focus-text);
  box-shadow: inset 0 0 0 1px var(--vs-focus), 0 2px 0 var(--vs-focus-text);
}
.vs-btn--secondary {
  background: var(--vs-button-secondary);
  color: var(--vs-button-secondary-text);
  box-shadow: 0 2px 0 var(--vs-button-secondary-shadow);
}
.vs-btn--secondary:hover {
  background: var(--vs-button-secondary-hover);
  color: var(--vs-button-secondary-text);
}
.vs-btn--warning {
  background: var(--vs-button-warning);
  color: #fff;
  box-shadow: 0 2px 0 var(--vs-button-warning-shadow);
}
.vs-btn--warning:hover { background: var(--vs-button-warning-hover); color: #fff; }
.vs-btn--block { display: flex; width: 100%; }
.vs-btn--start {
  font-size: 21px;
  font-weight: 700;
  padding: 12px 16px 11px;
}
.vs-btn--lg {
  font-size: 21px;
  padding: 14px 18px 13px;
  font-weight: 700;
}
.vs-btn--xl {
  font-size: 24px;
  padding: 18px 20px;
  font-weight: 700;
}

.vs-btn-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* =====================================================================
   Forms
   ===================================================================== */
.vs-field { margin-bottom: 22px; }
.vs-field--error {
  border-left: 5px solid var(--vs-error);
  padding-left: 15px;
}
.vs-label {
  display: block;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 5px;
}
.vs-hint {
  font-size: 19px;
  color: var(--vs-text-secondary);
  margin-bottom: 8px;
}
.vs-error-message {
  font-weight: 700;
  color: var(--vs-error);
  font-size: 19px;
  margin-bottom: 8px;
}
.vs-input {
  font-family: var(--vs-font-family);
  font-size: 19px;
  line-height: 1.4;
  padding: 8px 8px 7px;
  border: 2px solid var(--vs-input-border);
  border-radius: 0;
  width: 100%;
  background: #fff;
  color: var(--vs-text);
}
.vs-input:focus {
  outline: 3px solid var(--vs-focus);
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px var(--vs-text);
}
.vs-input--w-md { max-width: 360px; }
.vs-input--w-sm { max-width: 200px; }
textarea.vs-input { min-height: 120px; resize: vertical; }
select.vs-input { background: #fff; appearance: none; padding-right: 32px; background-image: linear-gradient(45deg, transparent 50%, var(--vs-text) 50%), linear-gradient(135deg, var(--vs-text) 50%, transparent 50%); background-position: calc(100% - 18px) 14px, calc(100% - 12px) 14px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }

.vs-radios { display: flex; flex-direction: column; gap: 8px; }
.vs-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 19px;
  line-height: 1.45;
  padding: 8px 0;
  cursor: pointer;
}
.vs-radio input {
  width: 26px;
  height: 26px;
  margin-top: 1px;
  accent-color: var(--vs-text);
  flex-shrink: 0;
}
.vs-radio--card {
  display: flex;
  border: 2px solid var(--vs-input-border);
  padding: 12px 15px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  gap: 12px;
}
.vs-radio--card.is-checked {
  background: var(--vs-blue-tint-95);
  box-shadow: inset 0 0 0 2px var(--vs-brand);
}
.vs-radio--card input { margin: 0; }
.vs-radio--card .vs-radio__title { font-weight: 700; }
.vs-radio--card .vs-radio__desc { font-size: 16px; color: var(--vs-text-secondary); margin-top: 2px; }

.vs-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 19px;
  cursor: pointer;
  padding: 5px 0;
}
.vs-checkbox input {
  width: 26px;
  height: 26px;
  accent-color: var(--vs-text);
  flex-shrink: 0;
}

fieldset.vs-fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.vs-fieldset legend {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  padding: 0;
}

.vs-error-summary {
  border: 5px solid var(--vs-error);
  padding: 15px;
  margin-bottom: 25px;
  background: #fff;
}
.vs-error-summary h2 { margin: 0 0 10px; font-size: 21px; }
.vs-error-summary ul { margin: 0; padding-left: 20px; }
.vs-error-summary a { color: var(--vs-error); font-weight: 700; }

/* =====================================================================
   Tags
   ===================================================================== */
.vs-tag {
  display: inline-block;
  padding: 4px 8px;
  background: var(--vs-blue-tint-80);
  color: var(--vs-blue-shade-50);
  border-radius: 1px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.2;
}
.vs-tag--green { background: var(--vs-green-tint-80); color: var(--vs-green-shade-50); }
.vs-tag--red { background: var(--vs-red-tint-80); color: var(--vs-red-shade-50); }
.vs-tag--orange { background: var(--vs-orange-tint-80); color: var(--vs-orange-shade-50); }
.vs-tag--grey { background: var(--vs-black-tint-80); color: var(--vs-black); }
.vs-tag--yellow { background: var(--vs-yellow-tint-50); color: var(--vs-orange-shade-50); }
.vs-tag--purple { background: var(--vs-purple-tint-80); color: var(--vs-purple-shade-50); }

/* =====================================================================
   Panel & cards
   ===================================================================== */
.vs-panel {
  background: var(--vs-success);
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  margin-bottom: 30px;
}
.vs-panel h1 { color: #fff; margin: 0 0 12px; font-size: 32px; line-height: 1.25; }
.vs-panel-ref { font-size: 24px; line-height: 1.4; }
.vs-panel-ref strong { display: block; font-size: 32px; letter-spacing: 2px; margin-top: 5px; }

.vs-inset {
  border-left: 5px solid var(--vs-blue-tint-50);
  padding: 5px 15px;
  margin: 25px 0;
}
.vs-card {
  background: var(--vs-blue-tint-95);
  padding: 20px;
  margin-bottom: 20px;
}
.vs-card--white { background: #fff; border: 1px solid var(--vs-border); }

/* Surface (wrapping section like a sub-panel) */
.vs-section { margin-bottom: 30px; }
.vs-section-title {
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--vs-border);
}

/* =====================================================================
   Summary list (dl)
   ===================================================================== */
.vs-summary { margin: 0 0 30px; padding: 0; }
.vs-summary-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--vs-border);
  align-items: baseline;
}
.vs-summary-row:last-child { border-bottom: 0; }
.vs-summary-key { font-weight: 700; }
.vs-summary-value { margin: 0; }
.vs-summary-action { margin: 0; text-align: right; font-size: 16px; }
@media (max-width: 640px) {
  .vs-summary-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .vs-summary-action { text-align: left; }
}

/* =====================================================================
   Lists (clickable rows for hospitals/numbers/reports)
   ===================================================================== */
.vs-list { list-style: none; margin: 0 0 30px; padding: 0; border-top: 1px solid var(--vs-border); }
.vs-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vs-border);
  text-decoration: none;
  color: inherit;
}
.vs-list-row:hover { background: var(--vs-blue-tint-95); }
.vs-list-row:focus { outline: 3px solid var(--vs-focus); outline-offset: 0; background: var(--vs-focus); text-decoration: none; }
.vs-list-row__main { flex: 1; min-width: 0; }
.vs-list-row__title {
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 3px;
  text-decoration: underline;
  color: var(--vs-link);
}
.vs-list-row:focus .vs-list-row__title { color: var(--vs-text); }
.vs-list-row__meta { font-size: 16px; color: var(--vs-text-secondary); margin: 0; }
.vs-list-row__chev {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--vs-text-secondary);
  flex-shrink: 0;
}

/* =====================================================================
   Action grid (home page tiles)
   ===================================================================== */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 480px) { .vs-grid { grid-template-columns: 1fr; } }

.vs-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 2px solid var(--vs-text);
  padding: 18px;
  text-decoration: none;
  color: var(--vs-text);
  min-height: 130px;
  position: relative;
}
.vs-tile:hover { background: var(--vs-blue-tint-95); }
.vs-tile:focus { outline: 3px solid var(--vs-focus); outline-offset: 0; }
.vs-tile__title { font-weight: 700; font-size: 21px; line-height: 1.3; margin: 0 0 5px; text-decoration: underline; color: var(--vs-link); }
.vs-tile:focus .vs-tile__title { color: var(--vs-text); }
.vs-tile__desc { font-size: 16px; color: var(--vs-text-secondary); margin: 0; line-height: 1.45; }
.vs-tile--emergency {
  background: var(--vs-red);
  border-color: var(--vs-red-shade-50);
  color: #fff;
  box-shadow: 0 4px 0 var(--vs-red-shade-50);
  min-height: 160px;
  grid-column: 1 / -1;
}
.vs-tile--emergency:hover { background: var(--vs-red-shade-25); color: #fff; }
.vs-tile--emergency .vs-tile__title { color: #fff; font-size: 28px; text-decoration: none; }
.vs-tile--emergency .vs-tile__desc { color: #fff; font-size: 19px; }
.vs-tile--emergency:focus { box-shadow: inset 0 0 0 2px var(--vs-text), 0 4px 0 var(--vs-text); }

/* =====================================================================
   Step progress (wizard)
   ===================================================================== */
.vs-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 25px;
  font-size: 14px;
  color: var(--vs-text-secondary);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.vs-step {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vs-step-num {
  width: 24px;
  height: 24px;
  background: var(--vs-black-tint-80);
  color: var(--vs-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.vs-step.is-active .vs-step-num { background: var(--vs-brand); color: #fff; }
.vs-step.is-done .vs-step-num { background: var(--vs-success); color: #fff; }
.vs-step-line {
  flex: 1;
  height: 2px;
  background: var(--vs-border);
  margin: 0 8px;
  min-width: 12px;
}
.vs-step.is-done + .vs-step-line { background: var(--vs-success); }
@media (max-width: 480px) {
  .vs-step-label { display: none; }
}

.vs-step-bar {
  background: var(--vs-blue-tint-95);
  border-bottom: 4px solid var(--vs-brand);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--vs-text-secondary);
}

/* =====================================================================
   Back link
   ===================================================================== */
.vs-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin: 0 0 15px;
  color: var(--vs-link);
  text-decoration: underline;
}
.vs-back::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid currentColor;
}

/* =====================================================================
   Map mock
   ===================================================================== */
.vs-map {
  position: relative;
  height: 320px;
  background:
    linear-gradient(0deg, rgba(13,71,161,.05) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(13,71,161,.05) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--vs-blue-tint-95);
  border: 2px solid var(--vs-text);
  cursor: crosshair;
  margin-bottom: 12px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.vs-map svg.vs-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.vs-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: none;
  font-size: 0;
}
.vs-map-pin::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--vs-red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 0 var(--vs-red-shade-50);
}
.vs-map-pin::after {
  content: "";
  display: block;
  width: 4px;
  height: 12px;
  background: var(--vs-red);
  margin: -2px auto 0;
  box-shadow: 1px 0 0 var(--vs-red-shade-50);
}
.vs-map-hint {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,.95);
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--vs-border);
  pointer-events: none;
}
.vs-map-coords {
  font-size: 14px;
  font-family: ui-monospace, Menlo, monospace;
  color: var(--vs-text-secondary);
  margin-bottom: 15px;
}

/* =====================================================================
   Photo grid
   ===================================================================== */
.vs-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.vs-photo {
  position: relative;
  aspect-ratio: 1;
  background: var(--vs-blue-tint-95);
  border: 2px solid var(--vs-text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.vs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vs-photo--add {
  border-style: dashed;
  background: #fff;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}
.vs-photo--add::before {
  content: "+";
  font-size: 36px;
  font-weight: 700;
  color: var(--vs-brand);
  line-height: 1;
}
.vs-photo:hover { background: var(--vs-blue-tint-80); }
.vs-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--vs-text);
  color: #fff;
  border: 0;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  font-family: var(--vs-font-family);
  font-weight: 700;
  padding: 0;
}

/* =====================================================================
   Toast (LINE-style notification mock)
   ===================================================================== */
.vs-toast {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  background: #06c755;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 480px;
  width: calc(100% - 30px);
  box-shadow: 0 4px 0 #048d3c;
  z-index: 1000;
  transition: transform .25s ease;
}
.vs-toast.is-shown { transform: translateX(-50%) translateY(0); }
.vs-toast-icon {
  background: #fff;
  color: #06c755;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  border-radius: 1px;
  font-family: var(--vs-font-family);
}
.vs-toast-body { font-size: 16px; line-height: 1.45; }
.vs-toast-body strong { display: block; margin-bottom: 2px; }

/* =====================================================================
   Modal (dial confirmation)
   ===================================================================== */
.vs-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,12,12,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  z-index: 999;
}
.vs-modal {
  background: #fff;
  max-width: 440px;
  width: 100%;
  padding: 25px;
  border: 2px solid var(--vs-text);
}
.vs-modal h2 { margin-top: 0; }
.vs-modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.vs-modal-actions .vs-btn { margin: 0; }

/* =====================================================================
   Timeline (status page)
   ===================================================================== */
.vs-timeline { list-style: none; padding: 0; margin: 0 0 30px; position: relative; }
.vs-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: var(--vs-border);
}
.vs-timeline-item {
  padding: 0 0 25px 40px;
  position: relative;
}
.vs-timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--vs-border);
  border: 2px solid #fff;
  border-radius: 50%;
}
.vs-timeline-item.is-active::before { background: var(--vs-brand); box-shadow: 0 0 0 3px var(--vs-blue-tint-80); }
.vs-timeline-item.is-done::before { background: var(--vs-success); }
.vs-timeline-time { font-size: 14px; color: var(--vs-text-secondary); margin: 0 0 3px; }
.vs-timeline-title { font-weight: 700; font-size: 19px; margin: 0 0 3px; }
.vs-timeline-desc { font-size: 16px; margin: 0; color: var(--vs-text-secondary); }

/* =====================================================================
   Officer table
   ===================================================================== */
.vs-table { border-collapse: collapse; width: 100%; font-size: 16px; margin-bottom: 25px; }
.vs-table th, .vs-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--vs-border);
  vertical-align: top;
  line-height: 1.45;
}
.vs-table th { font-weight: 700; background: var(--vs-blue-tint-95); }
.vs-table tr:hover td { background: var(--vs-blue-tint-95); }

/* =====================================================================
   Print (accident report)
   ===================================================================== */
.vs-print-only { display: none; }
@media print {
  .vs-no-print, .vs-header, .vs-footer, .vs-phase, .vs-step-bar { display: none !important; }
  body, .vs-app, .vs-main { background: #fff; }
  .vs-print-only { display: block; }
  .vs-card, .vs-card--white { border: 1px solid #000; }
}

/* =====================================================================
   Utilities
   ===================================================================== */
.vs-mt-0 { margin-top: 0; }
.vs-mb-0 { margin-bottom: 0; }
.vs-mb-2 { margin-bottom: 10px; }
.vs-mb-4 { margin-bottom: 20px; }
.vs-mb-6 { margin-bottom: 30px; }
.vs-mb-8 { margin-bottom: 50px; }
.vs-mt-4 { margin-top: 20px; }
.vs-mt-6 { margin-top: 30px; }
.vs-flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.vs-flex-between { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; }
.vs-stack > * + * { margin-top: 15px; }
.vs-text-center { text-align: center; }
.vs-strong { font-weight: 700; }
.vs-muted { color: var(--vs-text-secondary); }

/* Focus state on any focusable not otherwise styled */
:focus-visible {
  outline: 3px solid var(--vs-focus);
  outline-offset: 0;
}
