/* ===== Spinner Overlay ===== */
#loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #c9a44c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Popup ===== */
#successPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.popup-box {
  background: #fff;
  max-width: 400px;
  width: 90%;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.popup-box h3 {
  color: #0b2c4d;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #555;
}

.popup-box button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #c9a44c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}