.deposit-containers {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  width: 90%;
}

.deposit-titles {
  text-align: center;
  margin-bottom: 25px;
}

.deposit-subtitles {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.deposit-amountss {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 25px;
}

.deposit-buttonss {
  flex: 1 1 calc(20% - 10px);
  min-width: 100px;
  padding: 12px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}

.deposit-buttonss.reset {
  color: white;
  background-color: #dc3545;
  
}
.deposit-displays {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.deposit-inputs {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
}


.add-fund-buttonss {
  width: 100%;
  padding: 14px 0;
  border-radius: 30px;
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: none;
  cursor: pointer;
}


.deposit-headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.deposit-titles {
  font-size: 24px;
  margin: 0;
}

.deposit-historys {
  font-size: 18px;
  color: black;
  margin: 0;
  cursor: pointer;
}

.deposit-historys-link {
  font-size: 18px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.deposit-historys-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.deposit-inputs {
  width: 100%;
  /* Full width */
  padding: 12px 16px 12px 36px;
  /* More padding for bigger size */
  font-size: 16px;
  /* Bigger font */
  height: 45px;
  /* Increased height */
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.usd-symbols {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-weight: bold;
  color: #555;
  font-size: 16px;
  /* Match font size of input */
  pointer-events: none;
}

.usd-input-wrappers {
  position: relative;
  display: inline-block;
  width: 100%;
}

.inr-input-wrappers {
  position: relative;
  display: inline-block;
  width: 100%;
}

.inr-symbols {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-weight: bold;
  color: #555;
  font-size: 16px;
  pointer-events: none;
}

.deposit-inputs {
  width: 100%;
  padding: 12px 16px 12px 36px;
  /* Adjust for ₹ symbol on the left */
  font-size: 16px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.add-fund-buttonss {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-overlays {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-contents {
  background: white;
  padding: 25px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.close-btns {
  margin-top: 20px;
  padding: 8px 16px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}