/* Popup container - hidden by default */
#surveyPopup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
}

/* Popup content */
#surveyPopupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 90%;
}

/* Minimalistic buttons */
.popup-button {
    background-color: #000; /* Dark button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 16px;
}

.popup-button:visited{
    color:white;
}

/* Close button style */
.popup-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

/* Popup text */
.popup-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}