.barca-poll {
    border: 2px solid #A50044;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #004D98, #A50044);
    color: #fff;
    max-width: 400px;
    margin: 20px auto;
    font-family: "GHEA Grapalat", Arial, sans-serif;
}

/* Question */
.barca-poll h3 { 
    margin-bottom: 10px; 
    font-size: 18px; 
}

/* Radio answers */
.barca-poll label { 
    display: block; 
    margin: 8px 0; 
}

/* Vote button */
.barca-poll button {
    background: gold;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    color: #000;
}
.barca-poll button:hover { 
    background: #FFD700; 
}

/* Results layout */
.barca-result {
    margin: 12px 0;
}
.barca-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 4px; /* 👈 spacing between text and bar */
}
.barca-answer {
    color: #fff;
}
.barca-percent {
    color: #FFD700;
    font-weight: bold;
}

/* Progress bar */
.barca-bar {
    background: rgba(255,255,255,0.2);
    border-radius: 9px; /* 👈 pill shaped */
    height: 18px;
    overflow: hidden;
}
.barca-fill {
    background: gold;
    height: 100%;
    border-radius: 9px; /* 👈 keep rounded */
    transition: width 0.5s;
}

/* Total votes */
.barca-total {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
    color: #FFD700;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .barca-poll { 
        width: 95%; 
        font-size: 14px; 
    }
}
