.wizcookieconsent-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 9999;
    display: none;
}

.wizcookieconsent-banner.is-visible {
    display: block;
}

.wizcookieconsent-banner__inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    color: #fff;
    background: rgba(24, 24, 27, 0.96);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.wizcookieconsent-banner__message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.wizcookieconsent-banner__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.wizcookieconsent-banner__close {
    min-width: 2rem;
    min-height: 2rem;
    padding: 0;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    background: transparent;
    border: 0;
}

@media (max-width: 767px) {
    .wizcookieconsent-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .wizcookieconsent-banner__actions {
        flex-wrap: wrap;
    }

    .wizcookieconsent-banner__actions .btn {
        flex: 1 1 100%;
    }
}
