/* ========================================
   Wallet — Mi Saldo
   ======================================== */

.wallet-view {
  max-width: 600px;
}

.wallet-balance-card {
  background: #212121;
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}

.wallet-balance-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.wallet-balance-amount {
  font-size: 32px;
  font-weight: 700;
}

.wallet-balance-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.wallet-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.wallet-btn--primary {
  background: #fff;
  color: #212121;
}
.wallet-btn--primary:hover { background: #eee; }

.wallet-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.wallet-btn--outline:hover { border-color: #fff; }

/* Transactions */
.wallet-transactions h3 {
  font-size: 14px;
  margin: 0 0 12px;
  color: #333;
}

.wallet-tx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.wallet-tx:last-child { border-bottom: none; }

.wallet-tx__info {
  font-size: 13px;
}

.wallet-tx__desc {
  font-weight: 500;
  color: #333;
}

.wallet-tx__date {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.wallet-tx__amount {
  font-size: 14px;
  font-weight: 700;
}

.wallet-tx__amount--credit { color: #2E7D32; }
.wallet-tx__amount--debit { color: #C62828; }

.wallet-tx--highlight {
  animation: walletHighlight 3s ease;
}

@keyframes walletHighlight {
  0%, 10% { background: #FFF9C4; }
  100% { background: transparent; }
}

.wallet-empty {
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 13px;
}

/* Withdrawal form */
.wallet-withdraw-form {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
}

.wallet-withdraw-form h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.wallet-withdraw-form .form-group {
  margin-bottom: 12px;
}

.wallet-withdraw-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 6px;
  font-weight: 600;
}

.wallet-withdraw-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

.wallet-fee-note {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}
