<style>
    /* Styling für die Tabelle und den Player */
    #songdaten {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #song {
      margin-bottom: 50px;
    }

    #player {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .control-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .control-buttons button {
      color: white;
      background-color: green;
      border: none;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 12px;
      cursor: pointer;
    }

    #volumeSlider {
      width: 80%;
    }

    /* Styling für die Tabelle */
    table {
      width: 120px; /* Breite der Tabelle auf 75px setzen */
      border: 1px solid blue; /* Ränder der Tabelle blau */
    }

    th, td {
      padding: 8px;
      text-align: left;
    }

    th {
      border-bottom: 1px solid blue;
    }

    td {
      border-bottom: 1px solid #ddd;
    }
  </style>