/* City Poll Widget Styles */
.city-poll-widget .widget-title{
    font-size:0.95rem;font-weight:700;padding:14px 16px;
    border-bottom:2px solid #ea580c;display:flex;align-items:center;gap:8px;
}
.city-poll-body{padding:16px}

.city-poll-question{
    font-size:14px;font-weight:600;margin-bottom:14px;line-height:1.5;color:#1e293b;
}

.city-poll-form{display:flex;flex-direction:column;gap:0}

.city-poll-option{margin-bottom:0}
.city-poll-option label{
    display:flex;align-items:center;gap:8px;
    padding:10px 12px;border:1px solid #e2e8f0;border-radius:6px;
    font-size:14px;cursor:pointer;transition:all 0.2s ease;
    margin-bottom:6px;background:#fff;
}
.city-poll-option label:hover{border-color:#2563eb;background:#eff6ff}
.city-poll-option input[type="radio"]{accent-color:#2563eb;flex-shrink:0}

.city-poll-btn{
    display:block;width:100%;padding:12px;
    background:#2563eb;color:#fff;border:none;border-radius:6px;
    font-size:14px;font-weight:600;cursor:pointer;
    margin-top:8px;transition:background 0.2s ease;
}
.city-poll-btn:hover{background:#1d4ed8}
.city-poll-btn:disabled{background:#94a3b8;cursor:not-allowed}

.city-poll-message{
    margin-top:10px;padding:10px 14px;border-radius:6px;font-size:13px;
}
.city-poll-message.success{background:#f0fdf4;color:#16a34a;border:1px solid #bbf7d0}
.city-poll-message.error{background:#fef2f2;color:#dc2626;border:1px solid #fecaca}

/* Results */
.city-poll-results{display:flex;flex-direction:column;gap:10px}
.city-poll-result{}
.city-poll-result-label{
    display:flex;justify-content:space-between;align-items:center;
    font-size:13px;margin-bottom:4px;color:#475569;
}
.city-poll-result-count{font-weight:600;color:#1e293b}
.city-poll-bar{
    height:8px;background:#e2e8f0;border-radius:4px;overflow:hidden;
}
.city-poll-bar-fill{
    height:100%;background:linear-gradient(90deg,#2563eb,#3b82f6);
    border-radius:4px;transition:width 0.6s ease;
}
.city-poll-total{
    font-size:12px;color:#94a3b8;margin-top:8px;
    padding-top:8px;border-top:1px solid #e2e8f0;
}

/* Animation */
@keyframes pollFadeIn{
    from{opacity:0;transform:translateY(8px)}
    to{opacity:1;transform:translateY(0)}
}
.city-poll-results{animation:pollFadeIn 0.3s ease}
