/* Custom styles for the popup */
#cookiePopup {
    position: fixed;
    top: calc(50vh - 100px);
    left: calc(50% - 320px);
    width: 640px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

@media screen and (max-width: 640px) {
    #cookiePopup {
        width: 90%;
        left: 5%;
    }
}

#cookiePopup p {
    margin-bottom: 0;
}

#acceptCookies {
    margin-top: 10px;
}
