
.simple-poll {
    border: 1px solid #ccc;
    padding: 12px;
    max-width: 420px;
    font-family: sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}
.poll-question {
    font-weight: bold;
    margin-bottom: 10px;
}
.poll-option {
    margin: 6px 0;
}
.poll-buttons button {
    margin-right: 10px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
}
.poll-buttons .yes {
    background-color: #4CAF50;
    color: white;
}
.poll-buttons .no {
    background-color: #F44336;
    color: white;
}
.poll-message {
    margin-top: 12px;
    font-style: italic;
}
