.deposit-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.deposit-card {
  border: none;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-base);
}
.deposit-card .nav-tabs .nav-link {
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--text-muted-light);
  border: 1px solid var(--border-color);
  border-bottom: none;
  background-color: var(--light-bg);
  margin-right: 5px;
  transition: var(--transition-base);
}
.deposit-card .nav-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: var(--white-color);
  border-color: var(--border-color);
  border-bottom: 1px solid var(--white-color);
  position: relative;
  top: 1px;
}
.deposit-card .nav-tabs .nav-link:hover:not(.active) {
  border-color: var(--border-color);
  color: var(--primary-color);
}
.deposit-card .tab-content {
  border: 1px solid var(--border-color);
  border-top: none;
  padding: 2rem;
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
}
.deposit-vnd .qr-code-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-base);
}
.deposit-vnd .qr-code-wrapper img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
.deposit-vnd .transfer-info dt {
  font-weight: 500;
  color: var(--text-muted-light);
  margin-bottom: 0.25rem;
}
.deposit-vnd .transfer-info dd {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  word-break: break-all;
}
.deposit-vnd .transfer-info code {
  font-size: 1.1rem;
  color: var(--accent-color);
  background-color: rgba(230, 57, 70, 0.05);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}
.deposit-vnd .copy-button {
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
}
.deposit-vnd .important-note {
  background-color: rgba(255, 158, 27, 0.1);
  border-left: 4px solid var(--secondary-color);
}
.deposit-usdt .wallet-address-display {
  background-color: var(--light-bg);
  padding: 1rem;
  border-radius: var(--border-radius-base);
  margin-bottom: 1rem;
  text-align: center;
}
.deposit-usdt .wallet-address-display code {
  font-size: 1rem;
  color: var(--primary-color);
  word-break: break-all;
  display: block;
  margin-bottom: 0.5rem;
}
.deposit-usdt .usdt-qr-code img {
  max-width: 180px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
.deposit-usdt .network-info {
  font-weight: 600;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}
.deposit-usdt .usdt-instructions li {
  margin-bottom: 0.5rem;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
