.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  font-size: 1.5rem;
  color: #A90836;
  margin-bottom: 0.5rem;
}

.modal-content p {
  margin-bottom: 1rem;
  color: #333;
}

.modal-content button {
  background-color: #A90836;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.modal-content button:hover {
  background-color: #b53041;
}

.hidden {
  display: none;
}