/* ==========================================================================
   1. SONGTEXT & LYRICS
   ========================================================================== */
.meute-lyric-container {
    text-align: center;
    margin: 40px auto;
    width: 90%;
}

.meute-lyric-box {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto;
    column-gap: 50px;
    column-width: 300px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.meute-lyric-box h2 {
    column-span: all;
    font-family: edoSz, arial, sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.meute-lyric-block {
    break-inside: avoid-column;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.meute-lyric-refrain {
    font-weight: bold;
    color: #000;
}

/* ==========================================================================
   2. TOAST BENACHRICHTIGUNGEN (AJAX FEEDBACK)
   ========================================================================== */
#meute-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); /* Zentriert auf Mobile */
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    display: none; /* Wird via JS auf 'block' gesetzt */
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: sans-serif;
    font-size: 14px;
    min-width: 200px;
    text-align: center;
    transition: opacity 0.4s ease;
}

.toast-success { border-left: 6px solid #28a745; }
.toast-error { border-left: 6px solid #dc3545; }

/* ==========================================================================
   3. DISKOGRAFIE & ALBEN (EFFEKTE)
   ========================================================================== */
.meute-song-albums img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meute-song-albums a:hover img {
    transform: scale(1.05); /* Leichtes Vergrößern beim Drüberfahren */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ==========================================================================
   4. RESPONSIVE ANPASSUNGEN
   ========================================================================== */
@media (max-width: 768px) {
    .meute-lyric-container {
        width: 100%;
    }
    .meute-lyric-box {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 20px 10px;
    }
}

@media (min-width: 769px) {
    #meute-toast {
        left: auto;
        right: 20px;
        transform: none; /* Rechts unten am Desktop */
        text-align: left;
    }
}

/* Steckbrief Layout */
.meute-steckbrief-container {
    position: relative;
    margin-bottom: 30px;
}

.meute-banner {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.meute-profil-bild-wrap {
    background-color: white;
    position: absolute;
    top: 80%;
    left: 10%;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.meute-profil-bild {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation Buttons (Unsichtbare Flächen über den Seiten) */
.meute-nav-link {
    position: absolute;
    top: 0;
    height: 100%;
    width: 10%;
    z-index: 10;
}
.meute-nav-prev { left: 0; }
.meute-nav-next { right: 0; }

/* Tabelle Styling */
.streckbriefTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px; /* Platz für das überstehende Profilbild */
}

.streckbriefTable td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.streckbriefTable td:first-child {
    font-weight: bold;
    width: 40%;
    color: #555;
}

@media (max-width: 768px) {
    .meute-profil-bild-wrap {
        position: static;
        margin: 0 auto 20px auto;
    }
    .streckbriefTable {
        margin-top: 20px;
    }
}