.poll-component {
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}

.poll-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.poll-submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: var(--bs-primary);
    color: white;
    border: none;
    font-weight: 600;
}

.poll-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.poll-result-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.poll-result-bar {
    background: var(--bs-secondary-bg);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.poll-result-fill {
    background: var(--bs-primary);
    height: 100%;
    transition: width 0.6s ease;
}
