#vcc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    color: #000;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 9999;
}

#vcc-banner.vcc-hidden {
    display: none;
}

#vcc-banner #vcc-banner-text {
    line-height: 1.4;
}

/* Контейнер для кнопок в ряд */
#vcc-banner .vcc-buttons {
    display: flex;
    justify-content: space-between; /* равномерный отступ между кнопками */
    gap: 15px;
}

/* Кнопки */
#vcc-banner button {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    min-width: 0; /* предотвращаем минимальную ширину */
    text-align: center;
    white-space: nowrap;
}
#vcc-banner button
#vcc-decline-all {
    opacity: 0.7;
}

#vcc-decline-all:hover,
#vcc-decline-all:focus {
    opacity: 1;
}
@media (max-width: 767px) {
    #vcc-banner {
        flex-direction: column;

    }
    #vcc-banner #vcc-banner-text {
        text-align: center;
    }

}