/* ─── ATS Sondages — Front Styles ─────────────────────────────────────── */

.ats-sondage {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    max-width: 600px;
}

.ats-sondage-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.ats-sondage-closed {
    color: #a00;
    margin-bottom: 12px;
}

/* ─── Options (formulaire de vote) ────────────────────────────────────── */
.ats-sondage-options {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ats-sondage-option {
    margin: 0 0 8px !important;
    padding: 0 !important;
}

.ats-sondage-option label {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.95rem;
}

.ats-sondage-option label:hover {
    background: #e8f0fe;
}

.ats-sondage-option input[type="radio"] {
    margin-right: 8px;
}

.ats-sondage-submit {
    display: inline-block;
    padding: 10px 28px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s;
}

.ats-sondage-submit:hover {
    background: #1557b0;
}

.ats-sondage-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Résultats ───────────────────────────────────────────────────────── */
.ats-sondage-results {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ats-sondage-result-item {
    margin: 0 0 14px !important;
    padding: 0 !important;
}

.ats-sondage-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.ats-sondage-bar-bg {
    background: #e0e0e0;
    border-radius: 10px;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.ats-sondage-bar {
    height: 100%;
    background: linear-gradient(90deg, #1a73e8, #4a9eff);
    border-radius: 10px;
    transition: width 0.5s ease;
    min-width: 0;
}

.ats-sondage-pct {
    font-weight: bold;
    margin-left: 6px;
    font-size: 0.85rem;
}

.ats-sondage-count {
    color: #666;
    font-size: 0.8rem;
}

.ats-sondage-total {
    margin-top: 12px;
    color: #666;
    font-size: 0.85rem;
    text-align: right;
}

.ats-sondage-thanks {
    color: #1a8a1a;
    font-size: 0.85rem;
}

.ats-sondage-msg {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.ats-sondage-msg.success {
    background: #e6f4ea;
    color: #137333;
}

.ats-sondage-msg.error {
    background: #fce8e6;
    color: #a50e0e;
}