#snos_-_cookie_consent {
    padding: 0;
}

.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-banner {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 457px;
    width: 90%;
}

.cookie-banner p {
    white-space: pre-wrap; /* Zorg dat nieuwe regels worden gerespecteerd */
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-banner h2 {
    line-height: 1; 
}

.cookie-banner button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

#accept-cookies {
    background-color: #ff8f18;
    color: #fff;
}

#reject-cookies {
    background-color: #dc3545;
    color: #fff;
}

.cookie-banner a {
    color: #007bff;
    text-decoration: none;
}

.cookie-banner a:hover {
    color: #dc3545;
}
