/* KKJP – živé tabulky soutěží 1.0.10
   Vše je omezené na .kkjp-live-table, aby modul nerozhazoval zbytek webu. */

.kkjp-live-table {
    width: 100%;
    color: #0b3158;
}

.kkjp-live-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.kkjp-live-table__table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    table-layout: auto;
    background: #fff;
    color: #0b3158;
    font-size: 14px;
}

.kkjp-live-table__table thead th {
    padding: 10px 12px;
    background: #f2f6fa;
    color: #0b3158;
    border-bottom: 1px solid #d7e0e8;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.kkjp-live-table__table thead th:first-child,
.kkjp-live-table__table thead th:nth-child(2) {
    text-align: left;
}

.kkjp-live-table__row th,
.kkjp-live-table__row td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8ee;
    vertical-align: middle;
    background: #fff;
}

.kkjp-live-table__row:last-child th,
.kkjp-live-table__row:last-child td {
    border-bottom: 0;
}

.kkjp-live-table__row:hover th,
.kkjp-live-table__row:hover td {
    background: #f8fafc;
}

.kkjp-live-table__team {
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.kkjp-live-table__team a {
    color: #0b3158;
    text-decoration: none;
}

.kkjp-live-table__team a:hover {
    color: #ed1c24;
    text-decoration: underline;
}

.kkjp-live-table__competition {
    color: #314d69;
    text-align: left;
    white-space: nowrap;
}

.kkjp-live-table__position,
.kkjp-live-table__num,
.kkjp-live-table__score,
.kkjp-live-table__points {
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.kkjp-live-table__position,
.kkjp-live-table__points {
    font-weight: 800;
}

.kkjp-live-table__note {
    margin: 8px 0 0;
    padding: 8px 10px;
    border-radius: 6px;
    background: #f5f7f9;
    color: #65717c;
    font-size: 12px;
    line-height: 1.4;
}

.kkjp-live-table__debug {
    margin-top: 10px;
    padding: 10px;
    border: 1px dashed #9aa6b2;
    border-radius: 6px;
    background: #fbfcfd;
    color: #3c4650;
    font-size: 12px;
    line-height: 1.4;
}

.kkjp-live-table__debug-row {
    margin-bottom: 10px;
}

.kkjp-live-table__debug-row:last-child {
    margin-bottom: 0;
}

.kkjp-live-table__debug-pre {
    max-height: 220px;
    margin: 4px 0 0;
    padding: 7px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    border: 1px solid #d8dee5;
    border-radius: 4px;
    background: #fff;
}

@media (max-width: 760px) {
    .kkjp-live-table__table {
        min-width: 650px;
        font-size: 13px;
    }

    .kkjp-live-table__table thead th,
    .kkjp-live-table__row th,
    .kkjp-live-table__row td {
        padding: 9px 8px;
    }
}

/* 1.0.13 – přesné zarovnání tabulky
   Tým + Soutěž vlevo, všechny hodnotové sloupce od Pozice dál na střed. */
.kkjp-live-table__table thead th:nth-child(n+3),
.kkjp-live-table__table tbody td:nth-child(n+3) {
    text-align: center !important;
}

.kkjp-live-table__table thead th:nth-child(-n+2),
.kkjp-live-table__table tbody th:first-child,
.kkjp-live-table__table tbody td:nth-child(2) {
    text-align: left !important;
}

