#vcc-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    max-width: 320px;
    font-family: inherit;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    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: 5px;
}

/* Кнопки */
#vcc-banner button {
    padding: 6px;
    cursor: pointer;
    font-size: 12px;
    flex: 1; /* чтобы кнопки были одинаковой ширины */
    min-width: 0; /* предотвращаем минимальную ширину */
    text-align: center;
}

#vcc-decline-all {
    opacity: 0.7;
}

#vcc-decline-all:hover,
#vcc-decline-all:focus {
    opacity: 1;
}
