/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 111111;
  animation: fadeIn 0.4s ease;
}

/* Popup box */
.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.popup-box h2 {
  margin-top: 0;
  color: #82352b;
}

.popup-box input,
.popup-box select,
.popup-box button {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.popup-box button {
  background: #82352b;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  background: #b26c52;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
