#cookie-consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2147483000;
    max-width: 62rem;
    margin: 0 auto;
    background: #1f2937;
    color: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#cookie-consent-banner .cookie-consent-text {
    flex: 1 1 22rem;
    margin: 0;
}

#cookie-consent-banner .cookie-consent-text a {
    color: #93c5fd;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: auto;
}

#cookie-consent-banner button {
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.15s ease;
}

#cookie-consent-banner button:hover {
    filter: brightness(1.08);
}

#cookie-consent-banner .cookie-consent-accept {
    background: #16a34a;
    color: #fff;
}

#cookie-consent-banner .cookie-consent-reject {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid #6b7280;
}

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

    #cookie-consent-banner .cookie-consent-actions {
        margin-left: 0;
        justify-content: center;
    }

    #cookie-consent-banner button {
        flex: 1 1 auto;
    }
}
