body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.blur-background {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.content {
  /* padding: 2rem; */
  text-align: center;
}

.popup-overlay {
  position: fixed;
  inset: 0;
background-color: #1bb2dc45;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.popup p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.popup button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-yes {
  background-color: #28a745;
  color: white;
}

.btn-yes:hover {
  background-color: #218838;
}

.btn-no {
  background-color: #dc3545;
  color: white;
}

.btn-no:hover {
  background-color: #c82333;
}

@media (max-width: 480px) {
  .popup {
    width: 90%;
    padding: 1.5rem;
  }

  .popup h2 {
    font-size: 1.25rem;
  }

  .popup p {
    font-size: 0.95rem;
  }
}
