.poll-form {
    display: grid;
    gap: 10px;
}

.poll-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
}

.poll-form.has-voted .poll-option {
    grid-template-columns: 1fr;
}

.poll-option.selected {
    border-color: #00acc1;
    background: #f0fbfd;
}

.poll-option-text {
    font-weight: bold;
}

.poll-option small {
    grid-column: 2;
    opacity: .75;
}

.poll-form.has-voted .poll-option small,
.poll-form.has-voted .poll-bar {
    grid-column: 1;
}

.poll-bar {
    grid-column: 2;
    display: block;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #eef3f5;
}

.poll-bar span {
    display: block;
    height: 100%;
    min-width: 2px;
    border-radius: inherit;
    background: #00acc1;
}

.poll-total,
.poll-voted {
    margin: 10px 0 0;
    opacity: .8;
}

.poll-admin,
.poll-admin-tools {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.poll-admin label {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
    font-weight: bold;
}

.poll-admin input {
    padding: 8px;
}

.poll-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.poll-feedback {
    padding: 10px;
    margin-bottom: 12px;
}
