.radio-poll {
    max-width: 500px;
    margin: 20px auto;
    background: #FFCC99;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

.radio-poll h3 {
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
	font-size: 1.7em;
}

.poll-option {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.poll-option input[type="radio"] {
    margin-right: 8px;
}

.poll-option button {
    margin-top: 10px;
    padding: 6px 14px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.poll-option button:hover {
    background: #ff8533;
}

.poll-results {
    margin-top: 15px;
}

.poll-result-bar {
    margin-bottom: 8px;
}

.poll-result-bar .opt-text {
    font-size: 0.95em;
    display: block;
    margin-bottom: 2px;
}

.bar-wrapper {
    width: 100%;
    background: #e0e0e0;
    height: 14px;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}
