/* External CSS for Wallet Page */
.wallet-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wallet-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.balance-amount {
  font-size: 3rem;
  font-weight: bold;
  margin: 1rem 0;
}

.action-buttons {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.wallet-table {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.table-header {
  background-color: #f8f9fa;
  font-weight: bold;
}

.modal-header-custom {
    background: #007c09;
    color: white;
    padding: 5px 15px;
}

.modal-header-custom  .modal-title {
    font-size: 19px;
}

.Withdrow_Modal  .btn_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}