/* Ensure popup appears above the fixed header (z-index: 100) */
#popup-message-wrapper,
#popup-message-window {
  z-index: 1000;
}

#popup-message-background {
  z-index: 999;
}

/* Disable fade in/out animations - make transitions instant */
#popup-message-wrapper,
#popup-message-background {
  transition: none !important;
  animation: none !important;
}

.popup-confirm-button {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #005b7f;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-confirm-button:hover,
.popup-confirm-button:focus {
  background-color: #004864;
}

/* Optional: ensure the X remains visible and clickable */
#popup-message-close {
  cursor: pointer;
  text-decoration: none;
}

#popup-message-window h1.popup-message-title {
    margin-top: 0px;
}