:root {
  --geo-ink: #4b5563;
  --geo-strong: #1f2937;
  --geo-muted: #77808f;
  --geo-paper: #fffaf3;
  --geo-panel: #ffffff;
  --geo-line: #e7d8ca;
  --geo-blue: #13a7d7;
  --geo-blue-dark: #087ba5;
  --geo-sand: #f6efe7;
  --geo-shadow: 0 24px 70px rgba(74, 58, 40, 0.16);
  --geo-body-gradient:
    radial-gradient(circle at top right, rgba(19, 167, 215, 0.22), transparent 26rem),
    radial-gradient(circle at bottom left, rgba(230, 171, 96, 0.22), transparent 25rem),
    linear-gradient(135deg, #fffaf4 0%, #f2e8dd 100%);
}

html[data-theme="dark"] {
  --geo-ink: #cbd5e1;
  --geo-strong: #f8fafc;
  --geo-muted: #94a3b8;
  --geo-paper: #162131;
  --geo-panel: #111827;
  --geo-line: #2b3b52;
  --geo-blue: #38bdf8;
  --geo-blue-dark: #0ea5e9;
  --geo-sand: #111827;
  --geo-shadow: 0 26px 70px rgba(2, 6, 23, 0.5);
  --geo-body-gradient:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.12), transparent 25rem),
    linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--geo-ink);
  font-family: "Vazirmatn", "Dana", "Segoe UI", Tahoma, sans-serif;
  background: var(--geo-body-gradient);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.auth-card {
  width: min(100%, 430px);
  padding: 2.25rem;
  border: 1px solid rgba(124, 110, 96, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--geo-shadow);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.06em;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--geo-blue), var(--geo-blue-dark));
  box-shadow: 0 14px 30px rgba(19, 167, 215, 0.28);
}

.auth-card h1,
.workspace-header h1,
.content-card h2 {
  color: var(--geo-strong);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.auth-card h1 {
  margin: 0;
  text-align: center;
  font-size: 1.9rem;
}

.auth-subtitle {
  margin: 0.75rem 0 1.75rem;
  color: var(--geo-muted);
  text-align: center;
  line-height: 1.9;
}

.auth-alert-shell {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2600;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.auth-alert {
  position: relative;
  top: 0;
  left: auto;
  width: min(92vw, 42rem);
  margin: 0;
  color: var(--geo-strong);
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  line-height: 1.9;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.auth-alert-transient {
  animation: auth-alert-fade-out 0.45s ease 9.55s forwards;
}

.captcha-box {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.captcha-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-image {
  width: 140px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
}

.captcha-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--geo-muted);
  font-size: 0.92rem;
}

@keyframes auth-alert-fade-out {
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

.stack-form {
  display: grid;
  gap: 0.85rem;
}

.form-control,
.form-select {
  color: var(--geo-strong);
  border-color: #d7c8ba;
  border-radius: 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--geo-blue);
  box-shadow: 0 0 0 0.22rem rgba(19, 167, 215, 0.18);
}

.btn {
  border-radius: 16px;
  font-weight: 750;
}

.btn-primary {
  border-color: var(--geo-blue);
  background: linear-gradient(135deg, var(--geo-blue), var(--geo-blue-dark));
}

.auth-note {
  margin-top: 1.5rem;
  padding: 1rem;
  color: #5c6675;
  line-height: 1.8;
  border-radius: 20px;
  background: #eef8fb;
}

.panel-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.sidebar,
.workspace,
.content-card,
.metric-card {
  border: 1px solid rgba(124, 110, 96, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--geo-shadow);
  backdrop-filter: blur(16px);
}

.sidebar {
  position: sticky;
  top: 1.5rem;
  height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 28px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--geo-strong);
  font-size: 1.35rem;
}

.brand-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--geo-blue);
  box-shadow: 0 0 0 8px rgba(19, 167, 215, 0.14);
}

.nav-link {
  color: #5a6472;
  border-radius: 16px;
  font-weight: 750;
}

.nav-link:hover {
  color: var(--geo-blue-dark);
  background: #eef8fb;
}

.nav-link.active {
  color: var(--geo-blue-dark);
  background: #eef8fb;
}

.workspace {
  min-width: 0;
  padding: 1.5rem;
  border-radius: 32px;
}

.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  color: var(--geo-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(124, 110, 96, 0.16);
}

.workspace-header,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.eyebrow {
  color: var(--geo-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.user-pill {
  display: grid;
  gap: 0.15rem;
  min-width: 180px;
  padding: 0.8rem 1rem;
  color: var(--geo-strong);
  border: 1px solid var(--geo-line);
  border-radius: 18px;
  background: var(--geo-paper);
  font-weight: 800;
}

.user-pill span {
  color: var(--geo-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.metric-card,
.content-card {
  border-radius: 26px;
  padding: 1.25rem;
}

.metric-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metric-link:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: rgba(19, 167, 215, 0.34);
}

.metric-card span {
  color: var(--geo-muted);
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--geo-strong);
  font-size: clamp(1.2rem, 3vw, 2rem);
  overflow-wrap: anywhere;
}

.metric-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--geo-muted);
  line-height: 1.8;
}

.content-card {
  margin-top: 1rem;
}

.page-stack {
  display: grid;
  gap: 1rem;
}

.breadcrumb-shell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--geo-muted);
}

.breadcrumb-link {
  color: var(--geo-blue-dark);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb-current {
  color: var(--geo-strong);
  font-weight: 800;
}

.breadcrumb-separator {
  color: #a0a7b3;
  font-size: 1.1rem;
}

.page-toolbar,
.domains-toolbar,
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-stat {
  min-width: 140px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(124, 110, 96, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.75);
}

.page-stat span {
  display: block;
  color: var(--geo-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-stat strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--geo-strong);
  font-size: 1.4rem;
}

.domains-toolbar {
  align-items: end;
}

.search-box {
  flex: 1 1 340px;
}

.toolbar-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.toggle-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--geo-line);
  border-radius: 16px;
  background: var(--geo-paper);
  font-weight: 700;
}

.page-size-control {
  display: grid;
  gap: 0.45rem;
  min-width: 140px;
  color: var(--geo-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.domain-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.75rem;
}

.domain-form-compact {
  grid-template-columns: minmax(220px, 2fr) minmax(220px, 2fr) auto;
}

.create-domain-card {
  margin-top: 0;
}

.owner-transfer-meta {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--geo-strong);
  line-height: 1.9;
}

.owner-results-shell {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(124, 110, 96, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.65);
}

.owner-results-list {
  display: grid;
  gap: 0.6rem;
}

.owner-result-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: var(--geo-panel);
  cursor: pointer;
}

.owner-results-empty {
  color: var(--geo-muted);
  line-height: 1.8;
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.account-page-note {
  margin: 0;
  color: var(--geo-muted);
  line-height: 1.9;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.password-strength-card {
  padding: 1rem;
  border: 1px solid rgba(124, 110, 96, 0.18);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.65);
}

.password-strength-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.password-strength-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.password-strength-badge.is-danger {
  color: #b42318;
  background: #fee4e2;
}

.password-strength-badge.is-warning {
  color: #b54708;
  background: #fef0c7;
}

.password-strength-badge.is-info {
  color: #075985;
  background: #e0f2fe;
}

.password-strength-badge.is-success {
  color: #166534;
  background: #dcfce7;
}

.password-strength-bar {
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: #ece7e1;
}

.password-strength-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.password-strength-fill.is-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.password-strength-fill.is-warning {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.password-strength-fill.is-info {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}

.password-strength-fill.is-success {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.password-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.password-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--geo-muted);
  font-weight: 700;
}

.password-check.is-passed {
  color: var(--geo-strong);
}

.password-check-dot {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #d1d5db;
}

.password-check.is-passed .password-check-dot {
  background: var(--geo-blue);
  box-shadow: 0 0 0 5px rgba(19, 167, 215, 0.14);
}

.password-strength-note {
  margin-top: 0.9rem;
  color: var(--geo-muted);
  line-height: 1.8;
}

.password-strength-note.is-danger {
  color: #b42318;
}

.settings-form {
  display: grid;
  grid-template-columns: minmax(180px, 320px) auto;
  align-items: end;
  gap: 0.75rem;
}

.policy-form-grid,
.policy-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.policy-catalog-card {
  padding: 1rem;
  border: 1px solid rgba(124, 110, 96, 0.18);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.65);
}

.continent-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.continent-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: var(--geo-panel);
  cursor: pointer;
  font-weight: 700;
}

.continent-chip.is-selected {
  color: var(--geo-blue-dark);
  border-color: rgba(19, 167, 215, 0.36);
  background: #eef8fb;
}

.policy-country-select {
  min-height: 18rem;
}

.selected-country-shell {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(124, 110, 96, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.selected-country-list,
.policy-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.selected-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  color: var(--geo-blue-dark);
  border: 1px solid rgba(19, 167, 215, 0.26);
  border-radius: 999px;
  background: #eef8fb;
  font-weight: 700;
}

.selected-country-chip strong {
  font-size: 1rem;
  line-height: 1;
}

.policy-country-list {
  max-height: 20rem;
  overflow: auto;
  padding: 0.35rem;
  border: 1px solid rgba(124, 110, 96, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.country-check-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 220px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: var(--geo-panel);
  cursor: pointer;
  font-weight: 700;
}

.country-check-item.is-selected {
  color: var(--geo-blue-dark);
  border-color: rgba(19, 167, 215, 0.34);
  background: #eef8fb;
}

.policy-switch-row {
  display: flex;
  justify-content: flex-start;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
}

.status-chip.is-active {
  color: #166534;
  background: #dcfce7;
}

.status-chip.is-inactive {
  color: #b42318;
  background: #fee4e2;
}

.table-hint {
  margin-top: 0.35rem;
  color: var(--geo-muted);
  font-size: 0.82rem;
}

.ltr-input {
  direction: ltr;
  text-align: left;
}

.table {
  --bs-table-color: var(--geo-ink);
}

.domain-table th {
  vertical-align: middle;
  white-space: nowrap;
}

.table-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  color: var(--geo-strong);
  background: transparent;
  font-weight: 800;
}

.table-sort.active,
.table-sort:hover {
  color: var(--geo-blue-dark);
}

.table-sort small {
  min-width: 0.8rem;
  color: var(--geo-muted);
  font-size: 0.8rem;
}

.domain-name {
  color: var(--geo-strong);
  font-weight: 800;
}

.actions-col {
  width: 1%;
  white-space: nowrap;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.empty-state {
  padding: 2rem 1rem !important;
  color: var(--geo-muted) !important;
  text-align: center;
}

.results-summary {
  color: var(--geo-muted);
  font-weight: 700;
}

.pagination-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-indicator {
  color: var(--geo-strong);
  font-weight: 800;
}

.placeholder-card p {
  margin: 0;
  color: var(--geo-muted);
  line-height: 1.9;
}

.zone-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.zone-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.zone-policy-shell {
  display: grid;
  gap: 0.85rem;
}

.zone-policy-selected-list,
.zone-policy-available-list {
  display: grid;
  gap: 0.75rem;
}

.zone-policy-selected-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(19, 167, 215, 0.18);
  border-radius: 18px;
  background: rgba(238, 248, 251, 0.72);
  cursor: grab;
}

.zone-policy-selected-card:active {
  cursor: grabbing;
}

.zone-policy-selected-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.zone-policy-choice {
  justify-content: space-between;
  width: 100%;
}

.zone-policy-choice small {
  display: block;
  color: var(--geo-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.zone-form-hint {
  color: var(--geo-muted);
  font-size: 0.9rem;
}

.zone-content-cell {
  min-width: 320px;
  white-space: pre-wrap;
  word-break: break-word;
}

.record-type-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.3rem 0.7rem;
  color: var(--geo-blue-dark);
  border-radius: 999px;
  background: #eef8fb;
  font-weight: 800;
}

.info-value-box {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  color: var(--geo-strong);
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.user-flags-row {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.users-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0.75rem;
}

.filter-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  color: var(--geo-strong);
  border: 1px solid rgba(19, 167, 215, 0.18);
  border-radius: 16px;
  background: #eef8fb;
  font-weight: 700;
}

.drag-order-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: grab;
}

@media (max-width: 980px) {
  .panel-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .dashboard-grid,
  .domain-form,
  .zone-form-grid,
  .zone-policy-grid,
  .account-form-grid,
  .policy-form-grid,
  .policy-catalog-grid,
  .users-filter-grid,
  .settings-form,
  .page-toolbar,
  .domains-toolbar,
  .table-footer {
    grid-template-columns: 1fr;
  }

  .page-toolbar,
  .domains-toolbar,
  .table-footer {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .auth-alert-shell {
    padding: 0;
  }

  .auth-alert {
    width: 100vw;
    border-radius: 0;
  }

  .auth-shell,
  .panel-shell {
    padding: 0.75rem;
  }

  .auth-card,
  .workspace,
  .sidebar {
    border-radius: 22px;
  }

  .workspace-header,
  .section-heading,
  .workspace-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

html[data-theme="dark"] body {
  color: var(--geo-ink);
}

html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .sidebar,
html[data-theme="dark"] .workspace,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .metric-card {
  border-color: rgba(59, 130, 246, 0.18);
  background: rgba(15, 23, 42, 0.84);
  box-shadow: var(--geo-shadow);
}

html[data-theme="dark"] .auth-note,
html[data-theme="dark"] .filter-notice,
html[data-theme="dark"] .policy-catalog-card,
html[data-theme="dark"] .password-strength-card,
html[data-theme="dark"] .page-stat,
html[data-theme="dark"] .selected-country-shell,
html[data-theme="dark"] .policy-country-list,
html[data-theme="dark"] .owner-results-shell,
html[data-theme="dark"] .info-value-box {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(59, 130, 246, 0.14);
  color: var(--geo-ink);
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] .captcha-image {
  color: var(--geo-strong);
  background: rgba(15, 23, 42, 0.92);
  border-color: #334155;
}

html[data-theme="dark"] .toggle-chip,
html[data-theme="dark"] .user-pill,
html[data-theme="dark"] .continent-chip,
html[data-theme="dark"] .country-check-item,
html[data-theme="dark"] .owner-result-item,
html[data-theme="dark"] .zone-policy-selected-card {
  background: rgba(15, 23, 42, 0.92);
  border-color: #334155;
  color: var(--geo-ink);
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active,
html[data-theme="dark"] .selected-country-chip,
html[data-theme="dark"] .continent-chip.is-selected,
html[data-theme="dark"] .country-check-item.is-selected {
  background: rgba(56, 189, 248, 0.12);
}

html[data-theme="dark"] .table {
  --bs-table-color: var(--geo-ink);
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(148, 163, 184, 0.16);
  --bs-table-striped-bg: rgba(148, 163, 184, 0.04);
  --bs-table-hover-bg: rgba(56, 189, 248, 0.06);
}

html[data-theme="dark"] .auth-alert {
  background: rgba(15, 23, 42, 0.94);
}
