* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 0px;
}

header {
  background-color: #e83e00;
  color: white;
  padding: 10px 10px;
  text-align: center;
}

.logo {
  display:flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
.logo img{
  width:24px;
  height:24px;
}

nav {
  margin-top: 2px;
}

nav a {
  color: white;
  margin: 0 6px;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 10px;
}

.player-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.player-card {
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  width: calc(50% - 10px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.player-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.league-table th,
.league-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #eee;
  margin-top: 20px;
}