/* ==========================================================================
   MeuFinance Design System & CSS Styles
   Aesthetics: Modern Dark Mode, Emerald Highlights, Glassmorphism, Micro-animations
   ========================================================================== */

:root {
  --bg-app: #090e13;
  --bg-viewport: #0f1720;
  --bg-card: #15222e;
  --bg-card-hover: #1c2c3b;
  --bg-input: #1a2938;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(34, 197, 94, 0.3);
  
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --primary-glow: rgba(34, 197, 94, 0.25);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Status Colors */
  --income-green: #22c55e;
  --expense-red: #ef4444;
  --balance-blue: #3b82f6;
  --warning-orange: #f59e0b;
  --accent-purple: #a855f7;
  
  /* Category Palette */
  --cat-moradia: #3b82f6;
  --cat-transporte: #f59e0b;
  --cat-alimentacao: #ef4444;
  --cat-lazer: #a855f7;
  --cat-saude: #06b6d4;
  --cat-outros: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-app);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* App Frame Container (Simula Mobile View no Desktop) */
.app-viewport {
  width: 100%;
  max-width: 440px;
  height: 100vh;
  height: 100dvh; /* corrige toolbar dinâmica do Chrome/Safari mobile escondendo a bottom-nav */
  max-height: 920px;
  background-color: var(--bg-viewport);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .app-viewport {
    border-radius: 40px;
    height: 90vh;
    height: 90dvh;
    border: 1px solid var(--border-color);
  }
}

/* Header */
.app-header {
  padding: 20px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(15, 23, 32, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.sub-greeting {
  font-size: 1.1rem;
  color: var(--text-main);
}

.greeting-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.icon-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background: var(--bg-card-hover);
  transform: scale(1.05);
}

.badge-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

/* Main Scrollable Area */
.app-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px calc(100px + env(safe-area-inset-bottom, 0px));
  scroll-behavior: smooth;
}

.app-content::-webkit-scrollbar {
  width: 4px;
}
.app-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Tabs Pane Logic */
.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-pane.active {
  display: block;
}

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

/* Cards Base Style */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-title-row h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-title-row h3 small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.text-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.text-btn:hover { color: var(--primary); }

/* Card Gasto Total */
.card-total-spend {
  background: linear-gradient(135deg, #182a38 0%, #111e29 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.total-spend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.month-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-main);
  cursor: pointer;
}

.total-spend-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}

.main-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.main-amount .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.main-amount .amount-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.percentage-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.percentage-badge.negative {
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary);
}

/* Donut Chart Container */
.donut-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-box {
  width: 125px;
  height: 125px;
  position: relative;
  flex-shrink: 0;
}

.chart-center-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.center-amount {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}
.center-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.category-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.legend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  gap: 4px;
}

.legend-left {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.legend-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-align: right;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-name {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.legend-val { font-weight: 700; color: var(--text-main); white-space: nowrap; }
.legend-pct { color: var(--text-dim); font-size: 0.68rem; }

/* Resumo do Mês Mini Cards */
.summary-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.summary-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 10px;
}

.mini-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mini-card-header i { width: 14px; height: 14px; }

.summary-mini-card.income .mini-card-header i { color: var(--income-green); }
.summary-mini-card.expense .mini-card-header i { color: var(--expense-red); }
.summary-mini-card.balance .mini-card-header i { color: var(--balance-blue); }

.mini-card-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 6px;
}

.summary-mini-card.income .mini-card-value { color: var(--income-green); }
.summary-mini-card.expense .mini-card-value { color: var(--text-main); }
.summary-mini-card.balance .mini-card-value { color: var(--balance-blue); }

/* Chart Evolução Mensal */
.chart-legend-top {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.75rem;
}
.legend-item { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.legend-item .color-box { width: 10px; height: 10px; border-radius: 3px; }
.legend-item.income .color-box { background: var(--income-green); }
.legend-item.expense .color-box { background: var(--expense-red); }

.bar-chart-box {
  height: 160px;
  width: 100%;
}

/* Lançamentos Screen */
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-title-row h2 {
  font-size: 1.3rem;
  font-weight: 800;
}

.action-icons { display: flex; gap: 8px; }

.icon-btn-sm {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-bar-wrapper {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 12px;
}
.search-bar-wrapper.active { display: flex; }
.search-bar-wrapper input {
  background: none;
  border: none;
  color: var(--text-main);
  width: 100%;
  outline: none;
  font-size: 0.85rem;
}

.filter-pills-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pill-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pill-btn.active {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* Transactions Group List */
.tx-group-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 16px 0 8px;
}

.tx-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tx-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tx-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}
.tx-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tx-value {
  font-weight: 700;
  font-size: 0.9rem;
}
.tx-value.expense { color: var(--expense-red); }
.tx-value.income { color: var(--income-green); }

.btn-floating-add {
  position: fixed;
  bottom: 84px;
  right: calc(50% - 190px);
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
}

@media (max-width: 440px) {
  .btn-floating-add { right: 20px; }
}

.btn-floating-add:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Relatórios Screen */
.sub-tab-pills {
  display: flex;
  background: var(--bg-card);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.sub-pill {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 8px 0;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;

}
.sub-pill.active {
  background: rgba(34, 197, 94, 0.18);
  color: var(--primary);
}

.report-sub-content { display: none; }
.report-sub-content.active { display: block; }

.stats-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.stat-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
.stat-row strong { color: var(--text-main); }
.stat-row.highlight { padding-top: 6px; border-top: 1px dashed var(--border-color); font-size: 0.9rem; }

.text-green { color: var(--income-green) !important; }
.text-red { color: var(--expense-red) !important; }
.text-blue { color: var(--balance-blue) !important; }

/* Export Buttons Grid */
.export-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.export-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.export-btn:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.export-btn.excel i { color: #107c41; }
.export-btn.sheets i { color: #0f9d58; }
.export-btn.pdf i { color: #ea4335; }
.export-btn.csv i { color: #3b82f6; }

/* Metas e Consórcios */
.goal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.goal-amount { font-size: 1.4rem; font-weight: 800; color: var(--text-main); }
.goal-badge { background: rgba(34, 197, 94, 0.15); color: var(--primary); font-weight: 800; padding: 4px 10px; border-radius: var(--radius-full); font-size: 0.8rem; }
.progress-bar-bg { background: rgba(255, 255, 255, 0.08); height: 10px; border-radius: 5px; overflow: hidden; margin-bottom: 8px; }
.progress-bar-fill { background: var(--primary); height: 100%; border-radius: 5px; }
.goal-subtext { font-size: 0.75rem; color: var(--text-muted); }

.consorcio-item { background: rgba(255, 255, 255, 0.02); padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.consorcio-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.badge-active { background: rgba(34, 197, 94, 0.15); color: var(--primary); padding: 2px 8px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700; height: fit-content; }
.consorcio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; font-size: 0.72rem; color: var(--text-muted); }

.patrimonio-header-row { display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }
.patrimonio-val { font-size: 1.6rem; font-weight: 800; }
.sparkline-container { width: 90px; height: 30px; }
.patrimonio-breakdown { display: flex; flex-direction: column; gap: 6px; font-size: 0.75rem; margin-top: 8px; }
.p-item { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.green { background: var(--primary); }
.dot.blue { background: var(--balance-blue); }
.dot.orange { background: var(--warning-orange); }

.settings-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.setting-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; padding: 6px 0; }
.setting-item i.arrow { margin-left: auto; width: 16px; height: 16px; opacity: 0.5; }

/* Bottom Nav Bar */
.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(74px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 23, 32, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 20;
  padding: 0 10px env(safe-area-inset-bottom, 0px);
}

.nav-item {
  background: none;
  border: none;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  flex: 1;
}

.nav-item i { width: 20px; height: 20px; }

.nav-item.active {
  color: var(--primary);
}

/* Central Voice Button */
.voice-btn-center {
  position: relative;
  top: -18px;
  flex: none;
}

.voice-icon-wrapper {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
  transition: var(--transition-fast);
}

.voice-icon-wrapper i { width: 26px; height: 26px; stroke-width: 2.5; }

.voice-btn-center:hover .voice-icon-wrapper {
  transform: scale(1.1);
}

/* ==================== MODAL DE VOZ E IA ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100;
  justify-content: center;
  align-items: flex-end;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.active { display: flex; }

.modal-card {
  background: var(--bg-viewport);
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-top: 1px solid var(--border-color);
  padding: 24px 20px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header h2 { font-size: 1.2rem; font-weight: 800; }
.modal-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* Voice Status Box */
.voice-status-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.mic-large-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.mic-large-btn i { width: 32px; height: 32px; stroke-width: 2.5; }

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse 1.8s infinite;
  opacity: 0;
}

.mic-large-btn.recording .pulse-ring { opacity: 1; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.voice-instruction {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Ondas sonoras animadas */
.sound-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  margin-top: 10px;
  opacity: 0;
}
.sound-wave.active { opacity: 1; }
.sound-wave span {
  width: 3px;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  animation: wave 1s infinite ease-in-out;
}
.sound-wave span:nth-child(1) { animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { animation-delay: 0.2s; }
.sound-wave span:nth-child(3) { animation-delay: 0.3s; }
.sound-wave span:nth-child(4) { animation-delay: 0.4s; }
.sound-wave span:nth-child(5) { animation-delay: 0.5s; }

@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

.transcription-preview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--primary);
  font-style: italic;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

.modal-divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.modal-divider::before, .modal-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border-color);
}
.modal-divider span { padding: 0 10px; }

.text-box-wrapper {
  display: flex;
  gap: 8px;
}
.text-box-wrapper input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  outline: none;
  font-size: 0.85rem;
}
.send-ai-btn {
  background: var(--primary);
  border: none;
  color: #000;
  width: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card IA Identificou */
.ai-parsed-card {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-top: 16px;
}
.ai-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.parsed-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.field-group.full-width { grid-column: span 2; }
.field-label { display: block; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 4px; }
.parsed-input, .parsed-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.82rem;
  outline: none;
}

.btn-confirm-transaction {
  width: 100%;
  background: var(--primary);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: var(--transition-fast);
}
.btn-confirm-transaction:hover { background: var(--primary-hover); }
