#cookieConsent[hidden] {
    display: none;
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e7ecf0;
    color: #0b1628;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 14px;
}

#cookie-consent-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 1170px;
    gap: 20px;
    align-items: center;
}

#cookieConsent button {
    padding: 10px 15px;
    background: #0b1628;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    text-wrap: nowrap;
}

#cookieConsent a {
    text-decoration: underline;
}

@media (max-width: 786px) {
    #cookie-consent-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #cookieConsent .content-button {
        width: 100%;
    }
}
