html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

:root {
  --app-bg: #f6f6f8;
  --content-bg: #f6f6f8;
  --surface-bg: #ffffff;
  --surface-muted: #f8fafc;
  --sidebar-bg: #0f172a;
  --sidebar-border: #1e293b;
  --sidebar-text: #f8fafc;
  --sidebar-muted: #94a3b8;
  --sidebar-hover-bg: #1e293b;
  --sidebar-active-bg: #3e50b6;
  --sidebar-active-text: #ffffff;
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --text-color: #0f172a;
  --text-muted: #64748b;
  --outline-color: #cbd5e1;
  --primary-soft: #eef2ff;
  --danger-soft: #fee2e2;
  --danger-text: #991b1b;
  --header-bg: rgba(255, 255, 255, 0.85);
  --header-border: #e5e7eb;
  --steps-line: #eef2ff;
}

[data-bs-theme="dark"] {
  --app-bg: #0b1220;
  --content-bg: #0b1220;
  --surface-bg: #0f172a;
  --surface-muted: #111c33;
  --sidebar-bg: #0b1220;
  --sidebar-border: #1e293b;
  --sidebar-text: #e2e8f0;
  --sidebar-muted: #94a3b8;
  --sidebar-hover-bg: #111c33;
  --sidebar-active-bg: #3e50b6;
  --sidebar-active-text: #ffffff;
  --card-bg: #0f172a;
  --card-border: #1e293b;
  --text-color: #e2e8f0;
  --text-muted: #94a3b8;
  --outline-color: #334155;
  --primary-soft: rgba(62, 80, 182, 0.18);
  --danger-soft: rgba(127, 29, 29, 0.35);
  --danger-text: #fecaca;
  --header-bg: rgba(15, 23, 42, 0.6);
  --header-border: #1e293b;
  --steps-line: #1e293b;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  background: var(--app-bg);
  overflow: hidden;
}

.sidebar {
  width: 260px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  flex: 0 0 260px;
  min-height: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--sidebar-border);
}

.sidebar-brand-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sidebar-brand {
  font-weight: 700;
  color: var(--sidebar-text);
  text-decoration: none;
  line-height: 1.1;
}

.sidebar-brand-subtitle {
  color: var(--sidebar-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(148, 163, 184, 0.08);
  color: var(--sidebar-text);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.theme-toggle-btn:hover {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.34);
}

.theme-toggle-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.theme-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: none;
}

html[data-theme-setting="system"] .theme-icon-auto,
html[data-theme-setting="light"] .theme-icon-light,
html[data-theme-setting="dark"] .theme-icon-dark {
  display: block;
}

.theme-toggle-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar-nav {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar #sidebarNav {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--sidebar-muted);
  min-width: 0;
}

.sidebar-link:hover {
  background: var(--sidebar-hover-bg);
  color: var(--sidebar-text);
}

.sidebar-link.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-text);
  font-weight: 600;
}

.sidebar-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--sidebar-border);
  color: var(--sidebar-text);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--content-bg);
}

.app-shell--no-sidebar {
  overflow: auto;
}

.content--no-sidebar {
  min-height: 100vh;
}

.content--no-sidebar .content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.content-inner {
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.footer {
  background: var(--card-bg);
  flex: 0 0 auto;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px 0;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--header-border);
}

.dashboard-welcome {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard-metric {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  background: var(--card-bg);
}

.dashboard-metric--highlight {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary-soft) 72%, var(--card-bg)) 0%, var(--card-bg) 100%);
}

.dashboard-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  background: var(--card-bg);
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.metric-helper {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-kpi-tile {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: var(--surface-muted);
}

.dashboard-kpi-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-kpi-value {
  margin-top: 0.35rem;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dashboard-kpi-note {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dashboard-stat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--surface-muted);
  border: 1px solid var(--card-border);
}

.dashboard-search .form-control::placeholder {
  color: #94a3b8;
}

.login-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-panel {
  width: min(100%, 28rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--outline-color) 55%, transparent);
  background: var(--surface-bg);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.login-card__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #3e50b6 0%, #6074ea 100%);
}

.login-card__body {
  padding: 2.5rem;
}

.login-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #3e50b6;
  background: var(--primary-soft);
}

.login-card__icon svg,
.login-input-wrap__icon svg,
.login-submit__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.login-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-color);
}

.login-card__eyebrow,
.login-field__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap__icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.login-input {
  min-height: 3rem;
  padding-left: 3rem;
  padding-right: 0.9rem;
  border-radius: 10px;
  border-color: var(--outline-color);
  background: var(--surface-muted);
  color: var(--text-color);
}

.login-input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 70%, transparent);
}

.login-input:focus {
  border-color: #3e50b6;
  background: var(--surface-bg);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, #3e50b6 18%, transparent);
}

.login-submit {
  min-height: 3.25rem;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(180deg, #4b5fc9 0%, #3e50b6 100%);
  box-shadow: 0 14px 30px rgba(62, 80, 182, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.login-submit:hover,
.login-submit:focus {
  color: #ffffff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(62, 80, 182, 0.28);
}

.login-submit:active {
  transform: translateY(0);
}

.login-submit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfd7ff;
}

.login-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid color-mix(in srgb, var(--danger-text) 20%, transparent);
  border-radius: 10px;
  background: var(--danger-soft);
  color: var(--danger-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.login-note {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 575.98px) {
  .login-card__body {
    padding: 1.5rem;
  }

  .login-card {
    border-radius: 16px;
  }

  .dashboard-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 8px;
}

.dashboard-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  z-index: 0;
  bottom: 12px;
  width: 2px;
  background: var(--steps-line);
}

.dashboard-step {
  display: flex;
  gap: 14px;
}

.step-dot {
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
  background: #ffffff;
}

.step-body {
  flex: 1;
}

/* Prevent long content from blowing up layouts */
pre, code {
  white-space: pre-wrap;
  word-break: break-word;
}

/* Tables: keep them scrollable without horizontal page scroll */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.status-badge {
  text-transform: capitalize;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Bootstrap responsive tables use overflow-x:auto which clips dropdowns.
   Use a 2-layer wrapper: outer scrolls, inner allows overflow for menus. */
.table-scroll {
  overflow-x: auto;
}

.table-scroll .table-overflow {
  overflow: visible;
  position: relative;
}

.table-scroll .dropdown-menu {
  z-index: 2000;
}

.table-scroll-top {
  display: none;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
}

.table-scroll-top__spacer {
  height: 1px;
}

.contact-table-scroll {
  scrollbar-gutter: stable both-edges;
}

.contact-table {
  table-layout: auto;
}

.contact-table th,
.contact-table td {
  white-space: nowrap;
  vertical-align: middle;
}

.contact-table td {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.contact-table .contact-avatar {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.78rem;
}

.contact-row-actions .btn {
  white-space: nowrap;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Higher-contrast chips/badges for tables */
.badge-keyword {
  background: rgba(62, 80, 182, 0.14);
  color: #1e2a8a;
  border: 1px solid rgba(62, 80, 182, 0.22);
  font-weight: 700;
}

[data-bs-theme="dark"] .badge-keyword {
  background: rgba(62, 80, 182, 0.25);
  color: #e8ebff;
  border-color: rgba(62, 80, 182, 0.38);
}

.badge-status {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.badge-status-active {
  background: rgba(25, 135, 84, 0.14);
  color: #0f5132;
  border: 1px solid rgba(25, 135, 84, 0.25);
}

.badge-status-inactive {
  background: rgba(108, 117, 125, 0.14);
  color: #343a40;
  border: 1px solid rgba(108, 117, 125, 0.25);
}

.badge-status-pending {
  background: rgba(255, 193, 7, 0.16);
  color: #7a4e00;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

[data-bs-theme="dark"] .badge-status-active {
  background: rgba(25, 135, 84, 0.22);
  color: #c7f9dd;
  border-color: rgba(25, 135, 84, 0.35);
}

[data-bs-theme="dark"] .badge-status-inactive {
  background: rgba(148, 163, 184, 0.15);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.25);
}

[data-bs-theme="dark"] .badge-status-pending {
  background: rgba(255, 193, 7, 0.22);
  color: #ffe8a3;
  border-color: rgba(255, 193, 7, 0.32);
}

.status-dot-active {
  background: #198754;
}

.status-dot-inactive {
  background: #6c757d;
}

.status-dot-pending {
  background: #ffc107;
}

.contact-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(62, 80, 182, 0.12);
  color: #2b3990;
  border: 1px solid rgba(62, 80, 182, 0.18);
}

[data-bs-theme="dark"] .contact-avatar {
  background: rgba(62, 80, 182, 0.22);
  color: #e8ebff;
  border-color: rgba(62, 80, 182, 0.28);
}

.contact-icon-primary {
  color: #3e50b6;
  font-weight: 700;
}

.contact-icon-muted {
  color: #64748b;
  font-weight: 600;
}

.contact-icon-danger {
  color: #dc3545;
  font-weight: 700;
}

.contact-template-select {
  min-width: 230px;
}

.campaign-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
}

.campaign-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: var(--card-border);
}

.campaign-step-item {
  position: relative;
  padding-left: 1.25rem;
}

.campaign-step-dot {
  position: absolute;
  left: -0.02rem;
  top: 1.2rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #3e50b6;
  border: 3px solid var(--card-bg);
  z-index: 1;
}

.campaign-step-card {
  border-radius: 1rem;
}

.campaign-step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.campaign-step-icon-email {
  background: rgba(62, 80, 182, 0.12);
  color: #2b3990;
}

.campaign-step-icon-instagram {
  background: rgba(236, 72, 153, 0.12);
  color: #be185d;
}

[data-bs-theme="dark"] .campaign-step-icon-email {
  background: rgba(62, 80, 182, 0.25);
  color: #e8ebff;
}

[data-bs-theme="dark"] .campaign-step-icon-instagram {
  background: rgba(236, 72, 153, 0.2);
  color: #f9a8d4;
}

.email-settings-warning {
  background: linear-gradient(180deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.04));
  border: 1px solid rgba(255, 193, 7, 0.28);
}

[data-bs-theme="dark"] .email-settings-warning {
  background: linear-gradient(180deg, rgba(255, 193, 7, 0.14), rgba(255, 193, 7, 0.06));
  border-color: rgba(255, 193, 7, 0.22);
}

.email-settings-inline-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--card-border);
  background: rgba(148, 163, 184, 0.06);
  border-radius: 0.85rem;
  flex-wrap: wrap;
}

.instagram-thumb {
  width: 4.75rem;
  height: 4.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--card-border);
  background-color: rgba(148, 163, 184, 0.12);
}

.instagram-media-link {
  display: inline-flex;
  text-decoration: none;
}

.instagram-thumb-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #64748b;
}

.instagram-thumb-video {
  flex-direction: column;
  background-color: rgba(62, 80, 182, 0.12);
  background-size: cover;
  background-position: center;
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}

.instagram-thumb-video-overlay {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.42));
  color: #fff;
}

.instagram-video-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.audit-layout {
  min-height: calc(100vh - 220px);
  overflow: hidden;
}

.audit-list-pane {
  flex: 1 1 auto;
  min-width: 0;
}

.audit-detail-pane {
  width: 460px;
  flex: 0 0 460px;
  min-width: 360px;
}

.audit-table .audit-row-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.audit-row-selected {
  box-shadow: inset 4px 0 0 #3e50b6;
}

.audit-json-block {
  padding: 1rem;
  background: #0f172a;
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: auto;
  max-height: 360px;
}

.audit-json-block-response {
  color: #86efac;
}

@media (max-width: 1200px) {
  .audit-layout {
    flex-direction: column;
    min-height: auto;
  }

  .audit-detail-pane {
    width: 100%;
    min-width: 0;
  }
}

.contact-bulk-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.contact-bulk-inline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .contact-bulk-toolbar {
    width: 100%;
  }

  .contact-bulk-inline,
  .contact-bulk-inline .contact-template-select {
    width: 100%;
  }

  .contact-template-select {
    min-width: 0;
  }
}

.hashtag-picker {
  position: relative;
}

.hashtag-picker__surface {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  background: var(--surface-bg);
}

.hashtag-picker__surface:focus-within {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.hashtag-picker__tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  flex: 1 1 auto;
}

.hashtag-picker__token {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--text-color);
  font-size: 0.9rem;
}

.hashtag-picker__token-remove,
.hashtag-picker__toggle {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  line-height: 1;
}

.hashtag-picker__token-remove {
  font-size: 1rem;
}

.hashtag-picker__input {
  flex: 1 1 140px;
  min-width: 120px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-color);
  padding: 0.15rem 0;
}

.hashtag-picker__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  background: var(--surface-bg);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  padding: 0.35rem;
}

.hashtag-picker__option,
.hashtag-picker__empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  text-align: left;
  color: var(--text-color);
}

.hashtag-picker__option:hover {
  background: var(--surface-muted);
}

.hashtag-picker__option small,
.hashtag-picker__empty {
  color: var(--text-muted);
}

.hashtag-picker__option--create span {
  font-weight: 600;
}
