#cookie-banner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1;
}

#cookie-banner {
    position: relative;
    color: black;
    padding: 20px;
    text-align: center;
    width: 50%; /* Default width for larger screens */
    max-width: 500px;
    z-index: 2; /* Higher than overlay to stay on top */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(8.9px);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

/* Adjust width for smaller screens */
@media (max-width: 768px) {
    #cookie-banner {
        width: 70%; /* Makes the banner wider on small screens */
    }
}

@media (max-width: 480px) {
    #cookie-banner {
        width: 90%; /* Almost full-width on very small screens */
    }
}

#cookie-banner button {
    margin: 5px 5px;
    padding: 5px 10px;
    border: none;
    color: rgb(218, 215, 205);
    cursor: pointer;
}
#accept-cookies {
	border-radius: 8px;
    background-color: rgb(58, 90,64);
}
#decline-cookies {
	border-radius: 8px;
    background-color: rgb(58, 90,64);
}
