body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Header */
header {
  background-color: #0b3d2e;
  color: white;
  padding: 15px;
  text-align: center;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Sektioner */
section {
  padding: 40px;
  max-width: 900px;
  margin: auto;
  background: white;
  margin-top: 20px;
  border-radius: 10px;
}

/* Spelare */
.player {
  background: #e8f5e9;
  padding: 15px;
  margin: 10px 0;
  border-left: 5px solid #0b3d2e;
  border-radius: 5px;
}

/* Matcher */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: #f0f0f0;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #0b3d2e;
  color: white;
  margin-top: 20px;
}

/* Mobilanpassning */
@media (max-width: 600px) {
  section {
    padding: 20px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }
}
.player {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #e8f5e9;
  padding: 15px;
  margin: 10px 0;
  border-left: 5px solid #0b3d2e;
  border-radius: 5px;
}

.player img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #0b3d2e;
}