
/* Banner styles */
#feedback-banner-spacer {
    background-color: #7DCA41;
    color: black;
    text-align: center;
    padding: 10px;
    height: 2em;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 16px;
}

/* Banner styles */
#feedback-banner {
    background-color: #7DCA41;
    color: black;
    text-align: center;
    padding: 10px;
    height: 2em;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 16px;
}


#feedback-banner a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2em;
}

/* Popup overlay styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.popup-content img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 20px;
}

.popup-content > h6 {
    font-size: .75em;
    margin-bottom: 3em;
}

.popup-content button {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: black;
}
