body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Listen-Seite */
.impressum-list {
    list-style-type: none;
    padding: 0;
}

.impressum-list li {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.impressum-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.impressum-list a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 15px;
    position: relative;
}

.group-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

/* Detail-Seite */
.impressum-group-notice {
    background-color: #e8f4f8;
    color: #2980b9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.impressum-details, .fixed-texts {
    margin-bottom: 30px;
}

.text-section h2 {
    margin-top: 25px;
}

.add-button, .back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-button:hover, .back-button:hover {
    background-color: #27ae60;
}

/* --- Neue Styles für Logos und Hintergründe --- */

.logo-header {
    text-align: center; /* Logo zentrieren */
    margin-bottom: 30px;
}

.logo-header img {
    max-width: 200px; /* Maximale Breite für Logos */
    height: auto;
    border-radius: 5px; /* Optional: leicht abgerundete Ecken */
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: leichter Schatten */
}

/* Hintergrund für Philipp Lindner Gruppe */
.philipp-lindner-media-and-network-group-background {
    background-image: url('images/Gemini_Generated_Image_xrb16sxrb16sxrb1.png'); /* Pfad zu deinem Hintergrundbild */
    background-size: cover; /* Bild den ganzen Bereich abdecken lassen */
    background-attachment: fixed; /* Hintergrund beim Scrollen fixieren */
    background-position: center center;
}

/* Hintergrund für AnimeChen.de Gruppe */
.animechen-de-media-and-network-group-background {
    background-image: url('images/Gemini_Generated_Image_xrb16rxrb16rxrb1.png'); /* Pfad zu deinem Hintergrundbild */
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

/* Optional: Anpassung des Containers für bessere Lesbarkeit auf Hintergründen */
.container {
    /* ... (bestehende Styles) ... */
    background-color: rgba(255, 255, 255, 0.9); /* Leicht transparenter Hintergrund, damit der Body-Hintergrund durchschimmert */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Etwas stärkerer Schatten für Kontrast */
}

