.scoreboard-container {
  padding: 10px;
  border-radius: 5px;
}

.scoreboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: grey; /* Grau für Zeile 1 */
  padding: 5px; /* Höhe reduziert */
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 2px; /* 2px Abstand zwischen Zeile 1 und Zeile 2 */
}

.scoreboard-player {
  font-size: 1.2em;
  color: white;
}

.scoreboard-score {
  text-align: center;
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.scoreboard-info {
  text-align: center;
  background-color: lightgrey; /* Hellgrau für Zeile 2 */
  padding: 5px; /* Höhe reduziert */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 2px; /* Abstand zwischen Zeile 2 und Zeile 3 */
  font-size: 1em;
}

.scoreboard-liga-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px; /* Höhe des Containers */
  background-color: transparent; /* Hintergrund transparent */
  padding-top: 2px; /* Abstand zwischen Zeile 2 und Zeile 3 */
  position: relative;
  top: -9px; /* Zeile 3 näher an Zeile 2 rücken */
}

.scoreboard-liga {
  width: 30%;
  background-color: black;
  color: white;
  padding: 5px 0;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%); /* Trapezform oben breiter, unten schmaler */
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
