body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    font-size: 2em;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.poll-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.option-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin: 10px 0;
    padding: 10px;
    font-size: 1em;
    width: 100%;
}

button:disabled {
    background-color: #ccc;
}

.percentage {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.total-votes {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

span {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    font-weight: bold;
}
