/* ===== YOUR CSS START ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}
button {
  cursor: pointer;
}

/* Deposit Button */
.deposit-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0b8d35;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  margin: 40px;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 998;
}

/* Modal Container */
.modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 90%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  transition: bottom 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}
.modal.show {
  bottom: 0;
}
.modal-overlay.show {
  display: block;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.modal-header h2 {
  font-size: 18px;
  margin: 0;
}
.closes-btn {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  color: #000000;
  font-weight: bold;
}

/* Payment Grid */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px;
  color:black;
}
.payment-option {
  background: #f1f1f4;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.payment-option:hover {
  background: #e6e6e9;
}
.payment-option img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

/* Step 2 */
.step2 {
  display: none;
  padding: 20px;
}

.txtcolor {
  color: #000; /* green */
}

.amount-input {
  background: #f4f4f4;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 10px;
}
.quick-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.quick-amounts button {
  flex: 1;
  min-width: 80px;
  background: #eee;
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  font-weight: bold;
}
.deposit-confirm-btn {
  width: 100%;
  padding: 12px;
  background: #0b8d35;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
}
.back-btn {
  color: #007aff;
  background: none;
  border: none;
  font-size: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}

.quick-amounts button.active {
  background-color: #0b8d35; /* green */
  color: #fff;               /* white text */
}

/* ===== YOUR CSS END ===== */