.company-poll-wrapper {
    max-width: 760px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.company-poll-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-poll-subtitle {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1f3c68;
}

.company-poll-subtitle strong {
    font-weight: 700;
    color: #1f3c68;
}

.company-poll-success {
    background: #dff0e3;
    color: #2e6b3c;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
}

.company-poll-choice {
    margin-bottom: 28px;
}

.company-poll-choice-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.company-poll-bar-bg {
    width: 100%;
    height: 18px;
    background: #e6e6e6;
    border-radius: 20px;
    overflow: hidden;
}

.company-poll-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #2f6fa3, #3d8ec9);
    transition: width 1.2s ease;
}

.company-poll-total {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    font-size: 15px;
}

/* ==============================
   PAGE DE VOTE
============================== */

.company-poll-form-wrapper {
    max-width: 760px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.company-poll-option {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.company-poll-option:hover {
    background: #f8f9fb;
}

.company-poll-option input[type="radio"] {
    margin-right: 20px;
    transform: scale(1.2);
}

.company-poll-image {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 25px;
}

.company-poll-label {
    font-size: 18px;
    font-weight: 500;
}

.company-poll-rgpd {
    background: #e8eef5;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 14px;
    border-left: 4px solid #2f6fa3;
}

.company-poll-submit {
    width: 100%;
    background: #2f6fa3;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.company-poll-submit:hover {
    background: #255c87;
}
