@import url("/assets/css/stats-member-next-tunes-visual.css?v=20260525-3");

.sessionMatchSummaryMeta {
    margin-top: 8px;
    padding-left: 2px;
}

.summaryCard--good {
    border-color: rgba(34, 197, 94, 0.22);
    background: rgba(34, 197, 94, 0.08);
}

.summaryCard--info {
    border-color: rgba(96, 165, 250, 0.22);
    background: rgba(96, 165, 250, 0.08);
}

.summaryCard--warn {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(245, 158, 11, 0.08);
}

.summaryCard--violet {
    border-color: rgba(167, 139, 250, 0.22);
    background: rgba(167, 139, 250, 0.08);
}

.matchMemberList {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.matchMemberRow {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.matchMemberName {
    font-weight: 700;
    color: var(--text);
}

.matchStatusPill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, .10);
}

.matchStatusPill--ready {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .28);
    color: #bbf7d0;
}

.matchStatusPill--near {
    background: rgba(245, 158, 11, .16);
    border-color: rgba(245, 158, 11, .30);
    color: #fde68a;
}

.matchStatusPill--missing {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .24);
    color: #fecaca;
}

.graphNodePill--good {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .28);
    color: #bbf7d0;
}

.graphNodePill--info {
    background: rgba(96, 165, 250, .14);
    border-color: rgba(96, 165, 250, .28);
    color: #bfdbfe;
}

.graphNodePill--warn {
    background: rgba(245, 158, 11, .16);
    border-color: rgba(245, 158, 11, .30);
    color: #fde68a;
}

.graphNodePill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    color: var(--text);
}

.graphNodeSection {
    margin-top: 14px;
}

.graphNodeSection h4 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #cbd5e1;
}

.graphNodeList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detailTunePill--bridge {
    background: rgba(96, 165, 250, .14);
    border-color: rgba(96, 165, 250, .28);
    color: #bfdbfe;
}

@media (max-width: 900px) {
    .summaryCards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .summaryCards {
        grid-template-columns: 1fr;
    }
}