.poll-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
}
.poll-carousel::-webkit-scrollbar {
    width: 6px;
}
.poll-carousel::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}
.poll-carousel::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.poll-item {
    flex: 0 0 140px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.poll-item img {
    max-width: 100px;
    margin-bottom: 10px;
}
.poll-item h3 {
    font-size: 18px;
    margin: 10px 0;
}
.vote-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.vote-button:hover {
    background: #005177;
}
