/* Seilschaft — spielspezifische Styles (Chrome aus ../style.css).
   Die Leiste der fünf Aufstiege ist das Wichtigste auf dem Schirm: Wer aufs
   Handy schaut, muss in einer halben Sekunde den Stand sehen, ohne zu lesen. */

.hero-seil { display: flex; justify-content: center; gap: 6px; font-size: 46px; line-height: 1; margin-bottom: 6px; }
.hero-seil span:nth-child(1) { color: #7fc4ff; transform: rotate(-6deg); }
.hero-seil span:nth-child(2) { color: var(--text); }
.hero-seil span:nth-child(3) { color: var(--red); transform: rotate(8deg); }

/* Die fünf Aufstiege */
.sl-leiste { display: flex; align-items: center; gap: 6px; margin: 8px 0 4px; flex-wrap: wrap; }
.sl-stufe {
    flex: 0 0 auto; width: 46px; padding: 6px 0; border-radius: 12px; text-align: center;
    background: var(--panel); border: 1px solid var(--panel-border);
}
.sl-stufe .z { display: block; font-size: 19px; line-height: 1.15; font-weight: 800; }
.sl-stufe .n { display: block; font-size: 11px; color: var(--muted); }
.sl-stufe.ok { border-color: rgba(58, 190, 120, .7); background: rgba(58, 190, 120, .14); }
.sl-stufe.weg { border-color: rgba(229, 72, 77, .7); background: rgba(229, 72, 77, .14); }
.sl-stufe.jetzt { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(242, 193, 78, .25); }
.sl-stand { margin-left: auto; font-size: 13px; color: var(--muted); }

.sl-kopf { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 6px 0 4px; }
.sl-phase { font-size: 17px; font-weight: 800; }
.sl-uhr { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 15px; }
.sl-uhr.knapp { color: var(--red); font-weight: 800; }

.sl-rolle {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
    background: var(--panel); border: 1px solid var(--panel-border); margin-bottom: 8px;
}
.sl-rolle[hidden] { display: none; }
.sl-rolle .icon { font-size: 30px; line-height: 1; }
.sl-rolle .name { font-weight: 800; }
.sl-rolle .was { color: var(--muted); font-size: 13px; }
.sl-rolle .mit { color: var(--red); font-size: 13px; font-weight: 700; }
.sl-rolle.sabo { border-color: rgba(229, 72, 77, .55); }

.sl-auftrag { text-align: center; font-size: 15px; font-weight: 700; min-height: 22px; margin: 4px 0 8px; }
.sl-auftrag.dran { color: var(--gold); }

.sl-leute { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; }
.sl-p {
    padding: 8px; border-radius: 12px; text-align: center; font-size: 13px;
    background: var(--panel); border: 1px solid var(--panel-border);
}
.sl-p.weg { opacity: .45; }
.sl-p.ich { border-color: rgba(79, 140, 255, .6); }
.sl-p.team { border-color: var(--gold); background: rgba(242, 193, 78, .1); }
.sl-p .nm { display: flex; align-items: center; justify-content: center; gap: 5px; font-weight: 700; }
.sl-p .rolle { color: var(--muted); font-size: 12px; min-height: 15px; }
.sl-p .marke { font-size: 12px; min-height: 16px; color: var(--gold); }
.sl-p button {
    width: 100%; min-height: 44px; margin-top: 6px; border-radius: 9px; font: inherit; font-size: 13px;
    background: rgba(255, 255, 255, .07); border: 1px solid var(--panel-border); color: var(--text); cursor: pointer;
}
.sl-p button.gewaehlt { background: rgba(242, 193, 78, .25); border-color: var(--gold); }

.sl-aktion { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 10px 0; }
.sl-aktion .btn { flex: 1 1 150px; min-height: 46px; }
.sl-warte { flex: 1 1 100%; text-align: center; color: var(--muted); font-size: 13.5px; }

.sl-log-box { margin-top: 10px; }
.sl-log { display: grid; gap: 4px; max-height: 220px; overflow-y: auto; margin-top: 6px; }
.sl-log div { font-size: 13.5px; color: var(--muted); }
.sl-log div b { color: var(--text); }

.sl-aufloesung { display: grid; gap: 5px; margin: 10px 0; }
.sl-auf { font-size: 14px; font-weight: 700; }
.sl-auf.sabo { color: var(--red); }
