/* 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;
    background-color: var(--blue);
     background-repeat: no-repeat;
    background-position: center right 24px;
    font-family: "ABCD Bold", sans-serif;
    padding: 18px 24px;
    font-size: 1rem;
    align-self: end;
    max-height: 48px;
    border-top: 0 solid transparent;
	cursor: pointer;
    color: white;
    border: none;
}

.popup-confirm-button:hover,
.popup-confirm-button:focus {
  background-color: var(--cyan-dark);
}

/* 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;
}