.wallet-container, .deposit-history-section { max-width: 420px; margin: 22px auto 80px auto; }
.deposit-history-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #0001;
  padding: 18px 10px 8px 10px;
  margin-top: 16px;
}
.deposit-history-title {
  font-size: 1.16em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3f51b5;
  text-align: left;
  letter-spacing: 0.5px;
}
.deposit-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.deposit-history-item {
  padding: 9px 0;
  border-bottom: 1px solid #f0f2f5;
}
.deposit-history-item:last-child {
  border-bottom: none;
}
.history-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 1em;
}
.history-amount {
  color: #1b8a19;
  font-weight: 600;
  min-width: 80px;
}
.history-currency {
  font-size: 0.92em;
  font-weight: 400;
  color: #888;
}
.history-method {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 90px;
}
.history-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 3px;
}
.history-date {
  font-size: 0.97em;
  color: #888;
  min-width: 110px;
}
.history-status {
  font-size: 0.97em;
  font-weight: 500;
  border-radius: 8px;
  padding: 2px 9px;
  margin-left: auto;
}
.history-status-approved { background: #e6ffe6; color: #1b8a19; }
.history-status-pending { background: #fffbe6; color: #af8400; }
.history-status-rejected { background: #ffe6e6; color: #e53935; }
@media (max-width: 520px) {
  .wallet-container, .deposit-history-section { max-width: 99vw; }
  .history-row { flex-direction: column; align-items: flex-start; gap: 1px; }
  .history-status { margin-left: 0; margin-top: 2px; }
}
/* Header fix for all sections */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 16px;
  font-family: 'Poppins',sans-serif;
  font-weight: 600;
  font-size: 1.18em;
  box-shadow: 0 2px 8px #0001;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #0974d0;
}
.header-title { color: #fff; }
.header-icon a, .header-icon button { color: #fff; font-size: 1.25em; background: none; border: none; }
.navbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 12px #0001;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 54px;
  z-index: 50;
}
.navbar a {
  flex: 1 1 0;
  text-align: center;
  color: #888;
  font-size: 1em;
  text-decoration: none;
  padding: 4px 0 0 0;
}
.navbar a.active, .navbar a:active { color: #0974d0; font-weight: 600; }
.navbar i { display: block; font-size: 1.25em; margin-bottom: 1px; }
.navbar span { font-size: 0.94em; }