.table {
    border-collapse: collapse;
}

.custom-table {
    width: 100%;
    text-align: center;
    font-size: 1.2em;
}

@media screen and (max-width: 720px) {
    .custom-table {
        font-size: 0.8em;
    }
}

.custom-table thead tr,
.custom-table thead th {
    border-top: none;
    /* border-bottom: none !important; */
    color: #fff;
    padding: 3px;
    border-bottom: 2px solid white;
}

.custom-table tbody th,
.custom-table tbody td {
    color: #fff;
    font-weight: 400;
    padding-bottom: 20px;
    padding-top: 20px;
    font-weight: 300;
}
.custom-table tbody th small,
.custom-table tbody td small {
    color: #b3b3b3;
    font-weight: 300;
}
.custom-table tbody tr {
    border-radius: 7px;
    overflow: hidden;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    border-bottom: 3px solid #19191d;
}

.custom-table tbody tr th,
.custom-table tbody tr td {
    background: #25252b;
    border: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.custom-table tbody tr th a,
.custom-table tbody tr td a {
    color: #b3b3b3;
}
.custom-table tbody tr th:first-child,
.custom-table tbody tr td:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.custom-table tbody tr th:last-child,
.custom-table tbody tr td:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.custom-table tbody tr.spacer td {
    padding: 0 !important;
    height: 3px;
    border-radius: 0 !important;
    background: transparent !important;
}

#game-history-page th:nth-child(1),
td:nth-child(1) {
    width: 40%;
}

.custom-table th:nth-child(2),
td:nth-child(2) {
    width: 15%;
}

.custom-table th:nth-child(3),
td:nth-child(3) {
    width: 15%;
}

.custom-table th:nth-child(4),
td:nth-child(4) {
    width: 30%;
}

.custom-table-content {
    /* overflow-y: auto; */
    margin-bottom: 10vh;
}

.table-sticky-header {
    flex: 0 0 auto;
    position: sticky;
    top: 0;
    padding-top: 15px;
    background-color: #19191d;
}

.table-title-header {
    width: 100%;
    text-align: center;
}

.table-title-header h1 {
    margin: 5px;
}
