#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #1a202c;
    color: #f4f6f8;
    padding: 1rem 1.5rem;
    font-size: .92rem;
    line-height: 1.5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
}

#cookie-consent-banner .cookie-consent-text {
    margin: 0;
    flex: 1 1 320px;
}

#cookie-consent-banner .cookie-consent-text a {
    color: #7dd3c8;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
    display: flex;
    gap: .6rem;
    flex: 0 0 auto;
}

#cookie-consent-banner .cookie-consent-btn {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: .55rem 1.1rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

#cookie-consent-banner .cookie-consent-btn-primary {
    background: #1D857D;
    color: #fff;
}

#cookie-consent-banner .cookie-consent-btn-secondary {
    background: transparent;
    color: #f4f6f8;
    border-color: rgba(255, 255, 255, .35);
}

@media (max-width: 560px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    #cookie-consent-banner .cookie-consent-actions {
        justify-content: center;
    }
}
