.mfo-as-poll {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
    padding: 28px;
}

.mfo-as-poll-question {
    font-size: 20px;
    font-weight: 800;
    color: #1a2540;
    margin: 0 0 6px;
}

.mfo-as-poll-hint {
    font-size: 13px;
    color: #6b7785;
    margin: 0 0 20px;
}

.mfo-as-poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mfo-as-poll-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid #e2e7ed;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.mfo-as-poll-option:hover:not(:disabled) {
    border-color: #4a6fa5;
}

.mfo-as-poll-option:disabled {
    cursor: default;
}

.mfo-as-poll-option-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.mfo-as-poll-option-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mfo-as-poll-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2540;
}

.mfo-as-poll-option-bar-wrap {
    display: block;
    width: 100%;
    height: 8px;
    background: #f0f2f7;
    border-radius: 999px;
    overflow: hidden;
}

.mfo-as-poll-option-bar {
    display: block;
    height: 100%;
    background: #cfd9e6;
    border-radius: 999px;
    transition: width 0.3s ease;
}

.mfo-as-poll--voted .mfo-as-poll-option-bar {
    background: #9db3cf;
}

.mfo-as-poll-option--picked .mfo-as-poll-option-bar {
    background: #4a6fa5;
}

.mfo-as-poll-option--picked .mfo-as-poll-option-label {
    color: #4a6fa5;
}

.mfo-as-poll-option-count {
    font-size: 12px;
    color: #8a94a3;
}

.mfo-as-poll-total {
    margin: 18px 0 0;
    font-size: 13px;
    color: #6b7785;
    text-align: right;
}
