/* Styles for the modal */
.modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px; /* Adjust the left position as needed */
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-width: 300px;
  width: 90%;
  text-align: center;
}

.modal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#modalText {
  padding: 10px;
}

#modalText span {
  color: #ffc107; /* Yellow color for amount deposited */
}
