.poll-block {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-option {
    background: #444;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.poll-option:hover {
    background: #555;
}
