.recharge-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #2f2f2f;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: none;
  z-index: 9999;
  width: 300px;
  border-radius: 6px;
}

.recharge-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.recharge-actions {
  text-align: right;
}

.recharge-actions button {
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dialog-mask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(121, 120, 120, 0.8);
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
}

.custom-dialog {
  background: black;
  width: 80%;
  max-width: 400px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInScale 0.3s ease;
  color: white;
}

.custom-dialog input {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: none;
  margin-bottom: 12px;
}
