@import url("theme.css");

.hidden {
  display: none !important;
}

.acc-page {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  color: #e5e7eb;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

.acc-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(76, 194, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 194, 191, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #020621 0%, #000 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.acc-shell {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 3rem;
}

.acc-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 194, 191, 0.12);
}

.acc-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #f9fafb;
  font-weight: 700;
  font-size: 1rem;
}

.acc-brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #000;
  background: var(--fx-teal-light);
}

.acc-brand-supper {
  color: var(--fx-teal-light);
}

.acc-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.acc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.acc-btn--primary {
  color: #000;
  background: var(--fx-teal-light);
  border-color: var(--fx-teal-light);
}

.acc-btn--primary:hover {
  background: #2bc4c4;
}

.acc-btn--ghost {
  color: #d1d5db;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.acc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.acc-btn--ai {
  color: #000;
  background: #4ade80;
  border-color: #4ade80;
}

.acc-btn--ai:hover {
  background: #22c55e;
}

.acc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .acc-layout {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
  }
}

.acc-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-content: flex-start;
}

@media (min-width: 900px) {
  .acc-nav {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.acc-nav-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #9ca3af;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.acc-nav-btn:hover {
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.04);
}

.acc-nav-btn.active {
  color: #f3f4f6;
  background: rgba(51, 213, 213, 0.08);
  border-color: rgba(76, 194, 191, 0.2);
}

.acc-nav-btn--ai {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.25);
}

.acc-nav-btn--ai.active {
  background: rgba(74, 222, 128, 0.08);
}

.acc-main {
  min-width: 0;
}

.acc-panel {
  display: none;
  padding: 1.5rem;
  border: 1px solid rgba(76, 194, 191, 0.12);
  border-radius: 12px;
  background: #0c0c0c;
}

.acc-panel.active {
  display: block;
}

.acc-panel-head {
  margin-bottom: 1.25rem;
}

.acc-panel-head h1 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f9fafb;
}

.acc-panel-head p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.acc-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fcd34d;
}

.acc-alert.ok {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(34, 197, 94, 0.08);
  color: #86efac;
}

.acc-alert.err {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
}

.acc-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .acc-profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.acc-field {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}

.acc-field span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.acc-field strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f3f4f6;
  word-break: break-word;
}

.acc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.acc-status--pending {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.acc-status--active {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.acc-status--suspended {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.acc-status--expired {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.acc-text-warn {
  color: #fbbf24;
}

.acc-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .acc-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

#panel-plans {
  padding: 2rem 2.25rem;
  min-height: min(32rem, 70vh);
}

#panel-plans .acc-panel-head {
  margin-bottom: 1.75rem;
}

#panel-plans .acc-panel-head h1 {
  font-size: 1.5rem;
}

#panel-plans .acc-panel-head p {
  font-size: 0.9375rem;
  max-width: 40rem;
  line-height: 1.55;
}

.acc-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.acc-plan-card.current {
  border-color: rgba(51, 213, 213, 0.35);
  background: rgba(51, 213, 213, 0.04);
}

.acc-plan-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1.3;
}

.acc-plan-price {
  margin: 0 0 0.85rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--fx-teal-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.acc-plan-price-unit {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.acc-plan-desc {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.6;
}

.acc-plan-features {
  flex: 1;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.acc-plan-features li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #9ca3af;
}

.acc-plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fx-teal);
}

.acc-plan-billing {
  margin: 0 0 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fx-teal-dim);
  line-height: 1.45;
}

.acc-plan-card p {
  flex: none;
  margin: 0;
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.65;
}

.acc-plan-card .acc-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.8rem 1.25rem;
  font-size: 0.9375rem;
}

.acc-bank {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px dashed rgba(76, 194, 191, 0.25);
  background: rgba(51, 213, 213, 0.04);
}

.acc-bank h3 {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e5e7eb;
}

.acc-bank p {
  margin: 0.25rem 0;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.acc-bank-codes {
  margin-top: 0.65rem !important;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(76, 194, 191, 0.12);
  font-size: 0.75rem !important;
  line-height: 1.55;
  color: #6b7280 !important;
}

.acc-bank-codes strong {
  color: var(--fx-teal-light);
  font-weight: 700;
}

.acc-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.acc-pay-modal.hidden {
  display: none !important;
}

.acc-pay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.acc-pay-card {
  --pay-bg: #06102b;
  --pay-bg-deep: #020621;
  --pay-teal: #33d5d5;
  --pay-teal-dim: #4cc2bf;
  --pay-teal-soft: rgba(76, 194, 191, 0.1);
  --pay-teal-border: rgba(76, 194, 191, 0.28);
  --pay-orange: #f49a3a;
  --pay-text: #f1f5f9;
  --pay-muted: #94a3b8;
  --pay-surface: rgba(12, 22, 53, 0.85);

  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: min(94vh, 780px);
  overflow-y: auto;
  padding: 0 0 1.35rem;
  border-radius: 18px;
  border: 1px solid var(--pay-teal-border);
  background: linear-gradient(165deg, var(--pay-bg) 0%, var(--pay-bg-deep) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 32px rgba(76, 194, 191, 0.08);
  color: var(--pay-text);
}

.acc-pay-card::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: var(--fx-gradient-teal);
}

.acc-pay-card > *:not(.acc-pay-close) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.acc-pay-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-top: 1.35rem;
  padding-right: 3rem;
  position: relative;
  z-index: 1;
}

.acc-pay-head-main {
  flex: 1;
  min-width: min(100%, 14rem);
}

.acc-pay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 2.125rem;
  height: 2.125rem;
  border: none;
  border-radius: 10px;
  background: var(--pay-surface);
  color: var(--pay-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.15s, color 0.15s;
}

.acc-pay-close:hover {
  background: var(--pay-teal-soft);
  color: var(--pay-teal);
}

.acc-pay-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pay-bg-deep);
  background: var(--fx-gradient-teal);
}

.acc-pay-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pay-text);
  letter-spacing: -0.02em;
}

.acc-pay-lead {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--pay-muted);
  max-width: 28rem;
}

.acc-pay-timer {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
}

.acc-pay-timer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: rotate(-90deg);
  background: conic-gradient(
    var(--pay-teal) 0deg,
    var(--pay-teal) var(--pay-timer-pct, 100%),
    rgba(255, 255, 255, 0.08) var(--pay-timer-pct, 100%)
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
}

.acc-pay-timer-inner {
  position: absolute;
  inset: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pay-bg-deep);
  border: 1px solid var(--pay-teal-border);
}

.acc-pay-timer-label {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pay-muted);
}

.acc-pay-timer-value {
  font-size: 1.125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--pay-teal);
  line-height: 1.2;
}

.acc-pay-timer--warn .acc-pay-timer-value {
  color: var(--pay-orange);
}

.acc-pay-timer--warn .acc-pay-timer-ring {
  background: conic-gradient(
    var(--fx-orange-mid) 0deg,
    var(--fx-orange-mid) var(--pay-timer-pct, 100%),
    rgba(255, 255, 255, 0.08) var(--pay-timer-pct, 100%)
  );
}

.acc-pay-timer--expired .acc-pay-timer-value {
  font-size: 0.75rem;
  color: var(--fx-sell);
}

.acc-pay-timer--expired .acc-pay-timer-ring {
  background: rgba(239, 68, 68, 0.25);
}

.acc-pay-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.acc-pay-body:has(#payCryptoPanel:not(.hidden)) {
  grid-template-columns: 1fr;
}

.acc-pay-crypto-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acc-pay-content--addr {
  font-size: 0.72rem;
  word-break: break-all;
}

.acc-pay-crypto-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--pay-muted);
}

.acc-plan-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.acc-plan-pay-row .acc-btn {
  flex: 1 1 auto;
  min-width: 7rem;
}

.acc-pay-bank-wrap {
  display: contents;
}

.acc-pay-bank-wrap:not(.hidden) {
  display: grid;
  grid-template-columns: inherit;
  gap: inherit;
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .acc-pay-bank-wrap:not(.hidden) {
    grid-template-columns: 11.5rem 1fr;
  }
}

@media (min-width: 640px) {
  .acc-pay-body {
    grid-template-columns: 11.5rem 1fr;
    align-items: start;
    gap: 1.5rem;
  }
}

.acc-pay-qr-col {
  text-align: center;
}

.acc-pay-qr-frame {
  padding: 0.65rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(76, 194, 191, 0.35);
}

/* Ảnh QR tĩnh — hiển thị full mã (đã crop sẵn trong payment-qr-code.png) */
.acc-pay-qr-frame.acc-pay-qr-frame--static {
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0.65rem;
  overflow: visible;
}

.acc-pay-qr-frame.acc-pay-qr-frame--static .acc-pay-qr {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
  transform: none;
}

.acc-pay-qr-hint {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  color: var(--pay-muted);
  line-height: 1.45;
}

.acc-pay-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acc-pay-highlight {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(76, 194, 191, 0.08);
  border: 1px solid var(--pay-teal-border);
}

.acc-pay-highlight--code {
  background: rgba(244, 154, 58, 0.08);
  border-color: rgba(244, 154, 58, 0.28);
}

.acc-pay-highlight-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pay-muted);
}

.acc-pay-amount {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--pay-teal) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.acc-pay-content {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pay-orange);
  letter-spacing: 0.06em;
  word-break: break-all;
}

.acc-pay-txn-note strong {
  font-family: ui-monospace, "Cascadia Code", monospace;
  color: var(--pay-teal-dim);
  font-weight: 700;
}

.acc-pay-copy-row--sm strong {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pay-text);
  word-break: break-all;
}

.acc-pay-copy-btn {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--pay-teal-border);
  border-radius: 8px;
  background: rgba(76, 194, 191, 0.08);
  color: var(--pay-teal);
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.acc-pay-copy-btn:hover {
  background: rgba(76, 194, 191, 0.18);
  border-color: var(--pay-teal);
  color: #fff;
}

.acc-pay-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--pay-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.acc-pay-meta-row > span {
  color: var(--pay-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.acc-pay-meta-row strong {
  font-weight: 600;
  color: var(--pay-text);
}

.acc-pay-billing {
  margin: 1.1rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--pay-muted);
  background: rgba(76, 194, 191, 0.06);
  border: 1px solid var(--pay-teal-border);
}

.acc-pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.acc-pay-actions .acc-btn--primary {
  flex: 1;
  min-width: 10rem;
  justify-content: center;
  color: var(--pay-bg-deep);
  background: var(--fx-teal-light);
  border-color: var(--fx-teal-light);
}

.acc-pay-actions .acc-btn--primary:hover {
  background: #2bc4c4;
  border-color: #2bc4c4;
}

.acc-pay-card .acc-btn--ghost {
  color: var(--pay-teal-dim);
  background: transparent;
  border-color: var(--pay-teal-border);
}

.acc-pay-card .acc-btn--ghost:hover {
  background: var(--pay-teal-soft);
  border-color: var(--pay-teal);
  color: var(--pay-teal);
}

.acc-pay-txn-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--pay-muted);
}

.acc-pay-copy-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.acc-pay-copy-btn--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
}

.acc-pay-meta-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
}

.acc-pay-qr {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

.acc-pay-qr.acc-pay-qr--loading {
  opacity: 0.4;
  min-height: 180px;
}

.acc-pay-qr.acc-pay-qr--error {
  outline: 2px solid rgba(239, 68, 68, 0.55);
}

.acc-btn--sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
}

.acc-txn-qr-btn {
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--fx-teal-light);
  background: transparent;
  border: 1px solid rgba(76, 194, 191, 0.25);
  border-radius: 6px;
  cursor: pointer;
}

.acc-txn-qr-btn:hover {
  background: rgba(51, 213, 213, 0.08);
}

.acc-txn-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.03em;
}

.acc-table-wrap {
  overflow-x: auto;
}

.acc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.acc-table th,
.acc-table td {
  padding: 0.7rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.acc-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.acc-table td {
  color: #d1d5db;
  font-variant-numeric: tabular-nums;
}

.acc-txn-status {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.acc-txn-status--review,
.acc-txn-status--pending {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
}

.acc-txn-status--activated,
.acc-txn-status--paid {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}

.acc-txn-status--rejected,
.acc-txn-status--cancelled {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
}

.acc-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

.acc-ai-card {
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  background: rgba(34, 197, 94, 0.06);
}

.acc-ai-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f9fafb;
}

.acc-ai-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.55;
}

.acc-ai-locked {
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(251, 191, 36, 0.05);
}

.acc-ai-locked p {
  margin: 0;
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.55;
}
