#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
}

#cookie-consent-banner button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

#personalize-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1001;
}

#personalize-modal input[type="checkbox"] {
    margin-right: 10px;
}

#personalize-modal button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

#personalize-modal .close {
    background-color: #ccc;
    color: black;
    float: right;
}