:root {
    color: #172033;
    background: #f4f6fa;
    font-family: "PT Sans", Arial, sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
}

.non-thematic {
    width: min(1200px, calc(100% - 28px));
    margin: 0 auto;
    padding: 32px 0 56px;
}

.non-thematic__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
}

.non-thematic__nav a {
    color: #3157a4;
    text-decoration: none;
}

.non-thematic__nav a:hover {
    text-decoration: underline;
}

.non-thematic__header {
    margin: 34px 0 24px;
}

.non-thematic__header p {
    margin: 0 0 8px;
    color: #63708a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.non-thematic__header h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.08;
}

.non-thematic__table-wrap {
    overflow-x: auto;
    border: 1px solid #d9dfeb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgb(29 45 80 / 8%);
}

.non-thematic-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
}

.non-thematic-table th,
.non-thematic-table td {
    padding: 9px 12px;
    border-right: 1px solid #e2e6ef;
    border-bottom: 1px solid #e2e6ef;
    text-align: center;
    white-space: nowrap;
}

.non-thematic-table th:last-child,
.non-thematic-table td:last-child {
    border-right: 0;
}

.non-thematic-table tbody tr:last-child td {
    border-bottom: 0;
}

.non-thematic-table thead th {
    background: #e9eef8;
    color: #26344f;
    font-weight: 700;
}

.non-thematic-table thead tr:first-child th {
    border-bottom-color: #cbd4e4;
}

.non-thematic-table tbody tr:nth-child(even) td {
    background: #f8f9fc;
}

.non-thematic-table .participant-column {
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 230px;
    text-align: left;
    background: #fff;
}

.non-thematic-table thead .participant-column {
    z-index: 2;
    background: #e9eef8;
}

.non-thematic-table tbody tr:nth-child(even) .participant-column {
    background: #f8f9fc;
}

.non-thematic-table .rank {
    color: #61708a;
    font-weight: 700;
}

.non-thematic-table .tour-grade,
.non-thematic-table .total-grade {
    background: #fff7d6;
    font-weight: 700;
}

.non-thematic-table tbody tr:nth-child(even) .tour-grade,
.non-thematic-table tbody tr:nth-child(even) .total-grade {
    background: #f8efca;
}

.non-thematic__empty {
    padding: 28px;
    border: 1px solid #d9dfeb;
    border-radius: 14px;
    background: #fff;
    color: #526078;
    font-size: 18px;
}

@media (max-width: 620px) {
    .non-thematic {
        width: min(100% - 16px, 1200px);
        padding-top: 22px;
    }

    .non-thematic__header {
        margin-top: 26px;
    }

    .non-thematic-table th,
    .non-thematic-table td {
        padding: 8px 10px;
    }
}
