html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Verhindert Scrollbalken */
    background-color: #000; /* Hintergrundfarbe für leere Bereiche (wichtig für object-fit: contain) */
}

.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#collage-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Wichtigste Änderung für Hochformat: */
    object-fit: contain; /* Zeigt das ganze Bild, passt es an die Breite/Höhe an, kann Ränder lassen */
    z-index: 1;
}


.audio-player-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8);
    /* Einzelne Padding-Eigenschaften setzen */
    padding-top: 8px; 
    padding-bottom: 8px;
    padding-left: 15px; /* Falls du links/rechts Padding beibehalten möchtest */
    padding-right: 15px; /* Falls du links/rechts Padding beibehalten möchtest */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 85%; 
    max-width: 350px; 
    box-sizing: border-box; 
}
#audio-player {
    width: 100%; /* Füllt die Breite des .audio-player-container */
}

