/* Stylization of cookie consent banner and settings window */
#cookieConsentBanner, #cookieSettings {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Styles for buttons and form elements */
#cookieConsentBanner button, #cookieSettings button {
    margin: 10px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#cookieSettings label {
    display: block;
    margin: 5px 0;
}
