.player-list {
    font-family: Arial, sans-serif;
    width: 100%;
    margin-top: 70px;
    padding: 10px;
}

.player-header,
.player-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.player-header {
    font-weight: bold;
    color: #542C6B;
    background-color: #f9f9f9;
}

.player-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.player-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.flag {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.player-col.player {
    min-width: 150px;
}

.player-col.position {
    min-width: 120px;
}

.player-col.nationality {
    min-width: 150px;
}

@media screen and (max-width: 600px) {

    .player-header,
    .player-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .player-col {
        margin-bottom: 10px;
    }
}