/* Modal overlay */
.confirmation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 3001;
}

/* Modal content */
.confirmation-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 3002;
  display: none;
  max-width: 380px;
  width: 90%;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Message */
#confirmationMessage {
  font-size: 17px;
  color: #333;
  margin-bottom: 24px;
}

/* Buttons container */
.confirmation-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Buttons */
.confirmation-modal-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Cancel button style */
#confirmCancel {
  background-color: #f44336;
  color: #fff;
}

#confirmCancel:hover {
  background-color: #d32f2f;
  transform: scale(1.05);
}

/* Confirm button style */
#confirmSubmit {
  background-color: #4caf50;
  color: #fff;
}

#confirmSubmit:hover {
  background-color: #388e3c;
  transform: scale(1.05);
}
