.oo-poll {
    margin: 32px 0;
    padding: 24px;
    border: 1px solid rgba(18, 19, 24, 0.10);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(18, 19, 24, 0.03), rgba(18, 19, 24, 0.00));
}

.oo-poll-title {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.oo-poll-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oo-poll-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(18, 19, 24, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
    overflow: hidden;
    text-align: left;
    z-index: 1;
}

.oo-poll-btn > * {
    pointer-events: none;
}

.oo-poll-btn:hover:not(:disabled) {
    border-color: rgba(18, 19, 24, 0.25);
    background: rgba(18, 19, 24, 0.02);
    transform: translateY(-1px);
}

.oo-poll-btn:active:not(:disabled) {
    transform: translateY(0);
}

.oo-poll-btn:disabled {
    cursor: default;
}

.oo-poll-btn.oo-voted {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
}

.oo-poll-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.oo-poll-label {
    font-weight: 500;
    color: #121318;
    z-index: 2;
    position: relative;
}

.oo-poll-count {
    margin-left: auto;
    font-size: 0.85rem;
    color: #3a3f4b;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.oo-poll-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    transition: width 0.6s ease;
    z-index: 0;
}

.oo-poll-thanks {
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 500;
}

.oo-poll-total {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #3a3f4b;
}

@media (min-width: 640px) {
    .oo-poll-buttons {
        flex-direction: row;
    }
    .oo-poll-btn {
        flex: 1;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 18px 14px;
    }
    .oo-poll-count {
        margin-left: 0;
        margin-top: 4px;
    }
}
