/* design-system/css/atoms.css */
/* Single source of truth for atom-level CSS classes (buttons, inputs, badges, tabs, modals, pagination, form controls, onboarding atoms, plus a few new atoms ready for future mocks). */
/* Not for: layout containers, page-level scaffolding, component compositions, or page-specific overrides. */

/* ════════════════════════════════════════════════════════════════
   TOKENS — Onboarding (used by .onb-* atoms below)
   Keep these here so onboarding atoms are self-contained.
   ════════════════════════════════════════════════════════════════ */

:root {
  --onb-bg: #fcfcfd;
  --onb-text: #151515;
  --onb-title: #12151b;
  --onb-muted: #5c6f8c;
  --onb-border: #bcc5d3;
  --onb-border-filled-bg: #eef0f4;
  --onb-brand: #ff380f;
  --onb-brand-accent: #e60278;
  --onb-focus: #1772eb;
  --onb-success: #1ba44f;
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: #ff380f;
  color: #fff;
  border-color: #ff380f;
}

.btn-primary:hover {
  background: #e63000;
}

.btn-brand-blue {
  background: #1f376b;
  color: #fff;
  border-color: #1f376b;
}

.btn-brand-blue:hover {
  background: #162a54;
  border-color: #162a54;
}

.btn-ghost {
  background: #fff;
  border-color: #cfd4dc;
  color: #151515;
}

.btn-ghost:hover {
  background: #f0f2f5;
}

.btn-lg {
  min-height: 44px;
  font-size: 15px;
  width: 100%;
}

/* Search button (orange CTA used in browse hero) */
.search-btn {
  background-color: #ff380f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Book / Quote button (table action) */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background: #ff380f;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-book:hover { background: #e63000; }

/* Icon-only button (notifications, bookmark, share) */
.icon-btn {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.icon-btn img {
  width: 24px;
  height: 24px;
}

/* ════════════════════════════════════════════════════════════════
   BADGES
   ════════════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
}

.badge-active {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-pending {
  background: #e3edf9;
  color: #1f376b;
}

/* Recommended pill (orange filled, sits next to payment option labels) */
.badge-recommended {
  height: 22px;
  padding: 0 10px;
  border-radius: 11px;
  background: #ff380f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* Load ID pill (gray neutral badge variant) */
.load-id-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 14px;
  background: #f0f2f5;
  color: #151515;
  font-size: 13px;
  font-weight: 500;
}

/* Notification count dot (sits on top of icon-btn) */
.badge-count {
  position: absolute;
  left: 11px;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff380f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   TABS
   ════════════════════════════════════════════════════════════════ */

.tabs {
  display: flex;
  gap: 28px;
}

.tab {
  position: relative;
  padding: 0 0 12px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #5c6370;
  cursor: pointer;
}

.tab.is-active {
  color: #151515;
  font-weight: 700;
}

.tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #ff380f;
  border-radius: 2px 2px 0 0;
}

/* ════════════════════════════════════════════════════════════════
   VIEW SEGMENT (toggle, e.g. List | Map)
   ════════════════════════════════════════════════════════════════ */

.view-segment {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.view-segment button {
  border: none;
  background: transparent;
  color: #c5cad8;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 20px;
}

.view-segment button.is-active {
  background: #fff;
  color: #1f376b;
}

/* ════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #e0e4e8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #151515;
  cursor: pointer;
}

.page-btn:hover {
  background: #f0f2f5;
}

.page-btn.is-active {
  background: #1f376b;
  color: #fff;
  border-color: #1f376b;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* ════════════════════════════════════════════════════════════════
   MODAL / OVERLAY
   ════════════════════════════════════════════════════════════════ */

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 21, 27, 0.45);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.overlay.is-open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: 400px;
  max-width: 92vw;
  position: relative;
  box-shadow: 0 12px 40px rgba(18, 21, 27, 0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  color: #5c6370;
}

.modal h2 {
  font-size: 20px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 8px;
}

.modal p {
  font-size: 14px;
  line-height: 22px;
  color: #5c6370;
  margin-bottom: 24px;
}

.modal-btn {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-bottom: 10px;
}

.modal-btn-primary {
  background: #ff380f;
  color: #fff;
  border: none;
}

.modal-btn-ghost {
  background: #fff;
  color: #151515;
  border: 1px solid #cfd4dc;
}

.modal-divider {
  text-align: center;
  font-size: 13px;
  color: #9aa3af;
  margin-bottom: 10px;
}

/* ════════════════════════════════════════════════════════════════
   FORM CONTROLS — Input / Textarea / Date / Select
   ════════════════════════════════════════════════════════════════ */

.form-input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e8eaed;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #151515;
}

.form-input:focus {
  border-color: #1f376b;
  outline: none;
}

.form-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.form-input-prefix {
  font-size: 14px;
  color: #5c6370;
  flex-shrink: 0;
}

.form-input-suffix {
  font-size: 14px;
  color: #5c6370;
  flex-shrink: 0;
}

/* Date input field */
.form-date-group {
  display: flex;
  gap: 8px;
}

.form-date-field {
  position: relative;
  max-width: 360px;
}

.form-date-input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e8eaed;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #151515;
  max-width: 160px;
}

.form-date-input.form-date-input-wide {
  width: 100%;
  max-width: none;
  padding-right: 42px;
}

.form-date-input:focus {
  border-color: #1f376b;
  outline: none;
}

.form-date-calendar-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
}

.form-date-calendar-btn:hover {
  background: #f0f2f5;
}

.form-date-calendar-btn img {
  width: 20px;
  height: 20px;
}

/* Textarea */
.form-textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #e8eaed;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #151515;
  resize: vertical;
}

.form-textarea:focus {
  border-color: #1f376b;
  outline: none;
}

/* Form helper text */
.form-hint {
  font-size: 12px;
  color: #5c6370;
  margin-top: 4px;
}

/* Select control (sort dropdown on browse pages) */
.sort-select {
  height: 36px;
  padding: 0 12px;
  border: 1px solid #e0e4e8;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  color: #151515;
}

/* ════════════════════════════════════════════════════════════════
   FORM ROW / GROUP / LABEL (form scaffolding atoms)
   ════════════════════════════════════════════════════════════════ */

.form-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 16px;
}

.form-row-label {
  flex-shrink: 0;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  color: #151515;
}

.form-row-label-strong {
  font-weight: 700;
}

.form-row-tag {
  font-size: 11px;
  color: #5c6370;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.form-group {
  margin-bottom: 16px;
}

/* Inline form group: label + control on one row */
.form-group-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.form-group-inline .form-label {
  margin-bottom: 0;
  flex-shrink: 0;
}

.form-group-inline .form-date-field {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.form-group-inline .form-input:not(.form-date-input) {
  flex: 1 1 auto;
  min-width: 120px;
  width: auto;
  max-width: none;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 8px;
}

.form-label-normal {
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════
   ONBOARDING ATOMS
   These use the --onb-* tokens at the top of this file.
   ════════════════════════════════════════════════════════════════ */

/* Phone input with country flag, dial code, and floating label */
.onb-phone {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid var(--onb-border);
  border-radius: 3px;
  background: var(--onb-bg);
}

.onb-phone__country {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 12px 16px;
  border-right: 1px solid var(--onb-border);
  background: transparent;
  cursor: pointer;
}

.onb-phone__flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.onb-phone__chevron {
  width: 24px;
  height: 24px;
  background: var(--onb-text);
  mask: url('../img/icon-chevron-down.svg') no-repeat center / 12px 12px;
  -webkit-mask: url('../img/icon-chevron-down.svg') no-repeat center / 12px 12px;
}

.onb-phone__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: var(--onb-text);
}

.onb-phone__input::placeholder {
  color: var(--onb-muted);
}

.onb-phone__label {
  position: absolute;
  top: -7px;
  left: 95px;
  padding: 0 4px;
  background: var(--onb-bg);
  font-size: 12px;
  line-height: 14px;
  color: var(--onb-muted);
}

.onb-phone:focus-within {
  border-color: var(--onb-brand);
}

/* OTP cell (single digit slot) */
.onb-otp {
  display: flex;
  gap: 16px;
}

.onb-otp__cell {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--onb-border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.24px;
  color: var(--onb-text);
  text-align: center;
  outline: none;
  padding: 0;
}

.onb-otp__cell:focus,
.onb-otp__cell--active {
  border-color: var(--onb-focus);
  border-width: 1px;
  caret-color: var(--onb-focus);
}

.onb-otp__cell--filled {
  background: var(--onb-border-filled-bg);
  border-color: var(--onb-border);
}

/* Status row (spinner / check + label) */
.onb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 53px;
}

.onb-status__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--onb-text);
}

.onb-status__spinner {
  width: 24px;
  height: 24px;
  border: 2.4px solid rgba(23, 114, 235, 0.2);
  border-top-color: var(--onb-focus);
  border-radius: 50%;
  animation: onb-spin 0.9s linear infinite;
}

@keyframes onb-spin {
  to { transform: rotate(360deg); }
}

.onb-status__check {
  width: 24px;
  height: 24px;
}

/* Primary CTA ("Send code", "Continue", ...) */
.onb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--onb-brand-accent);
  border-radius: 3px;
  background: var(--onb-brand);
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  text-decoration: none;
}

.onb-cta:hover {
  background: #e63000;
}

/* Back button */
.onb-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  background: none;
  border: 0;
  color: var(--onb-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
}

.onb-back__icon {
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: url('../img/icon-chevron-left.svg') no-repeat center / contain;
  -webkit-mask: url('../img/icon-chevron-left.svg') no-repeat center / contain;
}

/* Resend link */
.onb-resend {
  background: none;
  border: 0;
  padding: 0;
  color: var(--onb-brand);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
  text-decoration: none;
}

.onb-resend:hover {
  text-decoration: underline;
}

/* "Change it" inline link */
.onb-change-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.onb-change-link:hover {
  color: var(--onb-brand);
}

/* ════════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════════ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════════
   NEW ATOMS — not yet used in any page; available for new mocks
   These follow the .atom-* prefix convention to make them easy to
   spot vs the legacy unprefixed atoms above.
   ════════════════════════════════════════════════════════════════ */

/* ── Checkbox ── */
.atom-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cfd4dc;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.atom-checkbox:checked {
  background: #ff380f;
  border-color: #ff380f;
}

.atom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.atom-checkbox:indeterminate {
  background: #ff380f;
  border-color: #ff380f;
}

.atom-checkbox:indeterminate::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 2px;
  background: #fff;
}

.atom-checkbox:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Radio ── */
.atom-radio {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cfd4dc;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.atom-radio:checked {
  border-color: #ff380f;
}

.atom-radio:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff380f;
}

.atom-radio:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Switch ── */
.atom-switch {
  -webkit-appearance: none;
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #cfd4dc;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s;
}

.atom-switch::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s;
}

.atom-switch:checked {
  background: #ff380f;
}

.atom-switch:checked::after {
  left: 18px;
}

.atom-switch:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Tag (chip) ── */
.atom-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  background: #f0f2f5;
  color: #151515;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.atom-tag--outline {
  background: transparent;
  border: 1px solid #cfd4dc;
}

.atom-tag--brand {
  background: #ffe7e0;
  color: #b32a08;
}

.atom-tag__remove {
  width: 14px;
  height: 14px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}

.atom-tag__remove:hover {
  opacity: 0.7;
}

/* ── Tooltip (CSS-only, hover the parent that has data-tooltip) ── */
.atom-tooltip {
  position: relative;
  display: inline-flex;
}

.atom-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  background: #151515;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 50;
}

.atom-tooltip:hover::after {
  opacity: 1;
}

.atom-tooltip[data-pos="bottom"]::after {
  bottom: auto;
  top: calc(100% + 6px);
}

/* ── Toast ── */
.atom-toast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #151515;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  max-width: 420px;
}

.atom-toast--success {
  background: #1ba44f;
}

.atom-toast--error {
  background: #d32f2f;
}

.atom-toast--warning {
  background: #f5a623;
  color: #151515;
}

.atom-toast--info {
  background: #1772eb;
}

/* ── Progress bar ── */
.atom-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #f0f2f5;
  overflow: hidden;
  position: relative;
}

.atom-progress__bar {
  height: 100%;
  background: #ff380f;
  border-radius: 999px;
  transition: width 0.3s;
}

.atom-progress--indeterminate .atom-progress__bar {
  width: 30%;
  animation: atom-progress-slide 1.4s ease-in-out infinite;
}

@keyframes atom-progress-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(360%); }
}

/* ── Stepper ── */
.atom-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.atom-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5c6370;
}

.atom-stepper__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f2f5;
  color: #5c6370;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.atom-stepper__item--current .atom-stepper__dot {
  background: #ff380f;
  color: #fff;
}

.atom-stepper__item--current {
  color: #151515;
  font-weight: 600;
}

.atom-stepper__item--complete .atom-stepper__dot {
  background: #1ba44f;
  color: #fff;
}

.atom-stepper__item--error .atom-stepper__dot {
  background: #d32f2f;
  color: #fff;
}

.atom-stepper__line {
  flex: 1;
  height: 1px;
  background: #e8eaed;
  min-width: 16px;
}

/* ── Link ── */
.atom-link {
  color: #1f376b;
  text-decoration: none;
}

.atom-link:hover {
  text-decoration: underline;
}

.atom-link--brand {
  color: #ff380f;
}

.atom-link--subtle {
  color: #5c6370;
}

.atom-link--danger {
  color: #d32f2f;
}

/* ── Divider ── */
.atom-divider {
  height: 1px;
  background: #e8eaed;
  margin: 16px 0;
  border: 0;
}

.atom-divider--vertical {
  width: 1px;
  height: auto;
  align-self: stretch;
  margin: 0 16px;
}

/* Labelled divider — centred text (e.g. OR) between two rules */
.atom-divider--label {
  display: flex;
  align-items: center;
  gap: 16px;
  height: auto;
  background: none;
  color: #5c6370;
  font-size: 14px;
  font-weight: 500;
}

.atom-divider--label::before,
.atom-divider--label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8eaed;
}

/* ── Status dot (traffic-light legend dot) ──
   Small filled circle used inline next to a label in a legend or
   status row. Colours follow the documented Status tokens. */
.atom-status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: middle;
  background: #e8eaed;
}

.atom-status-dot--approved {
  background: #1ba44f;
}

.atom-status-dot--conditional {
  background: #f5a623;
}

.atom-status-dot--restricted {
  background: #d32f2f;
}

.atom-status-dot--unknown {
  background: #e8eaed;
  border: 1px solid #9aa3af;
}
