/* Кнопка голосования — современный вид */
.wp-polls input[type="button"], 
.wp-polls .Buttons {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.wp-polls input[type="button"]:hover {
    background: #005177;
    transform: translateY(-2px);
}

/* Прогресс-бары */
.pollbar {
    height: 18px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Список вариантов */
.wp-polls-ul {
    list-style: none;
    padding: 0;
}

.wp-polls-ul li {
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.wp-polls-ul li:hover {
    background: #f8f9fa;
}

/* Разные цвета для каждого бара (пример) */
.wp-polls-ul li:nth-child(1) .pollbar { background: #e74c3c; }
.wp-polls-ul li:nth-child(2) .pollbar { background: #3498db; }
.wp-polls-ul li:nth-child(3) .pollbar { background: #2ecc71; }
/* и т.д. */



