/* ============================================================
   ANNA Token HD Wallet & Dashboard Gateway — CSS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --anna-neon: #2AF595;
  --anna-neon-glow: rgba(42, 245, 149, 0.45);
  --anna-orange: #FB8B2A;
  --anna-orange-glow: rgba(251, 139, 42, 0.4);
  --anna-gold: #FFD700;
  --anna-cyan: #00CC88;
  --anna-bg-dark: #070311;
  --anna-card-bg: rgba(22, 12, 40, 0.7);
  --anna-border: rgba(255, 255, 255, 0.1);
  --anna-border-glow: rgba(42, 245, 149, 0.35);
}

/* --- FULL PAGE DASHBOARD CONTAINER --- */
.anna-page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 60px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  animation: annaFadeIn 0.35s ease-out;
  box-sizing: border-box;
}

@keyframes annaFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.anna-dashboard-wrapper {
  background: linear-gradient(145deg, rgba(20, 10, 36, 0.85) 0%, rgba(10, 5, 20, 0.92) 100%);
  border: 1px solid var(--anna-border);
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: inset 0 2px 24px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.anna-dashboard-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--anna-neon), var(--anna-orange), transparent);
  border-radius: 2px;
}

/* --- HEADER BAR --- */
.anna-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.anna-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.anna-header-emblem {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FB8B2A 0%, #2AF595 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #050209;
  box-shadow: 0 0 28px rgba(42, 245, 149, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.anna-header-titles h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #FFFFFF 0%, #2AF595 60%, #FB8B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.anna-header-titles p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.anna-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(42, 245, 149, 0.15);
  color: #2AF595;
  border: 1px solid rgba(42, 245, 149, 0.35);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
}

.anna-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anna-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.anna-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.anna-nav-btn.primary {
  background: linear-gradient(90deg, #FB8B2A 0%, #E0700B 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(251, 139, 42, 0.35);
}

.anna-nav-btn.primary:hover {
  box-shadow: 0 6px 22px rgba(251, 139, 42, 0.55);
}

/* --- STATS OVERVIEW CARDS (BOX DESIGN) --- */
.anna-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.anna-stat-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--anna-border);
  border-radius: 20px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.04);
}

.anna-stat-box:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--anna-border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 2px 14px rgba(42, 245, 149, 0.12);
}

.anna-stat-box.highlight {
  border-color: rgba(42, 245, 149, 0.4);
  background: linear-gradient(135deg, rgba(42, 245, 149, 0.12) 0%, rgba(22, 12, 40, 0.6) 100%);
}

.anna-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.anna-stat-val {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

.anna-stat-val.green {
  color: #2AF595;
  text-shadow: 0 0 16px rgba(42, 245, 149, 0.5);
}

.anna-stat-val.gold {
  color: #FFD700;
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

.anna-stat-val.orange {
  color: #FB8B2A;
  text-shadow: 0 0 16px rgba(251, 139, 42, 0.4);
}

.anna-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
}

/* --- TAB NAVIGATION BAR (FIXED GRID LAYOUT & ATTRACTIVE BUTTONS) --- */
.anna-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: rgba(12, 6, 24, 0.6);
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.anna-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  min-height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Icon Container */
.anna-tab-icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.28s ease;
  flex-shrink: 0;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.1);
}

.anna-tab-icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: transparent;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.anna-tab-svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

/* Content Area */
.anna-tab-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.anna-tab-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.anna-tab-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

/* Bottom Glowing Indicator Bar */
.anna-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover General */
.anna-tab-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.anna-tab-btn:hover .anna-tab-svg {
  transform: scale(1.1);
}

.anna-tab-btn:hover .anna-tab-icon-glow {
  opacity: 0.6;
}

/* --- THEME 1: DEPOSIT (Cyber Emerald / Green) --- */
.anna-tab-btn.tab-deposit .anna-tab-icon-wrap {
  color: #2AF595;
  background: rgba(42, 245, 149, 0.1);
  border-color: rgba(42, 245, 149, 0.25);
}
.anna-tab-btn.tab-deposit .anna-tab-icon-glow {
  background: rgba(42, 245, 149, 0.5);
}
.anna-tab-btn.tab-deposit:hover {
  border-color: rgba(42, 245, 149, 0.45);
  box-shadow: 0 8px 25px rgba(42, 245, 149, 0.15), inset 0 1px 12px rgba(42, 245, 149, 0.08);
}
.anna-tab-btn.tab-deposit:hover .anna-tab-title {
  color: #2AF595;
}
.anna-tab-btn.tab-deposit.active {
  background: linear-gradient(145deg, rgba(42, 245, 149, 0.2) 0%, rgba(10, 32, 22, 0.85) 100%);
  border-color: #2AF595;
  box-shadow: 0 0 24px rgba(42, 245, 149, 0.3), inset 0 0 15px rgba(42, 245, 149, 0.12);
}
.anna-tab-btn.tab-deposit.active .anna-tab-icon-wrap {
  background: #2AF595;
  color: #050209;
  border-color: #2AF595;
  box-shadow: 0 0 18px rgba(42, 245, 149, 0.6);
}
.anna-tab-btn.tab-deposit.active .anna-tab-title {
  color: #FFFFFF;
  font-weight: 900;
}
.anna-tab-btn.tab-deposit.active .anna-tab-sub {
  color: #2AF595;
  font-weight: 700;
}
.anna-tab-btn.tab-deposit.active .anna-tab-indicator {
  background: #2AF595;
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 10px #2AF595;
}

/* --- THEME 2: WITHDRAW (Sunset Fiery Orange) --- */
.anna-tab-btn.tab-withdraw .anna-tab-icon-wrap {
  color: #FB8B2A;
  background: rgba(251, 139, 42, 0.1);
  border-color: rgba(251, 139, 42, 0.25);
}
.anna-tab-btn.tab-withdraw .anna-tab-icon-glow {
  background: rgba(251, 139, 42, 0.5);
}
.anna-tab-btn.tab-withdraw:hover {
  border-color: rgba(251, 139, 42, 0.45);
  box-shadow: 0 8px 25px rgba(251, 139, 42, 0.15), inset 0 1px 12px rgba(251, 139, 42, 0.08);
}
.anna-tab-btn.tab-withdraw:hover .anna-tab-title {
  color: #FB8B2A;
}
.anna-tab-btn.tab-withdraw.active {
  background: linear-gradient(145deg, rgba(251, 139, 42, 0.2) 0%, rgba(35, 16, 8, 0.85) 100%);
  border-color: #FB8B2A;
  box-shadow: 0 0 24px rgba(251, 139, 42, 0.3), inset 0 0 15px rgba(251, 139, 42, 0.12);
}
.anna-tab-btn.tab-withdraw.active .anna-tab-icon-wrap {
  background: #FB8B2A;
  color: #050209;
  border-color: #FB8B2A;
  box-shadow: 0 0 18px rgba(251, 139, 42, 0.6);
}
.anna-tab-btn.tab-withdraw.active .anna-tab-title {
  color: #FFFFFF;
  font-weight: 900;
}
.anna-tab-btn.tab-withdraw.active .anna-tab-sub {
  color: #FB8B2A;
  font-weight: 700;
}
.anna-tab-btn.tab-withdraw.active .anna-tab-indicator {
  background: #FB8B2A;
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 10px #FB8B2A;
}

/* --- THEME 3: 4-WAY BRIDGE (Electric Cyan / Aqua) --- */
.anna-tab-btn.tab-transfer .anna-tab-icon-wrap {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.25);
}
.anna-tab-btn.tab-transfer .anna-tab-icon-glow {
  background: rgba(0, 240, 255, 0.5);
}
.anna-tab-btn.tab-transfer:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15), inset 0 1px 12px rgba(0, 240, 255, 0.08);
}
.anna-tab-btn.tab-transfer:hover .anna-tab-title {
  color: #00F0FF;
}
.anna-tab-btn.tab-transfer.active {
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.2) 0%, rgba(8, 25, 40, 0.85) 100%);
  border-color: #00F0FF;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.12);
}
.anna-tab-btn.tab-transfer.active .anna-tab-icon-wrap {
  background: #00F0FF;
  color: #050209;
  border-color: #00F0FF;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.6);
}
.anna-tab-btn.tab-transfer.active .anna-tab-title {
  color: #FFFFFF;
  font-weight: 900;
}
.anna-tab-btn.tab-transfer.active .anna-tab-sub {
  color: #00F0FF;
  font-weight: 700;
}
.anna-tab-btn.tab-transfer.active .anna-tab-indicator {
  background: #00F0FF;
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 10px #00F0FF;
}

/* --- THEME 4: BUY / SELL LEDGER (Royal Amethyst / Violet) --- */
.anna-tab-btn.tab-ledger .anna-tab-icon-wrap {
  color: #C084FC;
  background: rgba(192, 132, 252, 0.1);
  border-color: rgba(192, 132, 252, 0.25);
}
.anna-tab-btn.tab-ledger .anna-tab-icon-glow {
  background: rgba(192, 132, 252, 0.5);
}
.anna-tab-btn.tab-ledger:hover {
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 8px 25px rgba(192, 132, 252, 0.15), inset 0 1px 12px rgba(192, 132, 252, 0.08);
}
.anna-tab-btn.tab-ledger:hover .anna-tab-title {
  color: #C084FC;
}
.anna-tab-btn.tab-ledger.active {
  background: linear-gradient(145deg, rgba(192, 132, 252, 0.2) 0%, rgba(32, 12, 48, 0.85) 100%);
  border-color: #C084FC;
  box-shadow: 0 0 24px rgba(192, 132, 252, 0.3), inset 0 0 15px rgba(192, 132, 252, 0.12);
}
.anna-tab-btn.tab-ledger.active .anna-tab-icon-wrap {
  background: #C084FC;
  color: #050209;
  border-color: #C084FC;
  box-shadow: 0 0 18px rgba(192, 132, 252, 0.6);
}
.anna-tab-btn.tab-ledger.active .anna-tab-title {
  color: #FFFFFF;
  font-weight: 900;
}
.anna-tab-btn.tab-ledger.active .anna-tab-sub {
  color: #C084FC;
  font-weight: 700;
}
.anna-tab-btn.tab-ledger.active .anna-tab-indicator {
  background: #C084FC;
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 10px #C084FC;
}

/* Responsive Breakpoints for Fixed Layout */
@media (max-width: 991px) {
  .anna-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 8px;
  }
}

@media (max-width: 580px) {
  .anna-tabs-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 6px;
  }
  .anna-tab-btn {
    min-height: 64px;
    padding: 12px 14px;
  }
  .anna-tab-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }
  .anna-tab-title {
    font-size: 13.5px;
  }
  .anna-tab-sub {
    font-size: 10.5px;
  }
}

/* --- TAB PANELS --- */
.anna-panel {
  display: none;
  animation: annaFadeIn 0.3s ease-out;
}

.anna-panel.active {
  display: block;
}

/* --- ALERT BANNER --- */
.anna-alert-banner {
  background: linear-gradient(90deg, rgba(42, 245, 149, 0.1) 0%, rgba(251, 139, 42, 0.08) 100%);
  border: 1px solid rgba(42, 245, 149, 0.25);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.anna-alert-banner strong {
  color: #2AF595;
}

/* --- DEPOSIT CARD & BOX DESIGN --- */
.anna-deposit-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--anna-border);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .anna-deposit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.anna-qr-box {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  margin: 0 auto;
  box-sizing: border-box;
}

.anna-qr-box canvas {
  width: 100% !important;
  max-width: 196px !important;
  height: auto !important;
  aspect-ratio: 1;
  border-radius: 12px;
  display: block;
}

.anna-deposit-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.anna-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.anna-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

.anna-tag.green {
  background: rgba(42, 245, 149, 0.15);
  border-color: rgba(42, 245, 149, 0.4);
  color: #2AF595;
}

.anna-tag.orange {
  background: rgba(251, 139, 42, 0.15);
  border-color: rgba(251, 139, 42, 0.4);
  color: #FB8B2A;
}

.anna-address-container {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(42, 245, 149, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.anna-address-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #2AF595;
  word-break: break-all;
  user-select: all;
  font-weight: 600;
}

.anna-copy-btn {
  background: linear-gradient(90deg, #2AF595 0%, #00CC88 100%);
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  color: #050209;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(42, 245, 149, 0.35);
}

.anna-copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(42, 245, 149, 0.6);
}

.anna-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.anna-info-item span {
  color: #fff;
  font-weight: 700;
}

/* --- LIVE CALCULATOR BOX --- */
.anna-calc-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.anna-calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.anna-calc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.anna-calc-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.anna-calc-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 60px 12px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  box-sizing: border-box;
}

.anna-calc-input:focus {
  outline: none;
  border-color: #2AF595;
  box-shadow: 0 0 14px rgba(42, 245, 149, 0.3);
}

.anna-calc-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 800;
  color: #FB8B2A;
}

.anna-calc-arrow {
  font-size: 22px;
  color: #2AF595;
}

.anna-calc-result {
  flex: 1;
  min-width: 200px;
  background: rgba(42, 245, 149, 0.1);
  border: 1px solid rgba(42, 245, 149, 0.3);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 800;
  color: #2AF595;
}

.anna-calc-chips {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.anna-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.anna-chip:hover {
  background: rgba(42, 245, 149, 0.2);
  border-color: #2AF595;
  color: #2AF595;
}

/* --- FORMS (WITHDRAW / TRANSFER) --- */
.anna-form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--anna-border);
  border-radius: 24px;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.anna-form-group {
  margin-bottom: 20px;
}

.anna-form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.anna-form-label span.avail {
  font-size: 12px;
  color: #2AF595;
  font-family: 'JetBrains Mono', monospace;
}

.anna-input-wrapper {
  position: relative;
}

.anna-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.anna-input:focus {
  outline: none;
  border-color: #2AF595;
  box-shadow: 0 0 20px rgba(42, 245, 149, 0.35);
  background: rgba(0, 0, 0, 0.85);
}

.anna-pct-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.anna-pct-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 8px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.anna-pct-btn:hover {
  background: rgba(42, 245, 149, 0.2);
  border-color: #2AF595;
  color: #2AF595;
}

/* --- 4-WAY BRIDGE SELECTOR CARDS --- */
.anna-bridge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.anna-bridge-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.anna-bridge-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.anna-bridge-card.selected {
  border-color: #2AF595;
  background: linear-gradient(135deg, rgba(42, 245, 149, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: 0 0 18px rgba(42, 245, 149, 0.25);
}

.anna-bridge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.anna-bridge-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.anna-bridge-info p {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* --- SUMMARY BOX --- */
.anna-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.anna-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
}

.anna-summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.anna-summary-row span.val {
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  font-weight: 700;
}

.anna-summary-row span.val.green {
  color: #2AF595;
}

/* --- SUBMIT BUTTON --- */
.anna-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #2AF595 0%, #00CC88 100%);
  border: none;
  border-radius: 14px;
  padding: 16px;
  color: #050209;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(42, 245, 149, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.anna-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 245, 149, 0.65);
}

.anna-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --- DATA TABLES --- */
.anna-table-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--anna-border);
  border-radius: 24px;
  padding: 24px 28px;
  margin-top: 28px;
  overflow: hidden;
}

.anna-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.anna-table-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.anna-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.anna-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}

.anna-table th {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.5px;
}

.anna-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.anna-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.anna-status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.anna-status-pill.confirmed, .anna-status-pill.completed {
  background: rgba(42, 245, 149, 0.15);
  color: #2AF595;
  border: 1px solid rgba(42, 245, 149, 0.3);
}

.anna-status-pill.pending {
  background: rgba(251, 139, 42, 0.15);
  color: #FB8B2A;
  border: 1px solid rgba(251, 139, 42, 0.3);
}

/* --- BADGES INJECTED ON FRONTEND CARDS --- */
.anna-balance-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  background: linear-gradient(90deg, rgba(42, 245, 149, 0.15) 0%, rgba(0, 204, 136, 0.15) 100%);
  border: 1px solid rgba(42, 245, 149, 0.35);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 800;
  color: #2AF595;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.2px;
  text-shadow: 0 0 10px rgba(42, 245, 149, 0.4);
}

/* --- TOAST NOTIFICATION --- */
.anna-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(14, 8, 28, 0.95);
  border: 1px solid #2AF595;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75), 0 0 24px rgba(42, 245, 149, 0.3);
  z-index: 999999;
  font-family: 'Outfit', sans-serif;
  animation: annaToastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.anna-toast.error {
  border-color: #ef4444;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75), 0 0 24px rgba(239, 68, 68, 0.3);
}

@keyframes annaToastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- HIDE COMMUNITY DASHBOARD BUTTON IN PASSIVE & ANNA HUB --- */
.anna-page-container a[href="/dashboard"],
a.anna-nav-btn[href="/dashboard"] {
  display: none !important;
}

/* Refresh Data button */
.anna-nav-btn.refresh-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--anna-border);
  color: #fff;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s;
}

.anna-nav-btn.refresh-btn:hover {
  background: rgba(42, 245, 149, 0.15);
  border-color: var(--anna-neon);
  color: var(--anna-neon);
  transform: translateY(-1px);
}

.anna-nav-btn.refresh-btn.spinning {
  opacity: 0.7;
  pointer-events: none;
  animation: annaSpin 0.8s linear infinite;
}

@keyframes annaSpin {
  100% { transform: rotate(360deg); }
}

/* Hide header "Community Dashboard" button on Passive Earning Dashboard */
.font-Outfit button:has(img[src*="logout"]) {
  display: none !important;
}
/* Ensure sidebar logout button remains visible */
button[class*="Logout"], button[class*="logout"], .w-\[330px\] button {
  display: flex !important;
}

/* --- OTP & SUCCESS POP-UP MODALS --- */
.anna-otp-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.anna-otp-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.anna-otp-modal {
  background: linear-gradient(135deg, rgba(26, 16, 43, 0.98) 0%, rgba(12, 6, 22, 0.99) 100%) !important;
  border: 1px solid rgba(42, 245, 149, 0.4) !important;
  border-radius: 28px !important;
  padding: 36px 32px !important;
  max-width: 460px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(42, 245, 149, 0.3) !important;
  position: relative !important;
  transform: scale(0.92) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: 'Outfit', sans-serif !important;
  color: #ffffff !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

.anna-otp-overlay.active .anna-otp-modal {
  transform: scale(1) translateY(0) !important;
}

.anna-otp-header {
  text-align: center;
  margin-bottom: 24px;
}

.anna-otp-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(42, 245, 149, 0.2) 0%, rgba(0, 204, 136, 0.05) 100%);
  border: 1px solid rgba(42, 245, 149, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 25px rgba(42, 245, 149, 0.35);
}

.anna-otp-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.anna-otp-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

.anna-otp-details-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.anna-otp-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}

.anna-otp-detail-row:last-child {
  margin-bottom: 0;
}

.anna-otp-input-wrap {
  margin-bottom: 18px;
}

.anna-otp-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(42, 245, 149, 0.5);
  border-radius: 16px;
  padding: 16px;
  font-size: 28px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: #2AF595;
  text-align: center;
  letter-spacing: 12px;
  outline: none;
  transition: all 0.25s;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(42, 245, 149, 0.2);
}

.anna-otp-input:focus {
  border-color: #2AF595;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 25px rgba(42, 245, 149, 0.45);
}

.anna-otp-resend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.anna-otp-resend-btn {
  background: none;
  border: none;
  color: #2AF595;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 13px;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.anna-otp-resend-btn:disabled {
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  text-decoration: none;
}

.anna-otp-actions {
  display: flex;
  gap: 12px;
}

.anna-otp-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.anna-otp-btn.cancel {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.anna-otp-btn.cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.anna-otp-btn.confirm {
  background: linear-gradient(90deg, #2AF595 0%, #00CC88 100%);
  color: #050209;
  box-shadow: 0 4px 20px rgba(42, 245, 149, 0.45);
}

.anna-otp-btn.confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(42, 245, 149, 0.65);
}

.anna-otp-btn.confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- SUCCESS POP-UP MODAL --- */
.anna-success-modal-card {
  border-color: rgba(42, 245, 149, 0.6) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(42, 245, 149, 0.35) !important;
}

.anna-success-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 245, 149, 0.25) 0%, rgba(0, 204, 136, 0.1) 100%);
  border: 2px solid #2AF595;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 35px rgba(42, 245, 149, 0.55);
  animation: annaPopSuccess 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes annaPopSuccess {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS (MOBILE / TABLET OPTIMIZATION)
   ============================================================ */

@media (max-width: 991px) {
  .anna-page-container {
    padding: 12px 10px 40px !important;
  }
  .anna-dashboard-wrapper {
    padding: 24px 20px !important;
    border-radius: 24px !important;
  }
  .anna-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
  .anna-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

@media (max-width: 768px) {
  .anna-page-container {
    padding: 6px 0 35px !important;
  }
  
  .anna-dashboard-wrapper {
    padding: 18px 12px !important;
    border-radius: 20px !important;
  }

  /* Header */
  .anna-page-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
    padding-bottom: 16px !important;
  }

  .anna-header-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .anna-header-emblem {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 12px !important;
    font-size: 22px !important;
  }

  .anna-header-titles h1 {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  .anna-header-titles p {
    font-size: 12px !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .anna-rate-badge {
    padding: 2px 8px !important;
    font-size: 11px !important;
  }

  .anna-header-actions {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .anna-header-actions .anna-nav-btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 9px 8px !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
    border-radius: 10px !important;
  }

  /* Stats Cards (Compact 2x2 Grid on Mobile) */
  .anna-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .anna-stat-box {
    padding: 12px 10px !important;
    border-radius: 14px !important;
  }

  .anna-stat-label {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }

  .anna-stat-val {
    font-size: 17px !important;
    letter-spacing: -0.3px !important;
  }

  .anna-stat-sub {
    font-size: 10px !important;
    word-break: break-word !important;
    margin-top: 3px !important;
  }

  /* Tab Navigation (Compact 2x2 Grid) */
  .anna-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 6px !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
  }

  .anna-tab-btn {
    min-height: 50px !important;
    padding: 6px 8px !important;
    gap: 6px !important;
    border-radius: 10px !important;
  }

  .anna-tab-icon-wrap {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 8px !important;
  }

  .anna-tab-svg {
    width: 15px !important;
    height: 15px !important;
  }

  .anna-tab-title {
    font-size: 11.5px !important;
  }

  .anna-tab-sub {
    font-size: 9px !important;
  }

  /* Alert Banner */
  .anna-alert-banner {
    padding: 12px 14px !important;
    border-radius: 12px !important;
    font-size: 12.5px !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  /* Deposit Card & Address */
  .anna-deposit-card {
    grid-template-columns: 1fr !important;
    padding: 18px 12px !important;
    gap: 16px !important;
    border-radius: 18px !important;
    margin-bottom: 20px !important;
  }

  .anna-qr-box {
    max-width: 180px !important;
    padding: 10px !important;
  }

  .anna-qr-box canvas {
    max-width: 160px !important;
  }

  .anna-address-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .anna-address-text {
    font-size: 11.5px !important;
    text-align: center !important;
    word-break: break-all !important;
  }

  .anna-copy-btn {
    width: 100% !important;
    padding: 11px !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  .anna-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    font-size: 11.5px !important;
  }

  /* Calculator */
  .anna-calc-box {
    padding: 14px 12px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }

  .anna-calc-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    font-size: 13px !important;
  }

  .anna-calc-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .anna-calc-arrow {
    display: none !important;
  }

  .anna-calc-input-wrap,
  .anna-calc-result {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 15px !important;
    padding: 10px 14px !important;
  }

  .anna-calc-chips {
    gap: 6px !important;
  }

  .anna-chip {
    padding: 4px 8px !important;
    font-size: 11px !important;
  }

  /* Forms (Withdraw / Bridge) */
  .anna-form-card {
    padding: 18px 12px !important;
    border-radius: 18px !important;
    margin-bottom: 20px !important;
  }

  .anna-form-label {
    font-size: 12.5px !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  .anna-input {
    font-size: 16px !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  .anna-pct-btns {
    gap: 6px !important;
  }

  .anna-pct-btn {
    font-size: 11px !important;
    padding: 7px 0 !important;
  }

  .anna-bridge-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .anna-bridge-card {
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .anna-bridge-info h4 {
    font-size: 13px !important;
  }

  .anna-bridge-info p {
    font-size: 11px !important;
  }

  .anna-summary-box {
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  .anna-summary-row {
    font-size: 12px !important;
    padding: 4px 0 !important;
  }

  .anna-summary-row.total {
    font-size: 13.5px !important;
  }

  .anna-submit-btn {
    font-size: 13.5px !important;
    padding: 13px 10px !important;
    white-space: normal !important;
    text-align: center !important;
    border-radius: 12px !important;
  }

  /* Tables */
  .anna-table-card {
    padding: 14px 10px !important;
    border-radius: 16px !important;
    margin-top: 18px !important;
  }

  .anna-table-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .anna-table-header h3 {
    font-size: 15px !important;
  }

  .anna-table th, .anna-table td {
    padding: 8px 8px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  /* Modals */
  .anna-otp-overlay {
    padding: 10px !important;
  }

  .anna-otp-modal {
    padding: 22px 14px !important;
    border-radius: 18px !important;
  }

  .anna-otp-icon, .anna-success-badge-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }

  .anna-otp-title {
    font-size: 17px !important;
  }

  .anna-otp-desc {
    font-size: 12.5px !important;
  }

  .anna-otp-details-box {
    padding: 10px 12px !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
  }

  .anna-otp-detail-row {
    font-size: 12px !important;
  }

  .anna-otp-input {
    font-size: 20px !important;
    letter-spacing: 6px !important;
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .anna-otp-actions {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .anna-otp-btn {
    width: 100% !important;
    padding: 12px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 400px) {
  .anna-tabs-nav {
    grid-template-columns: 1fr !important;
  }
  .anna-tab-btn {
    min-height: 52px !important;
  }
  .anna-header-titles h1 {
    font-size: 18px !important;
  }
  .anna-header-actions {
    flex-direction: column !important;
  }
}



