#cookieConsentBanner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: none; /* Hide by default */
}

#cookieConsentBanner button {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    background-color: #333;
}

#cookieConsentBanner button:hover {
    background-color: #555;
}

#cookieConsentBanner .accept-btn {
    background-color: #007bff;
}

#cookieConsentBanner .reject-btn {
    background-color: #6c757d;
}

#cookieConsentBanner .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 16px;
}
