/* Overlay Styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 9998; /* Higher z-index */
    backdrop-filter: blur(5px) brightness(40%);
    display: none;
}

/* Popup Styling */
#messagePopup {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f6f8f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Higher z-index than overlay */
    box-sizing: border-box;
    text-align: center;
    display: none;
    opacity: 0;
    top: 45%;
}
.messageBackground {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 5px;
}

#popupMessageContent {
    margin-bottom: 20px;
}
#messagePopup button {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: solid 1px;
    border-color: var(--primary-color);
    border-radius: 3px;
    cursor: pointer;
    line-height: 1;
    font-size: 15px;
    transition: all .3s;
    font-weight: 500;
}
#messagePopup button:hover {
    background-color: #ffffff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
@media (max-width: 1024px) {
    #messagePopup {
        width: 80%;
    }
}
@media (max-width: 767px) {
    #messagePopup {
        width: 90%;
    }
}
