/* GRID WALLET */
.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD UMUM */
.wallet-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* WARNA KHUSUS */
.user-balance {
  border-top: 5px solid #0077ff;
}

.reward-balance {
  border-top: 5px solid #00a86b;
}

/* AMOUNT */
.balance-amount {
  font-size: 35px;
  font-weight: bold;
  margin: 15px 0;
}

/* DESC */
.desc {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.action-btns {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.topup {
  background: #0077ff;
}

.withdraw {
  background: #e74c3c;
}

/* STATUS */
.status {
  margin-top: 15px;
  font-size: 14px;
}

.status span {
  color: #e74c3c;
  font-weight: bold;
}

/* HISTORY */
.history-card {
  margin-top: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.history-card h3 {
  margin-bottom: 15px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.plus {
  color: #00a86b;
  font-weight: bold;
}

.minus {
  color: #e74c3c;
  font-weight: bold;
}

.zero {
  color: #999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wallet-grid {
    grid-template-columns: 1fr;
  }
}