#cookie-consent-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

#cookie-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#cookie-preferences {
    margin-top: 10px;
}

.cookie-button {
    padding: 10px 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    color: white;
}

#accept-all {
    background-color: #28a745; /* Green */
}

#reject-all {
    background-color: #dc3545; /* Red */
}

#manage-preferences {
    background-color: #0073aa; /* Blue */
}

#privacy-policy-link {
    background-color: #f8d210; /* Yellow */
}

#save-preferences {
    background-color: #28a745; /* Green */
}

.cookie-label {
    display: block;
    margin-bottom: 10px;
}

.cookie-consent-hidden {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 15px;
    }
    #cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    .cookie-button {
        width: 100%;
        margin: 5px 0;
    }
    #cookie-preferences label {
        margin: 10px 0;
    }
}
