body .chart {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body .bar {
    margin-bottom: 30px;
}

body .bar label {
    margin-bottom: 10px;
    display: block;
    font-weight: normal;
    color: #000;
}

body .bar input[type="radio"] {
    margin-right: 10px;
}

body .bar .bar-fill {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0; /* Gris de fondo */
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

body .bar .bar-fill::before {
    content: "";
    display: block;
    height: 100%;
    width: var(--progress, 0%);
    background-color: #6200ee; /* Color violeta */
    transition: width 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

body .vote-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6200ee;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

body .vote-button:hover {
    background-color: #4b00b8;
}