/* 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: #01BBD0;
    background-repeat: no-repeat;
    background-position: center right 24px;
    font-family: "lcnuk", sans-serif;
    color: white;
    padding: 13px 24px 18px 24px;
    font-size: 1rem;
    align-self: end;
    max-height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
}

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

/* 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;
  color: #01BBD0;
  font-size: 2em;
  border-bottom: 1px solid #606060;
}

#popup-message-window {
    font-size: 1rem;
}
#popup-message-window .small-copy {
    font-size: 0.85rem;
}

#popup-message-background {
    background: #A7A9C9;
}