/* External CSS for Wallet Page */
.wallet-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.modal-content {
  background: #fff;
  border: 1px solid #ccc;
}

.Withdrow_Modal .modal-body {
  background: #000;
}

.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: #232323;
  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;
}

.Withdrow_Modal .btn_holder .Gray_Btn_holder .Gray_Btn,
.Withdrow_Modal .btn_holder .Green_btn_holder .Green_btn {
  padding: 10px 15px;
}

@media (min-width: 0px) and (max-width: 575px) {
  .modal-header-custom .modal-title {
    font-size: 16px;
  }
}