.poll .kb-button.glosowanie-button {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.poll .kb-button.glosowanie-button::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--glosowanie-percent, 0%);
    background: rgba(255, 255, 255, 0.28);
    z-index: -1;
    transition: width 0.35s ease;
}

.poll .kb-button.glosowanie-button.is-selected {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.poll .kb-button.glosowanie-button.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.poll .glosowanie-meta {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    white-space: nowrap;
	padding-right: 1em;
}

.glosowanie-toast {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%) translateY(20px);
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1.3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 999999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.glosowanie-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
