/* ══════════════════════════════════════
   RANKER / MULTIPICK
   ══════════════════════════════════════ */

.ranker { margin: 14px 0; }

.ranker-hint {
    font-size: 11pt;
    color: var(--text-muted);
    font-style: italic;
    margin: 0 0 12px 0;
}

.ranker-zone {
    margin: 0 0 14px 0;
    padding: 10px 12px 12px;
    border: 1.5px dashed var(--border-soft);
    border-radius: 5px;
    background: rgba(8, 14, 28, 0.35);
}

.ranker-zone.apply-zone { border-color: var(--accent); }

.ranker-zone-title {
    margin: 0 0 8px 0;
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.apply-zone .ranker-zone-title { color: var(--accent); }

.ranker-list {
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 44px;
}

.apply-list { counter-reset: ranker; }

.ranker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    margin: 8px 0;
    border-radius: 4px;
    color: var(--text-main);
    background: rgba(8, 14, 28, 0.75);
    border: 1.5px solid var(--border-soft);
    box-shadow: 3px 3px 0 var(--shadow-hard);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    font-size: 12.5pt;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.apply-list > .ranker-item { counter-increment: ranker; }

.apply-list > .ranker-item::before {
    content: counter(ranker);
    flex-shrink: 0;
    width: 1.6em;
    height: 1.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: rgba(245, 168, 0, 0.15);
    color: var(--accent);
    font-weight: 700;
    font-size: 10pt;
    font-family: var(--font-mono);
}

.ranker-placeholder {
    list-style: none;
    margin: 8px 0;
    border-radius: 4px;
    border: 1.5px dashed var(--accent);
    background: rgba(245, 168, 0, 0.08);
}

.ranker-label { flex: 1 1 auto; }

.ranker-grip {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(2, 4px);
    grid-template-rows: repeat(3, 4px);
    gap: 3px;
    margin-left: auto;
    opacity: 0.4;
}

.ranker-grip > span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.ranker-item.dragging {
    cursor: grabbing;
    z-index: 10;
    border-color: var(--accent);
    box-shadow: 5px 5px 0 var(--shadow-hard);
    transition: none;
}

.ranker-item:active { cursor: grabbing; }

.ranker-info {
    font-size: 10pt;
    color: var(--text-muted);
    cursor: help;
    margin-left: auto;
    flex-shrink: 0;
    font-family: var(--font-mono);
    transition: color 0.15s ease;
}

.ranker-item:hover .ranker-info { color: var(--text-main); }

.multipick-confirm-btn { margin-top: 10px; }


/* ══════════════════════════════════════
   PICK UI (yes / no columns)
   ══════════════════════════════════════ */

.multipick-wrapper.pick {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 14px 0;
}

.pick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pick-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pick-col-title {
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin: 0 0 4px 0;
}

.include-col .pick-col-title { color: var(--accent); }
.exclude-col .pick-col-title { color: #a12c7b; }

.pick-col-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1.5px dashed var(--border-soft);
    border-radius: 5px;
    background: rgba(8, 14, 28, 0.35);
}

.include-col .pick-col-list {
    border-color: var(--accent);
    background: rgba(8, 14, 28, 0.35); /* same as base — no tint */
}

.exclude-col .pick-col-list {
    border-color: #a12c7b;
    background: rgba(8, 14, 28, 0.35); /* same as base — no tint */
}

.pick-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 4px;
    color: var(--text-main);
    background: rgba(8, 14, 28, 0.75);
    border: 1.5px solid var(--border-soft);
    box-shadow: 3px 3px 0 var(--shadow-hard);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    font-size: 12.5pt;
    min-height: 44px;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pick-card:hover {
    border-color: var(--accent);
    box-shadow: 5px 5px 0 var(--shadow-hard);
}

.pick-card.included {
    border-color: var(--accent);
    background: rgba(8, 14, 28, 0.75); /* same as base — no fill */
}

.pick-card.excluded {
    border-color: #a12c7b;
    background: rgba(8, 14, 28, 0.75); /* same as base — no fill */
    opacity: 0.75;
}

.pick-card-label {
    flex: 1;
    color: var(--text-main);
    font-size: 12.5pt;
}

.pick-card-info {
    font-size: 10pt;
    color: var(--text-muted);
    cursor: help;
    flex-shrink: 0;
    font-family: var(--font-mono);
    transition: color 0.15s ease;
}

.pick-card:hover .pick-card-info { color: var(--text-main); }


/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */

@media (max-width: 600px) {
    .pick-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pick confirmation ───────────────────────────────────── */

.pick-confirmation {
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pick-confirmation-heading {
    font-size: 12pt;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.pick-confirmation-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.pick-confirmation-label {
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-right: 4px;
    flex-shrink: 0;
}

.pick-confirmation-included .pick-confirmation-label {
    color: var(--accent);
}

.pick-confirmation-excluded .pick-confirmation-label {
    color: #a12c7b;
}

.pick-confirmation-tag {
    font-size: 10.5pt;
    padding: 2px 10px;
    border-radius: 3px;
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid var(--border-soft);
    color: var(--text-main);
}

.pick-confirmation-included .pick-confirmation-tag {
    border-color: var(--accent);
    background: rgba(245, 168, 0, 0.08);
}

.pick-confirmation-excluded .pick-confirmation-tag {
    border-color: #a12c7b;
    background: rgba(161, 44, 123, 0.08);
    opacity: 0.8;
}

.pick-confirmation-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    border-radius: 3px;
    background: rgba(245, 168, 0, 0.15);
    color: var(--accent);
    font-weight: 700;
    font-size: 9pt;
    font-family: var(--font-mono);
    margin-right: 6px;
    flex-shrink: 0;
}