/* ==================== Generic Stats Table ==================== */

.statsTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 10px;
}

.statsTable th,
.statsTable td {
    padding: 8px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.statsTable thead th {
    padding: 10px 6px;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.statsTable th:first-child,
.statsTable td:first-child {
    text-align: left;
}

.statsTable th:not(:first-child),
.statsTable td:not(:first-child) {
    text-align: right;
}

.statsTable tr:hover {
    background: rgba(255,255,255,0.04);
}

.statsCategory {
    font-weight: 500;
    color: #ffffff;
}

.statsTable--compact th,
.statsTable--compact td {
    padding: 5px 6px;
    font-size: 12px;
}

.thLine--center {
    background: rgba(255, 215, 0, 0.08);
    font-weight: 600;
}

/* ==================== Scrollable Table Wrapper ==================== */

.scrollableTable {
    max-height: 235px;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scrollableTable .statsTable thead th {
    position: sticky;
    top: 0;
}

/* ==================== Predictions Table ==================== */

.predictionsTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

.predictionsTable th,
.predictionsTable td {
    padding: 8px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.predictionsTable th:not(:first-child),
.predictionsTable td:not(:first-child) {
    min-width: 120px;
}

.predictionsTable td:first-child,
.predictionsTable th:first-child {
    width: 100px;
    text-align: left;
    padding-left: 0;
    color: rgba(180, 190, 255, 0.7);
}

.predictionsTable th {
    font-size: 11px;
    color: rgba(180, 190, 255, 0.6);
    white-space: nowrap;
}
