.table-wrapper {
    margin: 50px;
    display: flex;
    flex-direction: column;
}

.highscore {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
}

.content-table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.9em;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.content-table thead tr {
    background-color: #a5d6a7;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #a5d6a7;
}

.first-row {
    font-weight: bold;
    color: #c7a4ff;
}

@media (max-width: 525px) {
    th:nth-child(4) {
        display: none;
    }
    td:nth-child(4) {
        display:none;
    }
}
