.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748; /* Donkergrijze achtergrond */
    color: #ffffff;
    padding: 15px 20px;
    z-index: 1050;
    display: none; /* Standaard verborgen */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-content p {
    margin: 0;
    margin-right: 20px;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
}

/* Stijlen voor knoppen, in lijn met de stijl van de website */
.cookie-consent-buttons .btn {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    margin-left: 10px;
    transition: background-color 0.2s;
}

.cookie-consent-buttons .btn-primary {
    background-color: #4CAF50; /* Groen */
    color: white;
}

.cookie-consent-buttons .btn-primary:hover {
    background-color: #45a049;
}

.cookie-consent-buttons .btn-secondary {
    background-color: #f44336; /* Rood */
    color: white;
}

.cookie-consent-buttons .btn-secondary:hover {
    background-color: #da190b;
}

/* Media query voor kleinere schermen */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-content p {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
