#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 10000;
}

.cookie-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

#cookieConsentBanner a {
    color: #ffd700;
    text-decoration: underline;
}

#acceptCookieBtn {
    background-color: #ffd700;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#acceptCookieBtn:hover {
    background-color: #ffcc00;
}


@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
