.poll-card {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    background-color: #fff;
    margin-bottom: 20px;
}

.poll-question {
    font-size: 1.25rem;
    font-weight: bold;
}

.poll-option {
    cursor: pointer;
    transition: background-color 0.3s;
}

.poll-option.active {
    background-color: #e9f7ff;
    border-color: #0d6efd;
}

.poll-radio {
    cursor: pointer;
}

.progress-bar {
    transition: width 0.3s ease;
}
