/* encuesta.css */
.encuesta-container {
    background: #ffffff;
    border: 2pt solid #6B7C85; /* Oxford Gray */
    padding: 25px;
    border-radius: 12px;
    font-family: "Segoe UI", Arial, sans-serif;
    max-width: 600px;
    margin: 30px auto;
    box-sizing: border-box;
}

.opcion {
    margin-bottom: 24px;
}

/* Estilo del label */
.opcion label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f0f4f7;
    border-radius: 8px;
    font-size: 16px;
}

/* Radio button */
.opcion label input[type="radio"] {
    flex: 0 0 auto;
}

/* Logo del partido */
.opcion label img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

/* Nombre del candidato */
.opcion label strong {
    flex: 1 1 auto;
    color: #333;
}

/* Nombre del partido */
.opcion label .partido {
    font-style: normal;
    margin-left: 8px;
    color: #555;
}

/* Contenedor de la barra de porcentaje */
.opcion .barra-container {
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 8px;
}

/* Barra de porcentaje (inicia en 0 y luego se anima) */
.opcion .barra {
    display: block;
    height: 12px;
    width: 0%;
    border-radius: 6px;
    transition: width 0.7s ease;
}

/* Texto del porcentaje */
.opcion .porcentaje {
    display: block;
    text-align: right;
    font-weight: bold;
    margin-top: 6px;
    color: #333;
}

/* Botón de votar */
button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 16px;
}

button[type="submit"]:hover {
    background: #005f8d;
}
