body {
    font-family: 'Inter', helvetica, arial, 'sans-serif' !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    overflow: hidden;
}
.poll-widget {
    background: white;
    max-width: 400px;
    margin: auto;
    padding: 5px 5px;
    text-align: left;
}
h3 { color: #333; margin-bottom: 15px; }
.poll-option {
    display: block;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}
.poll-option:hover { background: #ddd; }
.poll-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.poll-button {
    background: #dc0303; /* Match the button color in the image */
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
.poll-button:hover { background: #c80101; }
.view-results {
    color: #dc0303;
    cursor: pointer;
    text-decoration: underline;
}
.view-results:hover { color: #c80101; }
.pollResults {
    margin-top: 15px;
    display: none;
    text-align: left;
}
/* Restored progress bars */
.progress-bar-container {
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 18px; /* Thicker bars */
    margin-top: 5px;
}
.progress-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s;
}
.highest-bar {
    background: #dc0303 !important; /* 🔴 Red for highest */
}
.regular-bar {
    background: #A0A0A0 !important; /* ⚪ Gray for others */
}
.poll-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.poll-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
    font-weight: 500;
}
.poll-text {
    flex-grow: 1;
    text-align: left;
    color: #444;
    line-height: 1.6;
}
.poll-percentage {
    text-align: right;
    font-weight: bold;
}
.highest-percentage {
    color: #dc0303; /* Red for highest */
}
.regular-percentage {
    color: #444;
}
.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}