/* ===========================
   Poll wrapper
=========================== */
.eqp-poll {
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin: 24px 0;
}

.eqp-question {
    font-size: 16px;
    font-weight: 700;
    color: #1C2B4A;
    margin-bottom: 16px;
}

/* ===========================
   Single / Multiple
=========================== */
.eqp-choice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #1C2B4A;
    transition: background 0.2s;
}

.eqp-choice:hover {
    background: #F5F5F0;
}

.eqp-choice input {
    accent-color: #F5A623;
}

/* ===========================
   Ranking
=========================== */
.eqp-ranking-hint {
    font-size: 12px;
    color: #888888;
    margin-bottom: 12px;
}

.eqp-ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #1C2B4A;
    transition: background 0.2s;
}

.eqp-ranking-item:hover {
    background: #F5F5F0;
}

.eqp-ranking-item.eqp-ranked {
    background: #FFF8ED;
    border-color: #F5A623;
}

.eqp-rank-badge {
    background: #F5A623;
    color: #1C2B4A;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.eqp-ranking-item:not(.eqp-ranked) .eqp-rank-badge {
    background: #E8EDF5;
    color: #888888;
}

/* ===========================
   Submit button
=========================== */
.eqp-submit {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: #1C2B4A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.eqp-submit:hover {
    background: #F5A623;
    color: #1C2B4A;
}

/* ===========================
   Results
=========================== */
.eqp-results {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.eqp-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 4px;
    font-size: 13px;
}

.eqp-result-label {
    color: #1C2B4A;
}

.eqp-result-percent {
    font-weight: 700;
    color: #1C2B4A;
}

.eqp-total {
    font-size: 12px;
    color: #888888;
    text-align: right;
    margin: 0;
}

/* ===========================
   Voted message
=========================== */
.eqp-voted-message {
    font-size: 14px;
    color: #1C2B4A;
    margin-bottom: 12px;
}

.eqp-result-link {
    display: inline-block;
    padding: 10px 20px;
    background: #1C2B4A;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.eqp-result-link:hover {
    background: #F5A623;
    color: #1C2B4A;
}