#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

    #cookieConsentBanner.show {
        display: block;
    }

    #cookieConsentBanner a {
        text-decoration: underline;
        color: #fff;
    }

        #cookieConsentBanner a:hover {
            text-decoration: underline;
            color: #fff;
        }

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 200px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

    


@media (max-width: 600px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        justify-content: stretch;
        width: 100%;
    }

        .cookie-consent-buttons button {
            flex: 1;
        }
}
