  /* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f8fafc; /* light default */
  color: #0f172a;
  transition: background 0.3s ease, color 0.3s ease;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #0ea5e9;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}


.card {
  border-radius: 12px;
  padding: 1.2rem;
  background: var(--card-bg, #fff);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.price {
  font-size:1.2rem; font-weight:700; color:#0ea5e9;
}
.range {
  font-size:.85rem; color:#475569;
}
.payments {
  margin-top:.5rem; font-size:.85rem; color:#334155;
}
.payments span {
  background:#f1f5f9; padding:.2rem .5rem; border-radius:4px; margin-right:.3rem;
}


.meta {
  font-size: .9rem;
  color: #64748b;
  margin: .25rem 0 .75rem;
}

.btn {
  padding: .6rem .9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: #0ea5e9;
  color: #fff;
}

.btn-primary:hover {
  background: #0284c7;
}

.actions {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.mode {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: .3rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border 0.3s ease, color 0.3s ease;
}

.toolbar {
  display: flex;
  gap: .5rem;
  align-items: center;
}

/* Alerts */
.alert {
  padding: .6rem .8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #22c55e;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* Dark mode */
body.dark {
  background: #0f172a;
  color: #e2e8f0;
}

body.dark .card {
  --card-bg: #1e293b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

body.dark .topbar {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
}

body.dark .mode {
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

body.dark .alert.success {
  background: rgba(34,197,94,.15);
  color: #22c55e;
  border-color: #22c55e;
}

body.dark .alert.error {
  background: rgba(239,68,68,.15);
  color: #ef4444;
  border-color: #ef4444;
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1rem;
  }
}


/* Trade Amount Input */
.actions form input[name="amount"] {
  width: 100%;              /* full width of the card */
  padding: 0.6rem 0.8rem;   /* comfortable padding */
  border-radius: 6px;       /* rounded corners */
  border: 1px solid #cbd5e1; /* light gray border */
  font-size: 1rem;          /* readable text */
  color: #0f172a;
  box-sizing: border-box;
  margin-bottom: 0.5rem;    /* spacing below input */
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.actions form input[name="amount"]::placeholder {
  color: #94a3b8;           /* muted placeholder */
}

.actions form input[name="amount"]:focus {
  outline: none;
  border-color: #0ea5e9;    /* match primary button */
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

/* Overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

/* Modal box */
.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 1.6rem 1.8rem;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  position: relative;
  animation: modalFadeIn .25s ease-out;
}

/* Title */
.modal-content h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

/* Close button */
.close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}
.close:hover {
  color: #ef4444;
  transform: scale(1.1);
}

/* Form labels */
.modal-content label {
  display: block;
  margin: .6rem 0 .25rem;
  font-size: .85rem;
  font-weight: 600;
  color: #475569;
}

/* Inputs & selects */
.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: .6rem .7rem;
  font-size: .95rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  transition: border .2s ease, box-shadow .2s ease;
}

.modal-content textarea {
  resize: vertical;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14,165,233,.25);
}

/* Primary button */
.modal-content .btn-primary {
  width: 100%;
  margin-top: 1rem;
  padding: .7rem;
  border-radius: 10px;
  font-size: 1rem;
}

/* Payment methods chips */
#paymentMethods {
  margin-top: .4rem;
}

#paymentMethods .pm-chip {
  display: inline-block;
  margin: .25rem .35rem .25rem 0;
  padding: .35rem .6rem;
  font-size: .8rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #a6cef6ff;
  cursor: pointer;
  transition: all .2s ease;
}

#paymentMethods .pm-chip:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

#paymentMethods .pm-chip.active {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

/* Dark mode */
body.dark .modal {
  background: rgba(2,6,23,.7);
}

body.dark .modal-content {
  background: #1e293b;
  color: #e2e8f0;
}

body.dark .modal-content h2 {
  color: #f8fafc;
}

body.dark .modal-content label {
  color: #94a3b8;
}

body.dark .modal-content input,
body.dark .modal-content select,
body.dark .modal-content textarea {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}

body.dark .modal-content input:focus,
body.dark .modal-content select:focus,
body.dark .modal-content textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56,189,248,.25);
}

/* Animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .modal-content {
    border-radius: 12px;
    padding: 1.2rem;
  }
}
/* Enable internal scrolling */
.modal-content {
  max-height: 85vh;           /* never exceed viewport */
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

/* Custom scrollbar (WebKit browsers) */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(100,116,139,0.35);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(100,116,139,0.6);
}

/* Firefox scrollbar */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(100,116,139,0.5) transparent;
}

/* Dark mode scrollbar */
body.dark .modal-content::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,0.35);
}

body.dark .modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(148,163,184,0.6);
}

body.dark .modal-content {
  scrollbar-color: rgba(148,163,184,0.5) transparent;
}

.balance-strip {
  display:flex;
  gap:1rem;
  align-items:center;
  background:#5292d1;
  padding:.6rem 1rem;
  border-radius:10px;
  font-weight:600;
  margin-bottom:1rem;
}
body.dark .balance-strip {
  background:#1e293b;
}

.inline-error {
  font-size:.8rem;
  color:#ef4444;
  margin-top:.2rem;
}

.max-row {
  display:flex;
  gap:.4rem;
}

.max-row button {
  padding:.4rem .7rem;
  border-radius:6px;
  border:none;
  background:#0ea5e9;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.hidden {
  display: none !important;
}

/* ===========================
   Disabled Primary Button
   =========================== */

.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: #cbd5e1;
  color: #64748b;
  border-color: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.75;
  box-shadow: none;
  pointer-events: none;
}

/* Dark mode support */
body.dark .btn-primary:disabled,
body.dark .btn-primary[disabled] {
  background-color: #334155;
  color: #94a3b8;
  border-color: #334155;
}

.btn-primary:disabled::after {
  content: "Complete all required fields";
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: #94a3b8;
}


.help-link {
  display: none;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  text-decoration: underline;
}

/* show the link when the button is disabled */
.btn-primary:disabled + .help-link {
  display: inline-block;
}

.p2p-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(148,163,184,.2);
  overflow-x: auto;
}
.p2p-tabs .tab {
  position: relative;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  border-radius: 999px;
  transition: all .2s ease;
  white-space: nowrap;
}

.p2p-tabs .tab:hover {
  background: rgba(148,163,184,.08);
  color: #e5e7eb;
}

.p2p-tabs .tab.active {
  background: rgba(59,130,246,.12);
  color: #3b82f6;
}
.p2p-tabs .tab.active[href*="tab=buy"] {
  background: rgba(22,163,74,.15);
  color: #16a34a;
}

.p2p-tabs .tab.active[href*="tab=sell"] {
  background: rgba(220,38,38,.15);
  color: #dc2626;
}
.p2p-tabs .tab.active[href*="tab=wallet"],
.p2p-tabs .tab.active[href*="tab=orders"] {
  background: rgba(99,102,241,.15);
  color: #6366f1;
}

body.dark .p2p-tabs {
  border-bottom-color: rgba(148,163,184,.15);
}

body.dark .p2p-tabs .tab {
  color: #9ca3af;
}

body.dark .p2p-tabs .tab:hover {
  background: rgba(255,255,255,.05);
} 

@media (max-width: 640px) {
  .p2p-tabs {
    gap: 0.25rem;
  }

  .p2p-tabs .tab {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
  }
}

.wallet-box {
  max-width: 720px;
  margin: auto;
}

.wallet-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.wallet-balances {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin:1rem 0;
}

.wallet-balances .bal {
  background:rgba(0,0,0,.04);
  padding:1rem;
  border-radius:10px;
}

.tx-list {
  list-style:none;
  padding:0;
  margin:0;
}

.tx-list li {
  display:flex;
  justify-content:space-between;
  padding:.6rem 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.tx-type.transfer_out { color: #dc2626 !important;; }
.tx-type.escrow_release { color:#16a34a; }


.tx-row {
  display:grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap:1rem;
  align-items:center;
  padding:.75rem 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.tx-title {
  font-size:.95rem;
}

.tx-ref {
  font-size:.75rem;
  color:#64748b;
}
.tx-amount {
  font-weight:600;
  text-align:right;
}

.tx-amount.in {
  color:#16a34a; /* green */
}

.tx-amount.out {
  color:#dc2626; /* red */
}
.tx-time {
  font-size:.75rem;
  color:#64748b;
  white-space:nowrap;
}
.tx-title::before {
  content:'';
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:.4rem;
  background:#94a3b8;
}

.trade_release .tx-title::before {
  background:#16a34a;
}

.trade_cancel_refund .tx-title::before {
  background:#f59e0b;
}

.transfer_to_fx .tx-title::before {
  background:#dc2626;
}
@media (max-width:640px){
  .tx-row {
    grid-template-columns:1fr;
    gap:.3rem;
  }

  .tx-amount {
    text-align:left;
  }
}


.tx-details {
  display:grid;
  gap:.6rem;
  font-size:.9rem;
}

.tx-details div {
  display:flex;
  justify-content:space-between;
  border-bottom:1px dashed rgba(0,0,0,.08);
  padding:.35rem 0;
}

.modal-content.small {
  max-width:420px;
}


.tx-filters {
  display:flex;
  gap:.5rem;
  margin:.8rem 0;
}

.tx-filters select {
  padding:.35rem .5rem;
  border-radius:6px;
}

/* ===== Main P2P Tabs ===== */
.p2p-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #370202;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}



.p2p-tabs .tab.active {
  color: #007bff;
}

.order-status-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-left: 0.5rem; /* optional alignment */
}


.order-status-tabs a {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.order-status-tabs a.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.order-status-tabs a:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: #64748b;
}

.empty-state p {
  font-weight: 600;
  margin-bottom: .25rem;
}

.empty-state small {
  font-size: .85rem;
  opacity: .8;
}

body.dark .empty-state {
  color: #9ca3af;
}

/* ===== MARKET FILTERS ===== */
.market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--card-bg, #f8fafc);
  padding: 1rem;
  border-radius: 12px;
  align-items: center;
}

/* Inputs */
.market-filters input,
.market-filters select {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.9rem;
  min-width: 140px;
}

/* Button */
.market-filters .btn {
  padding: 0.55rem 1rem;
  border-radius: 8px;
}

/* Dark mode */
body.dark .market-filters {
  background: #0f172a;
}

body.dark .market-filters input,
body.dark .market-filters select {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

/* On large screens show offers in columns */
@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  /* Force filters to stay FULL WIDTH */
  .market-filters {
    grid-column: 1 / -1;
  }
}

/* ===== Sub Tabs ( / My Offers) ===== */
.p2p-subtabs {
  display: flex;
  gap: .5rem;
  margin: .75rem 0 1.25rem;
  padding-left: .25rem;
}

.p2p-subtabs a {
  font-size: .85rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  text-decoration: none;
  color: #64748b;
  background: rgba(148,163,184,.08);
  transition: all .2s ease;
}

.p2p-subtabs a:hover {
  background: rgba(148,163,184,.15);
}

.p2p-subtabs a.active {
  background: rgba(59,130,246,.15);
  color: #3b82f6;
  font-weight: 600;
}

/* Dark mode */
body.dark .p2p-subtabs a {
  background: rgba(255,255,255,.06);
  color: #9ca3af;
}


/* My Offers Third-Level Tabs (Inactive Offers) */
.p2p-subtabs.secondary {
    margin: 1rem 0;       /* space around subtabs */
    padding: 0.5rem 0;    /* optional padding inside */
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 0.5rem;
}

.p2p-subtabs.secondary a {
    padding: 0.4rem 0.8rem;
    background: #f1f5f9;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.p2p-subtabs.secondary a.active {
    background: #4f46e5; /* primary color */
    color: #fff;
}

/* Push the cards down if subtabs exist */
.my-offers-header + .p2p-subtabs.secondary + .grid {
    margin-top: 1rem; /* extra space between tabs and cards */
}


.p2p-tabs,
.order-status-tabs,
.p2p-subtabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.p2p-tabs .tab,
.order-status-tabs a,
.p2p-subtabs a {
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  background: #f1f5f9;
  color: #334155;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: all .2s ease;
}

.p2p-tabs .tab.active,
.order-status-tabs a.active,
.p2p-subtabs a.active {
  background: #2563eb;
  color: #fff;
}
.badge {
  font-size: .75rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-weight: 600;
}

.badge.red {
  background: #fee2e2;
  color: #b91c1c;
}
.tx-row.unread {
  background:  #139793;
  border-left: 4px solid #3b82f6;
}
.tx-list .tx-row.unread {
  background:  #139793;
  border-left: 4px solid #3b82f6;
}
.tx-row.unread {
  background: #f1f5ff !important;
  border-left: 4px solid #3b82f6;
}
.tx-list .tx-row.unread {
  background: #139793;
  border-left: 4px solid #3b82f6;
}

.msg-badge {
  display: inline-block;
  margin-left: .5rem;
  padding: 2px 8px;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 999px;
  background: #e0f2fe;
  color: #1976a8;
}

.tx-row.unread .msg-badge {
  background: #109c72;
  color: #1d4ed8;
}
.msg-badge {
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: .6; }
  100% { opacity: 1; }
}

.tx-row.unread {
  background: rgba(59,130,246,.08);
  border-left: 3px solid #3b82f6;
}

/* Modal overlay */
.modal.confirm-modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal box */
.confirm-box {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  animation: fadeIn .25s ease;
}

.confirm-box h3 {
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.confirm-box p {
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .1s;
}
.btn.small { font-size: .85rem; }
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: #3b82f6; color: #fff; }
.btn-primary:hover { background: #2563eb; }

.btn.success { background: #22c55e; color: #fff; }
.btn.success:hover { background: #16a34a; }

.btn.danger { background: #ef4444; color: #fff; }
.btn.danger:hover { background: #dc2626; }

.btn.red { background: #b91c1c; color: #fff; }
.btn.red:hover { background: #991b1b; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

:root {
    --link: #60a5fa; /* softer blue for dark */
}

body.light {
    --link: #2563eb; /* deeper blue for light */
}

.user-link {
    color: var(--link);
    font-weight: 600;
    text-decoration: none;
}

.user-link:hover {
    text-decoration: underline;
}


.approx-conversion {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}


/* Container */
.pwa-install {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Hidden state */
.pwa-install.hidden {
  display: none;
}

/* Floating Button */
.pwa-float-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff9500, #ffb347);
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

/* Hover / Active */
.pwa-float-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.pwa-float-btn:active {
  transform: scale(0.96);
}

/* Dark Mode */
body.dark .pwa-float-btn {
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  color: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .pwa-install {
    left: 8px;
  }

  .pwa-float-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

.nav-actions {
  display: flex;
  gap: .5rem;
}

:root {
  --btn-border: #0f172a;
  --btn-text: #0f172a;
  --btn-bg: #fff;
}

body.dark {
  --btn-border: #cbd5e1;
  --btn-text: #fff;
  --btn-bg: #0f172a;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--btn-border);
  color: var(--btn-text);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--btn-border);
  color: var(--btn-text);
}

.btn.primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}

