::-webkit-scrollbar {
    width: 0.4em;
}
  
::-webkit-scrollbar-track {
    background-color: #34363d;
}

::-webkit-scrollbar-thumb {
    background-color: #dfdfdf;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a1a1a1;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'sf-pro-display';
    margin: 0;
    margin-bottom: 10em;

    --blue: #386dff;
    --border-color: #cfcfcf;
}

.card {
    padding: 1em;
    background-color: #ffffff;
    border-radius: 1em;
    border: 1px solid var(--border-color);
}

.link {
    text-decoration: none;
    color: #000000;
}

.link:hover {
    text-decoration: underline;
}


nav {
    display: flex;
    padding: 1em 2em;
    border-bottom: 1px solid var(--border-color);
}

.paths {
    margin: 0 auto;
    display: flex;
    gap: 2em;
}

nav a {
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    transition: .15s;
}

nav a:hover {
    color: var(--blue);
}

main {
    width: 1200px;
    margin: 0 auto;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.player-profile {
    display: flex;
    flex-direction: column;
}

.player-profile .item {
    padding: 0.4em 0.4em 0.1em 0.4em;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.player-profile .item:hover {
    background-color: #ebebeb;
}

/*---------------------- Table ----------------------*/

.table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--card-color);
    border-radius: .5em 0.5em 0 0;
}

.table1 {
    font-size: .95em;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.table1 thead {
    border-bottom: 1px solid #bebebe;
}

.table1 th {
    vertical-align: middle;
    padding: .75em;
}

.table1 td {
    padding: .6em;
}

.table1 a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: .9em;
}

.table1 a:hover {
    text-decoration: underline;
    color: var(--blue);
}

.table1 tbody tr:nth-child(even) {
    background-color: #f3f3f3;
    color: #000000;
}

.chart {
    width: 100%;
    height: 600px;
}

.main-list {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.list h3 {
    text-align: center;
    margin: 0;
    padding: .5em;
    border: 1px solid var(--border-color);
}

.list .item {
    display: flex;
    justify-content: space-between;
    padding: .5em;
    border: 1px solid var(--border-color);
}