main {
    width: min(1280px, calc(100% - 2rem));
    max-width: 1280px;
}

main.league-main-competitions {
    width: 94vw;
    min-width: 80vw;
    max-width: none;
}

main.league-main-competitions > .card.league-shell {
    min-width: 80%;
}

.league-shell {
    border: 1px solid var(--theme-surface-border);
    box-shadow: 0 18px 40px var(--theme-overlay-soft);
}

.league-shell-intro {
    background:
        linear-gradient(135deg, var(--theme-surface-glass) 0%, var(--theme-surface) 100%),
        radial-gradient(circle at top right, var(--theme-focus-ring), transparent 50%);
}

.league-shell-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.league-kicker {
    margin-bottom: 0.45rem;
    color: var(--theme-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.league-lead {
    max-width: 70ch;
    margin-top: 0.65rem;
    color: var(--theme-text-subtle);
    line-height: 1.55;
}

.league-banner {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
}

.league-banner-success {
    background: var(--theme-status-green-bg);
    border-color: var(--theme-success);
    color: var(--theme-text);
}

.league-banner-error {
    background: var(--theme-warning-bg);
    border-color: var(--theme-danger);
    color: var(--theme-text);
}

.league-filter-form,
.league-field-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.league-field-grid {
    align-items: stretch;
}

.league-readonly-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-inline-size: 0;
}

.league-filter-form-schedule {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.league-field {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.league-field-grid .league-field {
    min-height: 108px;
    padding: 0.72rem;
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-alt) 100%);
    justify-content: space-between;
}

.league-field-grid .league-field input {
    width: 100%;
}

.league-field label {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--theme-text-muted);
}

.league-field select,
.league-field input {
    min-height: 46px;
    padding: 0.72rem 0.84rem;
    border: 1px solid var(--theme-border-strong);
    border-radius: 10px;
    background: var(--theme-surface);
    color: var(--theme-text);
    font: inherit;
}

.league-field select:focus,
.league-field input:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px var(--theme-focus-ring);
}

.league-field-wide {
    grid-column: span 2;
}

.league-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.league-actions-compact {
    align-items: flex-end;
}

.league-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--theme-border-strong);
    background: var(--theme-surface-muted);
    color: var(--theme-text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.league-chip-admin {
    background: var(--theme-warning-bg);
    border-color: var(--theme-warning-border);
}

.league-chip-public {
    background: var(--theme-status-blue-bg);
    border-color: var(--theme-accent);
}

.league-chip-played {
    background: var(--theme-status-green-bg);
    border-color: var(--theme-success);
}

.league-chip-pending {
    background: var(--theme-status-blue-bg);
    border-color: var(--theme-accent);
}

.league-summary-shell {
    padding-top: 1rem;
}

.league-summary-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
}

.league-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.league-summary-card,
.league-mini-stat {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--theme-border);
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-alt) 100%);
}

.league-summary-card span,
.league-mini-stat span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--theme-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.league-mini-stat span {
    min-height: 2.6em;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.league-summary-card strong,
.league-mini-stat strong {
    font-size: 1.05rem;
}

.league-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.league-column-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.league-columns-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.league-columns-top > .league-shell {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.league-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.league-table-wrap {
    overflow-x: auto;
}

.league-table thead th {
    white-space: nowrap;
}

.league-table tbody tr:nth-child(odd) {
    background: linear-gradient(90deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
}

.league-table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
}

.league-table tbody td,
.league-table tbody th {
    border-top: 1px solid var(--theme-surface-border);
}

.league-match-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.league-match-row {
    padding: 1rem;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.league-match-row:nth-child(odd) {
    background: linear-gradient(135deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
    border-color: var(--theme-list-item-odd-border);
}

.league-match-row:nth-child(even) {
    background: linear-gradient(135deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
    border-color: var(--theme-list-item-even-border);
}

.league-match-row.is-selected {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--theme-overlay-soft);
    border-color: var(--theme-accent);
}

.league-match-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    color: var(--theme-text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.league-match-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.league-team-identity,
.league-match-teams {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.league-team-identity {
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.league-match-teams {
    row-gap: 0.35rem;
}

.league-team-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 30px;
    max-height: 30px;
    border-radius: 8px;
    border: 1px solid var(--theme-border);
    background: var(--theme-surface);
    object-fit: contain;
    padding: 2px;
    flex-shrink: 0;
}

.league-team-name {
    white-space: nowrap;
    overflow-wrap: normal;
}

.league-match-main-stack {
    align-items: flex-start;
}

.league-match-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    text-align: right;
}

.league-match-meta-stack {
    flex-direction: column;
    align-items: flex-end;
}

.league-match-picker-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.league-match-picker-current {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.5rem 0.72rem;
    border: 1px solid var(--theme-border);
    border-radius: 10px;
    background: var(--theme-surface-soft);
    color: var(--theme-text-subtle);
    font-size: 0.86rem;
    line-height: 1.35;
}

.league-match-row-preview {
    margin-top: 0.75rem;
}

.league-versus {
    display: inline-block;
    margin: 0 0.45rem;
    color: var(--theme-text-muted);
    font-weight: 700;
}

.league-match-editor-head {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.league-result-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.league-system-note {
    margin: 0;
    padding: 0.72rem 0.8rem;
    border: 1px solid var(--theme-border);
    border-radius: 10px;
    background: var(--theme-surface-soft);
    color: var(--theme-text-subtle);
}

.league-set-table-wrap {
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--theme-surface);
}

.league-set-table {
    width: 100%;
    border-collapse: collapse;
}

.league-set-table th,
.league-set-table td {
    padding: 0.62rem 0.7rem;
    border-bottom: 1px solid var(--theme-border);
    text-align: center;
}

.league-set-table th {
    background: var(--theme-surface-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--theme-text-muted);
}

.league-set-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--theme-text-muted);
    width: 110px;
}

.league-set-table tbody tr:nth-child(odd) {
    background: linear-gradient(90deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
}

.league-set-table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
}

.league-set-table tbody tr:last-child td {
    border-bottom: none;
}

.league-protocol-table th,
.league-protocol-table td {
    text-align: center;
    vertical-align: middle;
}

.league-protocol-table {
    table-layout: fixed;
}

.league-protocol-table td:first-child,
.league-protocol-table th:first-child {
    width: 5.4rem;
    text-align: left;
}

.league-protocol-table th:nth-child(2),
.league-protocol-table th:nth-child(3),
.league-protocol-table td:nth-child(2),
.league-protocol-table td:nth-child(3) {
    min-width: 11.5rem;
    width: 11.5rem;
}

.league-protocol-table th:nth-child(4),
.league-protocol-table th:nth-child(5),
.league-protocol-table td:nth-child(4),
.league-protocol-table td:nth-child(5) {
    width: 4.8rem;
    text-align: center;
}

.league-protocol-table th:nth-child(6),
.league-protocol-table td:nth-child(6) {
    width: 14rem;
    text-align: center;
}

.league-protocol-table th:nth-child(7),
.league-protocol-table td:nth-child(7) {
    text-align: left;
    width: 18ch;
}

.league-protocol-table th {
    font-size: 0.76rem;
}

.league-protocol-match-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--theme-text-muted);
}

.league-protocol-match-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.34rem;
    padding: 0.16rem 0.45rem;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.league-protocol-match-type.is-single {
    background: var(--theme-surface-soft);
    color: var(--theme-text-muted);
}

.league-protocol-match-type.is-double {
    background: var(--theme-warning-bg);
    border-color: var(--theme-warning-border);
    color: var(--theme-warning-text);
}

.league-set-table tbody tr.league-protocol-row-double {
    background: linear-gradient(90deg, var(--theme-warning-bg) 0%, var(--theme-surface-alt) 100%);
}

.league-protocol-row-double td {
    border-bottom-color: var(--theme-warning-border);
}

.league-protocol-row-double td:first-child {
    box-shadow: inset 4px 0 0 var(--theme-warning-border);
}

.league-protocol-player-stack {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.league-protocol-player-stack.is-single {
    justify-content: center;
    min-height: 42px;
}

.league-protocol-points-stack {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
}

.league-protocol-set-line {
    display: grid;
    grid-template-columns: 2.7rem minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.28rem;
}

.league-protocol-set-line.is-active {
    display: grid;
}

.league-protocol-set-line.is-hidden {
    display: none;
}

.league-protocol-set-line.is-inactive {
    opacity: 0.44;
}

.league-protocol-set-label {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--theme-text-muted);
}

.league-set-select.league-protocol-point-mini {
    width: 50%;
    justify-self: center;
    min-height: 17px;
    height: 17px;
    padding: 0.02rem 0.3rem;
    border-radius: 6px;
    font-size: 0.69rem;
    line-height: 1;
}

.league-set-select.league-protocol-player-select {
    width: 100%;
    min-width: 10.5rem;
    text-align: left;
    text-align-last: left;
    padding-left: 0.6rem;
}

.league-protocol-row-double .league-set-select.league-protocol-player-select {
    min-height: 33.6px;
    padding: 0.38rem 0.5rem;
    padding-left: 0.6rem;
    border-color: var(--theme-warning-border);
    font-size: 0.79rem;
}

.league-set-select.league-protocol-player-select option {
    text-align: left;
}

.league-note-protocol {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.league-note-protocol.is-ok {
    color: var(--theme-success);
}

.league-note-protocol.is-warning {
    color: var(--theme-danger);
}

.league-note-protocol.is-muted {
    color: var(--theme-text-muted);
}

.league-submit-hint {
    margin: 0;
    max-width: 58ch;
    font-size: 0.86rem;
    line-height: 1.45;
}

.league-submit-hint.is-ok {
    color: var(--theme-success);
    font-weight: 700;
}

.league-submit-hint.is-warning {
    color: var(--theme-danger);
    font-weight: 700;
}

.league-submit-hint.is-muted {
    color: var(--theme-text-muted);
}

.league-validation-modal {
    border: none;
    padding: 0;
    border-radius: 16px;
    background: transparent;
    width: min(92vw, 560px);
}

.league-validation-modal::backdrop {
    background: rgba(0, 0, 0, 0.45);
}

.league-validation-modal-body {
    border: 1px solid var(--theme-border-strong);
    border-radius: 16px;
    background: var(--theme-surface);
    color: var(--theme-text);
    padding: 1rem 1.1rem;
    box-shadow: 0 14px 28px var(--theme-overlay-soft);
}

.league-validation-modal-body h4 {
    margin: 0 0 0.4rem;
}

.league-validation-modal-body p {
    margin: 0;
    color: var(--theme-text-subtle);
    line-height: 1.45;
}

.league-validation-modal-body .league-actions {
    margin-top: 0.8rem;
}

.league-set-select {
    width: 5.5rem;
    min-height: 42px;
    padding: 0.55rem 0.5rem;
    border: 1px solid var(--theme-border-strong);
    border-radius: 10px;
    background: var(--theme-surface);
    color: var(--theme-text);
    font: inherit;
    font-size: 0.875rem;
    text-align: center;
}

.league-set-select:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px var(--theme-focus-ring);
}

.league-set-select:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.league-set-hint {
    font-size: 0.82rem;
    color: var(--theme-text-muted);
}

.league-set-hint.is-ok {
    color: var(--theme-success);
    font-weight: 700;
}

.league-set-hint.is-warning {
    color: var(--theme-danger);
    font-weight: 700;
}

.league-set-hint.is-muted {
    color: var(--theme-text-muted);
}

.league-note {
    color: var(--theme-text-subtle);
    line-height: 1.5;
}

.league-team-stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.league-team-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--theme-border);
}

.league-team-stat-row:nth-child(odd) {
    background: linear-gradient(90deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
}

.league-team-stat-row:nth-child(even) {
    background: linear-gradient(90deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
}

.league-empty {
    color: var(--theme-text-subtle);
    line-height: 1.55;
}

.team-public-card-section,
.team-public-group-shell,
.team-public-report-shell {
    margin-bottom: 1rem;
}

.team-public-card-link {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.team-public-card-link.is-selected {
    border-color: var(--theme-accent);
    box-shadow: 0 14px 28px var(--theme-overlay-soft);
}

.team-public-inline-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.team-public-inline-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--theme-border);
    background: var(--theme-surface-soft);
    color: var(--theme-text);
    font-size: 0.78rem;
    font-weight: 700;
}

.team-public-inline-chip--group {
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-alt) 100%);
}

.team-public-inline-chip--group.is-active {
    border-color: var(--theme-accent);
    color: var(--theme-accent);
}

.team-public-group-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.team-public-group-pill {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 9.5rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-alt) 100%);
    color: var(--theme-text);
    text-decoration: none;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.team-public-group-pill:hover {
    transform: translateY(-1px);
    border-color: var(--theme-accent);
}

.team-public-group-pill.is-active {
    border-color: var(--theme-accent);
    box-shadow: 0 10px 24px var(--theme-overlay-soft);
}

.team-public-summary-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-public-report-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.team-public-report-card {
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
}

.team-public-report-card:nth-child(odd) {
    background: linear-gradient(135deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
    border-color: var(--theme-list-item-odd-border);
}

.team-public-report-card:nth-child(even) {
    background: linear-gradient(135deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
    border-color: var(--theme-list-item-even-border);
}

.team-public-report-card[open] {
    border-color: var(--theme-accent);
    box-shadow: 0 14px 28px var(--theme-overlay-soft);
}

.team-public-report-card > summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
}

.team-public-report-card > summary::-webkit-details-marker {
    display: none;
}

.team-public-report-summary {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.team-public-report-head,
.team-public-duel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.team-public-report-topline {
    margin-bottom: 0.55rem;
}

.team-public-report-teams {
    font-size: 1.02rem;
}

.team-public-report-score-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.team-public-report-score {
    font-size: 1.65rem;
    line-height: 1;
}

.team-public-kv {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: var(--theme-text-subtle);
    font-size: 0.88rem;
}

.team-public-kv strong {
    color: var(--theme-text);
}

.team-public-report-body {
    padding: 0 1.1rem 1.1rem;
    border-top: 1px solid var(--theme-surface-border);
}

.team-public-duels {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.team-public-duel-row {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--theme-border);
}

.team-public-duel-row:nth-child(odd) {
    background: linear-gradient(90deg, var(--theme-list-item-odd-bg-from), var(--theme-list-item-odd-bg-to));
    border-color: var(--theme-list-item-odd-border);
}

.team-public-duel-row:nth-child(even) {
    background: linear-gradient(90deg, var(--theme-list-item-even-bg-from), var(--theme-list-item-even-bg-to));
    border-color: var(--theme-list-item-even-border);
}

.team-public-duel-label {
    color: var(--theme-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.team-public-duel-players {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-weight: 700;
}

.team-public-point-sets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.7rem;
}

.team-public-point-sets span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.22rem 0.62rem;
    border-radius: 999px;
    border: 1px solid var(--theme-border);
    background: var(--theme-surface-soft);
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .league-filter-form-schedule {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .league-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .league-mini-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .league-columns {
        grid-template-columns: 1fr;
    }

    .team-public-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    main {
        width: min(100%, calc(100% - 1rem));
        padding: 1rem 0.5rem 2rem;
    }

    main.league-main-competitions {
        width: min(100%, calc(100% - 1rem));
        min-width: 0;
    }

    .league-shell-header,
    .league-match-main,
    .league-match-topline,
    .league-team-stat-row,
    .team-public-report-head,
    .team-public-duel-top,
    .team-public-duel-players {
        flex-direction: column;
        align-items: flex-start;
    }

    .league-filter-form,
    .league-field-grid,
    .league-summary-grid,
    .league-mini-stats,
    .team-public-summary-grid {
        grid-template-columns: 1fr;
    }

    .team-public-group-pills {
        flex-direction: column;
    }

    .team-public-group-pill {
        min-width: 0;
    }

    .team-public-report-card > summary,
    .team-public-report-body {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .league-field-wide {
        grid-column: auto;
    }

    .league-field-grid .league-field {
        min-height: auto;
    }

    .league-match-meta,
    .league-match-meta-stack {
        align-items: flex-start;
        text-align: left;
    }

    .league-set-table th,
    .league-set-table td {
        padding: 0.55rem 0.5rem;
    }

    .league-protocol-table th:nth-child(2),
    .league-protocol-table th:nth-child(3),
    .league-protocol-table td:nth-child(2),
    .league-protocol-table td:nth-child(3) {
        min-width: 9rem;
        width: 9rem;
    }

    .league-protocol-table th:nth-child(6),
    .league-protocol-table td:nth-child(6) {
        min-width: 11rem;
        width: 11rem;
    }

    .league-set-table td:first-child {
        width: auto;
    }

    .league-set-select {
        width: 4.8rem;
    }

    .league-set-select.league-protocol-point-mini {
        width: 50%;
    }
}
