.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 999;
}

.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  width: 600px;
  text-align: center;
  display: none;
  z-index: 1000;
  font-size: 25px;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.modal-buttons button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #ff7a00;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

.modal-buttons button:hover {
  background: #e56d00;
}

.modal-close {
  background: transparent;
  border: none;
  color: #555;
  cursor: pointer;
}
