.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  font-size: 25px;
}

.modal-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}

.confirm-btn,
.close-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.confirm-btn {
  background: #4caf50;
  color: #fff;
}

.close-btn {
  background: #ccc;
}

.modal-content label {
  color: black;
  font-size: 18px;
}

.modal-content input[type="radio"] {
  transform: scale(1.4);
  margin-right: 3px;
  cursor: pointer;
}
