#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 10000;
}

#cookie-consent-banner .cookie-consent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

#cookie-consent-banner .cookie-consent button:hover {
    background-color: #45a049;
}
#withdraw-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#withdraw-consent:hover {
    background-color: #e0e0e0;
    color: #333;
}
