#consent-banner button {
    flex-grow:1; 
    font-family:Roboto; 
    font-weight: unset; 
    font-size:13pt; 
    padding: 0.7rem 1.2rem;
    cursor: pointer;
}

#accept-all, #save-preferences {
    background: #f57900; 
    color: #fff; 
    border: none;
}

#manage-preferences {
    background: #f0f0f0; 
    border: 1px solid #ddd; 
}

.cookie-buttons {
    display:flex; gap:10px;
    margin-top:20px;
}

#cookie-container {
    display: flex; 
    flex-direction:column; 
    justify-content: space-between; 
    align-items: center; 
    min-height:200px;
}

#cookie-text {
    margin: auto; 
    margin-bottom:10px; 
    font-size: 14pt; 
    text-align:left; 
    color:#555;
}

#consent-banner {
    position:fixed;
    bottom:0px;
    right:0px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border:solid 1px #ccc;
    padding:30px;
    z-index: 1000;
}

#preferences-form label {
    display: block;
    margin-bottom:10px;
    cursor:pointer;
}