#player-header {
    display: flex;
    align-items: center;
    background-image: linear-gradient(to left, #46adbd, #268cd5);
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    height: 300px;
    width: 100%;
    margin-top: -150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -100px;
}

#username {
    color: white;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    padding-bottom: 50px;
}

#player-header-separator {
    background-color: white;
    height: 2px;
    width: 250px;
}

#tournament-history-text-container {
    margin-left: 75px;
}

#statistics-cards {
    display: flex;
    flex-direction: row;
    gap: 25px;
    height: 200px;
    justify-content: center;
    margin-left: auto;
    margin-top: -125px;
    margin-right: auto;
    width: 50%;

}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
    justify-content: center;
    width: 300px;
}

.stat-card h2 {
    color: black;
    font-size: 42px;
    font-weight: 900;
    margin-top: 0;
    text-align: center;
}

.stat-card h3 {
    color: black;
    font-size: 1.286rem;
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 60%;
    margin-top: -125px;
    margin-left: 75px;
}

thead {
    background-color: black;
    color: white;
    height: 25px;
}

th {
    padding: 4px 8px;
}

td {
    background-color: white;
    border: 1px solid #eee;
    text-align: center;
    padding: 5px 0px;
}

tr a {
    text-decoration: none;
    color: #268cd5;
    transition: 0.1s ease-in;
}

tr a:hover {
    text-decoration: underline;
    color: #46adbd;
}

#date-head {
    width: 10%;
}

#placement-head {
    width: 5%;
}

#tournament-name-head {
    width: 60%;
}

#gamemode-head {
    width: 10%;
}

.first-place {
    background-color: #CCAB00;
    border: none;
    color: white;
    font-weight: bold;
}

.second-place {
    background-color: #557177;
    border: none;
    color: white;
    font-weight: bold;
}

.third-place {
    background-color: #CD7F32; 
    border: none;
    color: white;
    font-weight: bold;
}

.stat-rank {
    color: #555;
    text-transform: uppercase;
    margin-top: -10px;
}