/* De balk onderaan */
.cookie-bar-dark {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2b2b2b; /* Antraciet grijs */
    border-top: 1px solid #3d3d3d;
    padding: 12px 0;
    z-index: 10000;
    display: none; /* Getoond via JS */
}

@media screen and (max-width: 768px) {
       .cookie-bar-dark {
            padding-bottom: 60px !important;
    }
}

/* Flexbox voor de uitlijning */
.cookie-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/* Tekst styling */
.cookie-text {
    font-size: 12px;
    color: #bbbbbb; /* Lichtgrijs */
    font-family: Arial, sans-serif;
}

.cookie-text a {
    color: #ffffff;
    text-decoration: underline;
}

/* De knop */
.cookie-btn-grey {
    background-color: #555555; /* Middengrijs */
    color: #ffffff;
    border: none;
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn-grey:hover {
    background-color: #777777; /* Iets lichter grijs bij hover */
}

/* Mobiele versie */
@media (max-width: 767px) {
    .cookie-content-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}