
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&family=Poppins:wght@300;600&display=swap');

/* Globale Einstellungen & Dark Mode */
:root {
    --bg-color: #111111;
    --text-color: #f0f0f0;
    --primary-color: #00aaff; /* Ein leuchtendes Blau als Akzent */
    --card-bg: #1a1a1a;
    --font-main: 'Poppins', sans-serif;
    --color-area-a: #a7c7e7;
    --color-area-b: #fde6aa;
    --color-positive-weight: #2e7d32;
    --color-negative-weight: #c62828;
    --color-neuron-active: #ffeb3b;
    --color-error: #d32f2f;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

/* 1. Hero Section (Der erste Eindruck) */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(17,17,17,0.8), rgba(17,17,17,1)),
                url('https://via.placeholder.com/1920x1080.png?text=Optionales+Hintergrundbild') center center/cover no-repeat;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive Schriftgröße */
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero-Text Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}
.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s 0.5s ease-in-out forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Scroll-Down-Indikator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}
.scroll-down span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    animation: scroll 2s infinite ease-out;
}
@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}


/* 2. Hauptinhalt & Grid-Layout */
.container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. Kachel-Design ("Slick"-Effekt) */
.grid-item {
    aspect-ratio: 1 / 1; /* Macht die Kacheln quadratisch */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Das Hintergrundbild innerhalb der Kachel */
.grid-item .bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.grid-item:hover .bg-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* Der Overlay-Verlauf für die Lesbarkeit */
.grid-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

/* Der Text-Inhalt der Kachel */
.item-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    transition: transform 0.4s ease;
}

.grid-item:hover .item-content {
    transform: translateY(-10px);
}

.item-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.item-content p {
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.grid-item:hover .item-content p {
    opacity: 1;
    transform: translateY(0);
}

/* 4. Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 100px;
    border-top: 1px solid #222;
    color: #888;
}

.page-header {
    padding: 120px 20px 80px;
    text-align: center;
    /*background: linear-gradient(rgba(17,17,17,0.7), var(--bg-color) 90%);*/
    border-bottom: 1px solid #222;
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.page-header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 500px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.7);
}

/* "Zurück"-Link */
.back-link {
    display: inline-block;
    margin: -60px 0 60px 0;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
    text-decoration: underline;
}

/* Allgemeine Sektionen auf Unterseiten */
.subpage-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

.subpage-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* Design für die Kursliste */
.class-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.class-item {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.class-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.class-item h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

.class-item h3 .time {
    font-weight: 600;
    color: var(--text-color);
}

.class-item .title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.class-item .location {
    font-size: 1rem;
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* Design für die Bildergalerie (angepasst für Dark Mode) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.2); /* Leucht-Effekt in Akzentfarbe */
}

/* Call-to-Action Sektion (Instagram) */
.cta-section {
    text-align: center;
    background-color: var(--card-bg);
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 80px;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 30px auto;
    color: rgba(255,255,255,0.8);
}

/* Ein primärer Button-Stil */
.button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px; /* Abgerundete Pillenform */
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #fff;
}

a.class-item {
    text-decoration: none; /* Entfernt den Standard-Link-Unterstrich */
    color: inherit; /* Vererbt die Textfarbe, statt das Standard-Blau für Links zu nehmen */
    display: block; /* Stellt sicher, dass der Link sich wie ein Block-Element verhält */
}

/* Visueller Hinweis beim Hovern: Ein Pfeil erscheint */
.class-item {
    /* Diese Eigenschaft ist neu und wichtig, damit der Pfeil positioniert werden kann */
    position: relative; 
}

a.class-item::after {
    content: '→'; /* Ein einfacher Pfeil als Icon */
    position: absolute;
    top: 25px; /* Gleicher Abstand wie das Padding */
    right: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a.class-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.post-list {
    display: grid;
    gap: 30px;
}

.post-item {
    display: block;
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 170, 255, 0.05);
}

.post-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--text-color);
}

.post-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

.post-readmore {
    font-weight: 600;
    color: var(--primary-color);
    transition: letter-spacing 0.3s ease;
}

.post-item:hover .post-readmore {
    letter-spacing: 0.5px;
}

/* Liste für Veröffentlichungen & Notizen */
.publication-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.publication-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}
.publication-list .publication-item:first-child {
    border-top: 1px solid #222;
}

.publication-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.publication-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.publication-link {
    display: inline-block;
    flex-shrink: 0; /* Verhindert, dass der Button schrumpft */
    background-color: #333;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.publication-link:hover {
    background-color: var(--primary-color);
    color: #000;
}

.lightbox {
    display: none; /* Standardmäßig unsichtbar */
    position: fixed; /* Bleibt an Ort und Stelle, auch beim Scrollen */
    z-index: 1000; /* Liegt über allen anderen Inhalten */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Halbtransparenter schwarzer Hintergrund */
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Zeigt an, dass man auf den Hintergrund klicken kann, um zu schließen */
}

/* Der Zustand, wenn die Lightbox aktiv ist */
.lightbox.active {
    display: flex; /* Macht die Lightbox sichtbar */
    animation: fadeIn 0.3s ease;
}

/* Das vergrößerte Bild in der Lightbox */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Stellt sicher, dass das Bild komplett sichtbar ist und sein Seitenverhältnis beibehält */
    cursor: default; /* Normaler Mauszeiger über dem Bild */
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
}

/* Der Schließen-Button (das 'X') */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover {
    color: #bbb;
}

/* Um die Galeriebilder klickbar aussehen zu lassen */
.gallery-grid img {
    cursor: pointer;
}


/* Animationen für einen "slickeren" Effekt */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.layout-grid-container {
    display: grid;
    /* Hauptspalte ist ca. doppelt so breit wie die Sidebar */
    grid-template-columns: 4fr 1fr; 
    gap: 60px; /* Abstand zwischen den Spalten */
}

/* Die Hauptspalte braucht keine besonderen Stile, sie füllt einfach ihren Raum */
.main-content .subpage-section-main {
    padding-top: 0;
    padding-bottom: 0;
}
.main-content .subpage-section-main h2 {
    text-align: left; /* Überschrift linksbündig statt zentriert */
    margin-bottom: 40px;
}


/* Die Seitenleiste (Sidebar) */
.sidebar {
    position: sticky; /* WICHTIG: Macht die Sidebar "haftend" */
    top: 40px;       /* Abstand zum oberen Rand beim Scrollen */
    height: fit-content; /* Stellt sicher, dass die Höhe zum Inhalt passt */
}

/* Einzelnes Widget in der Sidebar */
.sidebar-widget {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.sidebar-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Angepasster Button für die Sidebar */
.button-primary-sidebar {
    display: block; /* Füllt die ganze Breite des Widgets */
    text-align: center;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.button-primary-sidebar:hover {
    transform: translateY(-2px);
    background-color: #fff;
}


/* Anpassungen für die Publikationsliste in der Sidebar */
.sidebar .publication-list {
    gap: 0;
}
.sidebar .publication-item {
    padding: 15px 0;
}
.sidebar .publication-item:last-child {
    border-bottom: none; /* Keine Linie unter dem letzten Element */
    padding-bottom: 0;
}
.sidebar .publication-item:first-child {
    border-top: none;
    padding-top: 0;
}

/*
 * =========================================
 *  Responsive Anpassung für Tablets & Mobile
 * =========================================
 */
@media (max-width: 1024px) {
    .layout-grid-container {
        /* Auf kleineren Bildschirmen wird aus dem Grid eine einzelne Spalte */
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sidebar {
        position: static; /* Haftende Position aufheben */
        margin-top: 80px; /* Abstand zum oberen Inhalt schaffen */
    }

    .main-content .subpage-section-main h2 {
        text-align: center; /* Überschrift wieder zentrieren */
    }
}


/*
 * =========================================
 *  Stile für den Sticky Subpage Header
 * =========================================
 */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background-color: rgba(26, 26, 26, 0.85); /* --card-bg mit Transparenz */
    backdrop-filter: blur(10px); /* Moderner "Glas"-Effekt */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
    width: 100%;
    
    /* Standardmäßig versteckt und nach oben verschoben */
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

/* Zustand, wenn der Header sichtbar ist */
.sticky-header.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-header-content h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.back-link-sticky {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.back-link-sticky:hover {
    background-color: var(--primary-color);
    color: #000;
}

.back-link {
    display: inline-block;
    margin: -60px 0 60px 0;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.4s ease, visibility 0.4s ease; /* Übergang für das Ausblenden hinzufügen */
}

.back-link:hover {
    color: white;
    text-decoration: underline;
}

/* Neue Klasse, die der Button per JS bekommt, um ihn auszublenden */
.back-link.is-hidden {
    opacity: 0;
    visibility: hidden; /* Stellt sicher, dass er nicht mehr klickbar ist */
}

.main-footer {
    background-color: #0d0d0d; /* Etwas heller als der Body für Kontrast */
    padding: 80px 20px 0;
    margin-top: 120px;
    border-top: 1px solid #222;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* Slick Form-Stil */
.slick-form .form-group {
    margin-bottom: 20px;
}

.slick-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.slick-form input,
.slick-form textarea {
    width: 100%;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 12px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.slick-form input:focus,
.slick-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

/* Gästebuch-Anzeige */
.guestbook-entries {
    margin-top: 40px;
}

.guestbook-entries h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.guestbook-entry {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
}

.guestbook-message {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
}

.guestbook-name {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    display: block;
}


/* Footer-Abschluss */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #888;
}

/* Responsive für den Footer */
@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Spalten untereinander stapeln */
    }
}

/*
======================================================
  FINALE, ANGEPASSTE STILE FÜR DAS ISSO-GÄSTEBUCH
======================================================
*/

/* * 1. Eingabefelder und Textarea
 * Wir verwenden jetzt exakt die gleichen Farben wie bei deinem .slick-form
 */
#isso-thread input[type="text"],
#isso-thread input[type="email"],
#isso-thread input[type="url"],
#isso-thread textarea {
    background-color: #222;          /* GENAU wie .slick-form input */
    color: var(--text-color);        /* Deine Haupt-Textfarbe */
    border: 1px solid #444;          /* GENAU wie .slick-form input */
    border-radius: 5px;              /* GENAU wie .slick-form input */
    padding: 12px;                   /* GENAU wie .slick-form input */
    font-family: var(--font-main);   /* Deine Haupt-Schriftart */
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Übergang hinzugefügt */
}

/* * 2. Focus-Effekt für die Eingabefelder (blauer Leuchteffekt)
 * GENAU wie bei deinem .slick-form
 */
#isso-thread input:focus,
#isso-thread textarea:focus {
    outline: none;
    border-color: var(--primary-color); /* Deine Haupt-Akzentfarbe */
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

/* * 3. Buttons: "Abschicken" UND "Vorschau"
 * Der Selektor wurde erweitert, um den Vorschau-Button zu erfassen.
 * Die Farben entsprechen jetzt deinem .button-primary Stil.
 */
#isso-thread .isso-post-action input[type="submit"],
#isso-thread .isso-post-action input[type="button"],
#isso-thread .isso-post-action button {
    background-color: var(--primary-color); /* Deine Haupt-Akzentfarbe */
    color: #000;                     /* Schwarzer Text wie bei .button-primary */
    border: none;
    padding: 12px 30px;              /* Selbes Padding wie .button-primary */
    border-radius: 50px;             /* Pillenform wie .button-primary */
    cursor: pointer;
    font-weight: 600;                /* Selbe Schriftstärke wie .button-primary */
    transition: transform 0.2s ease, background-color 0.3s ease;
}

/* * 4. Hover-Effekt für die Buttons
 * Entspricht jetzt deinem .button-primary:hover Stil.
 */
#isso-thread .isso-post-action input[type="submit"]:hover,
#isso-thread .isso-post-action input[type="button"]:hover,
#isso-thread .isso-post-action button:hover {
    background-color: #fff;          /* Weißer Hintergrund beim Hovern */
    transform: translateY(-3px) scale(1.05);
}

/* 5. Links "Bearbeiten" und "Löschen" */
#isso-thread .isso-comment-footer a {
    color: var(--primary-color);     /* Deine Haupt-Akzentfarbe */
    text-decoration: none;
    font-weight: 600;
}

#isso-thread .isso-comment-footer a:hover {
    color: white;
    text-decoration: underline;
}

/* 6. Allgemeine Textfarben im Gästebuch */
#isso-thread .isso-feed-info,
#isso-thread .isso-comment-author {
    color: #ccc;
}

/* Stile für die neuen Post-Vorschauen mit Hintergrundbild */
.post-item {
    position: relative; /* Wichtig für die Positionierung des Hintergrunds */
    overflow: hidden;   /* Verhindert, dass das Bild über die Ränder hinausragt */
    display: flex;      /* Stellt sicher, dass der Inhalts-Container die Höhe bestimmt */
    flex-direction: column;
    justify-content: flex-end; /* Positioniert den Inhalt unten */
    min-height: 300px; /* Gibt der Karte eine Mindesthöhe */
}

.post-item-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
    z-index: 1; /* Liegt hinter dem Inhalt */
}

/* Dunkler Verlauf über dem Bild für bessere Lesbarkeit des Textes */
.post-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
}

.post-item-content {
    position: relative;
    z-index: 3; /* Liegt über dem Bild und dem Verlauf */
    padding: 30px;
}

.post-item:hover .post-item-bg {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/*
===========================================================
  Isso-Layout: Verschiebt das Eingabefeld ans Ende
===========================================================
*/

/* Wir machen den Haupt-Container zu einem flexiblen Spalten-Layout */
#isso-thread {
  display: flex;
  flex-direction: column;
}

/* Die Kommentar-Liste bekommt die visuelle Reihenfolge 1 (erscheint oben) */
#isso-thread > #isso-feed {
  order: 1;
}

/* Das Eingabefeld bekommt die visuelle Reihenfolge 2 (erscheint unten) */
#isso-thread > .isso-postbox {
  order: 2;
}
/*
====================================================================
  BLOG-THEME V2 (Heller Lese-Bereich auf dunklem Hintergrund)
====================================================================
*/

/* Wir setzen KEINE globale Hintergrundfarbe mehr für .theme-blog. 
   Der Body bleibt also standardmäßig dunkel. */

/* Der Hauptinhalts-Bereich wird zur hellen "Insel" für den Text */
.theme-blog .main-content .subpage-section-main {
  background-color: #ffffff; /* Sauberer weißer Hintergrund für den Text */
  color: #3d3d3d;           /* Dunkler Text für beste Lesbarkeit */
  padding: 3rem 4rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Diese typografischen Regeln gelten nur für Text INNERHALB der hellen Box */
.theme-blog .main-content p,
.theme-blog .main-content li,
.theme-blog .main-content blockquote {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 120ch; /* Optimale Zeilenlänge für gute Lesbarkeit */
}

/* Überschriften im Blog-Artikel anpassen */
.theme-blog .main-content h2 {
  text-align: left;
  border-bottom-color: #eee;
  color: #111;
}
.theme-blog .main-content h3 {
    color: #222;
}

/* Link-Farben für das helle Theme anpassen */
.theme-blog .main-content a {
  color: #007acc;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.theme-blog .main-content a:hover {
    color: #0056b3;
}


/* Horizontale Linien im hellen Design anpassen */
.theme-blog .main-content hr {
    border-color: #e5e5e5;
    background-color: #e5e5e5;
    height: 1px;
    border: 0;
}

side-by-side-container {
  display: flex; /* Aktiviert das Flexbox-Layout */
  align-items: center; /* Zentriert die Elemente vertikal zueinander */
  gap: 2rem; /* Abstand zwischen den beiden Spalten */
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.side-by-side-container .text-content,
.side-by-side-container .video-content {
  flex: 1; /* Gibt beiden Spalten die gleiche Breite */
  min-width: 0; /* Verhindert Überlaufen bei schmalen Bildschirmen */
}

.side-by-side-container .video-content {
  text-align: center; /* Zentriert die kleine Bildunterschrift */
}
.side-by-side-container .video-content small {
    font-style: italic;
    color: #888;
}

/* Sorgt dafür, dass das Video nicht aus seinem Container ausbricht */
.video-content video {
  max-width: 100%;
  height: auto;
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
  .side-by-side-container {
    flex-direction: column; /* Stapelt die Spalten untereinander */
  }
}

/*
 * =========================================
 *  Stile für "Under Construction"-Seite
 * =========================================
 */

.text-center {
    text-align: center;
}

.text-center h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.text-center p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Verbessertes Styling für Turm von Hanoi --- */
:root {
    --hanoi-tower-color: #8d6e63;
    --hanoi-disk-base-color: #4fc3f7;
    --hanoi-bg-color: #f5f5f5;
    --hanoi-border-color: #e0e0e0;
    --hanoi-text-color: #333; /* NEU: Dunkle Schrift für guten Kontrast */
}

/* --- Hauptcontainer --- */
.hanoi-container {
    background-color: var(--hanoi-bg-color);
    border: 1px solid var(--hanoi-border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    font-family: sans-serif;
    color: var(--hanoi-text-color); /* WICHTIG: Setzt die Standard-Textfarbe */
}

/* --- Steuerungselemente (Oben) --- */
.hanoi-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap; /* Erlaubt Umbruch auf kleinen Bildschirmen */
}

.hanoi-controls label {
    font-weight: bold;
}

.hanoi-controls select, .hanoi-controls button {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    color: var(--hanoi-text-color); /* Stellt sicher, dass Text lesbar ist */
}

.hanoi-controls button {
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.hanoi-controls button:hover {
    background-color: #e9e9e9;
}

.hanoi-moves {
    margin-left: auto; /* Schiebt den Zähler nach rechts auf großen Bildschirmen */
    font-size: 1.2em;
    font-weight: bold;
}

/* --- Das Spielbrett --- */
#hanoi-game {
    display: flex;
    justify-content: space-around;
    height: 250px;
    padding: 20px 0;
    gap: 1rem;
}

.tower {
    position: relative; /* Wichtig für den neuen "Stab" */
    width: 33%;
    display: flex;
    flex-direction: column-reverse; /* Stapelt Scheiben von unten */
    align-items: center;
    cursor: pointer;
    border-bottom: 5px solid var(--hanoi-tower-color);
    transition: background-color 0.2s;
    padding-bottom: 5px;
}

/* NEU: Visueller Stab in der Mitte des Turms */
.tower::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 100%;
    background-color: var(--hanoi-tower-color);
    border-radius: 3px 3px 0 0;
}

.tower:hover {
    background-color: #e8f5e9;
}

/* --- Die Scheiben --- */
.disk {
    height: 25px;
    border-radius: 12px;
    margin-bottom: 3px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    color: white; /* Schriftfarbe für die Nummer auf der Scheibe */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Macht die Nummer besser lesbar */
    z-index: 10; /* Stellt sicher, dass die Scheibe über dem Stab liegt */
}

.disk.selected {
    box-shadow: 0 0 15px 3px gold; /* Deutlichere Hervorhebung */
    transform: translateY(-40px);
}

/* --- Gewinn-Nachricht --- */
.hanoi-win-message {
    text-align: center;
    margin-top: 20px;
    padding: 1rem;
    background-color: #dcedc8;
    border: 1px solid #a5d6a7;
    border-radius: 5px;
    font-size: 1.2em;
    color: #2e7d32; /* Dunkelgrüne, gut lesbare Schrift */
}

/* --- MOBILE RESPONSIVITÄT --- */
@media (max-width: 600px) {
    .hanoi-container {
        padding: 1rem;
    }

    .hanoi-controls {
        flex-direction: column; /* Steuerung untereinander anordnen */
        align-items: stretch; /* Elemente auf volle Breite strecken */
        gap: 0.75rem;
    }

    .hanoi-moves {
        margin-left: 0; /* Zentriert den Zähler */
        text-align: center;
        margin-top: 0.5rem;
        width: 100%;
    }

    #hanoi-game {
        height: 180px; /* Macht das Spielfeld auf kleinen Geräten kompakter */
    }

    .disk {
        height: 20px; /* Kleinere Scheiben */
        font-size: 0.7em;
    }
    
    .disk.selected {
        transform: translateY(-30px); /* Hebt die Scheibe etwas weniger an */
    }
}

/*
===========================================================
  STYLES FÜR DIE INTERAKTIVE LEKTION: NEURONALE NETZE
  (Vollständig gekapselt innerhalb von .nn-lesson-wrapper)
===========================================================
*/



.nn-lesson-wrapper {
    /* Setzt einen hellen Hintergrund nur für den Lektionsbereich */
    background-color: #f0f2f5;
    color: #333;
    padding: 2rem;
    border-radius: 12px; /* Etwas runder für einen weicheren Look */
    
    /* --- NEU: Der Rahmen-Effekt --- */
    max-width: 1200px;  /* Maximale Breite wie dein Hauptcontainer */
    margin: 40px auto;  /* Vertikaler Abstand und horizontale Zentrierung */
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); /* Ein subtiler Schatten für mehr Tiefe */
}

.nn-lesson-wrapper .top-nav {
    position: sticky;
    top: 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 950;
    padding: 1rem 2rem;
    margin: -2rem -2rem 2rem -2rem;
    /* Alle display:flex, justify-content etc. wurden entfernt! */
}

.nn-lesson-wrapper .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Verteilt die Elemente an die Enden */
    width: 100%; /* Stellt sicher, dass der Container die volle Breite hat */
}



.nn-lesson-wrapper #nav-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #1a237e;
    /* Alle margin- und flex-Regeln wurden entfernt. */
}

@media (max-width: 768px) {
    .nn-lesson-wrapper {
        margin: 20px 10px; /* Kleinere Ränder auf Mobilgeräten */
        padding: 1.5rem;
    }
}


.nn-lesson-wrapper .lesson-part {
    padding-bottom: 2rem;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 2rem;
}
.nn-lesson-wrapper .lesson-part:last-child { border-bottom: none; }

.nn-lesson-wrapper .hidden { display: none; }
.nn-lesson-wrapper .intro { font-size: 1.1em; color: #555; }

/* Gekapselte Button-Styles */
.nn-lesson-wrapper button { padding: 10px 20px; font-size: 1em; font-weight: bold; border-radius: 8px; border: none; cursor: pointer; transition: background-color 0.2s, transform 0.1s; }
.nn-lesson-wrapper button:active { transform: scale(0.98); }
.nn-lesson-wrapper .nav-btn { background-color: #007bff; color: white; }
.nn-lesson-wrapper .nav-btn:hover { background-color: #0056b3; }
.nn-lesson-wrapper .nav-btn-secondary { background-color: #6c757d; color: white; }
.nn-lesson-wrapper .nav-btn-secondary:hover { background-color: #5a6268; }
.nn-lesson-wrapper button:disabled { background-color: #e9ecef; color: #6c757d; cursor: not-allowed; }

/* Spezifische Styles für Teil 1 & 2 */
.nn-lesson-wrapper #print-rules-btn { background-color: #17a2b8; color: white; }
.nn-lesson-wrapper .role-checker { background: #f9f9f9; padding: 1rem; border: 1px solid #eee; border-radius: 8px; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.nn-lesson-wrapper #role-display { margin-top: 1rem; padding: 1rem; background: #e9f7ef; border-left: 5px solid #28a745; font-weight: bold; }
.nn-lesson-wrapper .variant-selector { margin: 1.5rem 0; padding: 1rem; background-color: #e9ecef; border-radius: 8px; }
.nn-lesson-wrapper .variant-selector label { font-weight: bold; margin-right: 1rem; }
.nn-lesson-wrapper .variant-selector select { padding: 8px; border-radius: 5px; border: 1px solid #ccc; font-size: 1em; }


/* Styles für die Simulation (bereits gut durch ID gekapselt, aber wir fügen den Wrapper für 100%ige Sicherheit hinzu) */
.nn-lesson-wrapper #simulation-wrapper .main-container { display: flex; flex-wrap: wrap; gap: 2rem; width: 100%; padding: 0; }
.nn-lesson-wrapper #simulation-wrapper .column { flex: 1; min-width: 400px; background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.nn-lesson-wrapper #simulation-wrapper h1, .nn-lesson-wrapper #simulation-wrapper h2 { text-align: center; color: #1a237e; }
.nn-lesson-wrapper #simulation-wrapper h2 { margin-top: 0; }
.nn-lesson-wrapper #simulation-wrapper #plot-container { width: 100%; aspect-ratio: 1 / 1; border: 2px solid #ccc; border-radius: 8px; position: relative; overflow: hidden; transition: background-image 0.5s; }
.nn-lesson-wrapper #simulation-wrapper #plot-point { position: absolute; width: 20px; height: 20px; background-color: #fff; border: 2px solid #000; border-radius: 50%; transform: translate(-50%, -50%); transition: background-color 0.2s; }
.nn-lesson-wrapper #simulation-wrapper .instruction { text-align: left; margin-top: 1rem; color: #555; background-color: #f9f9f9; padding: 1rem; border-radius: 8px; flex-grow: 1; }
.nn-lesson-wrapper #simulation-wrapper .instruction-highlight { padding: 0.2rem 0.5rem; border-radius: 5px; }
.nn-lesson-wrapper #simulation-wrapper .level-controls { display: flex; gap: 1rem; margin-top: 1rem; }
.nn-lesson-wrapper #simulation-wrapper .level-controls button { flex-grow: 1; padding: 10px 15px; font-size: 1em; }
.nn-lesson-wrapper #simulation-wrapper #solve-button { background-color: #4CAF50; color: white; }
.nn-lesson-wrapper #simulation-wrapper #solve-button:hover { background-color: #45a049; }
.nn-lesson-wrapper #simulation-wrapper #next-level-button { background-color: #008CBA; color: white; }
.nn-lesson-wrapper #simulation-wrapper #next-level-button:hover { background-color: #007ba7; }
.nn-lesson-wrapper #simulation-wrapper .network-display { position: relative; height: 300px; margin-bottom: 1rem; }
.nn-lesson-wrapper #simulation-wrapper #network-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.nn-lesson-wrapper #simulation-wrapper #network-svg line { transition: stroke 0.2s, stroke-width 0.2s; }
.nn-lesson-wrapper #simulation-wrapper #network-svg text { font-family: monospace; font-size: 14px; font-weight: bold; text-anchor: middle; fill: #333; paint-order: stroke; stroke: white; stroke-width: 4px; stroke-linejoin: round; transition: fill 0.2s; }
.nn-lesson-wrapper #simulation-wrapper .layer { position: absolute; top: 0; height: 100%; display: flex; flex-direction: column; justify-content: space-around; z-index: 2; }
.nn-lesson-wrapper #simulation-wrapper .input-layer { left: 5%; }
.nn-lesson-wrapper #simulation-wrapper .hidden-layer { left: 50%; transform: translateX(-50%); }
.nn-lesson-wrapper #simulation-wrapper .output-layer { right: 5%; }
.nn-lesson-wrapper #simulation-wrapper .neuron { width: 60px; height: 60px; background-color: #e0e0e0; border: 2px solid #999; border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-direction: column; font-size: 0.8em; transition: background-color 0.2s, border-color 0.2s; }
.nn-lesson-wrapper #simulation-wrapper .neuron .value { font-weight: bold; font-size: 1.2em; }
.nn-lesson-wrapper #simulation-wrapper .controls { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.nn-lesson-wrapper #simulation-wrapper .control-group { border: 1px solid #ddd; padding: 1rem; border-radius: 8px; }
.nn-lesson-wrapper #simulation-wrapper .control-group h3 { margin-top: 0; text-align: center; color: #555; font-size: 1em; }
.nn-lesson-wrapper #simulation-wrapper .slider-control { display: grid; grid-template-columns: 80px 1fr 50px; align-items: center; gap: 10px; }
.nn-lesson-wrapper #simulation-wrapper label { font-size: 0.9em; }
.nn-lesson-wrapper #simulation-wrapper input[type="range"] { width: 100%; }
.nn-lesson-wrapper #simulation-wrapper .value-display { font-weight: bold; text-align: right; font-family: monospace; }
.nn-lesson-wrapper #simulation-wrapper .error-display { margin-top: 1rem; padding: 0.8rem; text-align: center; background-color: #fff3e0; border: 1px solid #ffe0b2; border-radius: 8px; font-size: 1.1em; }
.nn-lesson-wrapper #simulation-wrapper .error-display .value { font-weight: bold; color: var(--color-error); font-family: monospace; }

/* Gekapselte Styles für Teil 4 */
.nn-lesson-wrapper .task-box { margin: 1.5rem 0; padding: 1rem; background-color: #fff3cd; border-left: 5px solid #ffc107; border-radius: 5px; }
.nn-lesson-wrapper .math-step { margin-top: 2rem; padding-left: 1.5rem; border-left: 3px solid #007bff; }
.nn-lesson-wrapper .math-step h3 { margin-top: 0; }
.nn-lesson-wrapper .solution-checker { margin-top: 2.5rem; padding: 1.5rem; background-color: #f8f9fa; border: 1px solid #dee2e6; border-radius: 8px; }
.nn-lesson-wrapper .solution-checker label { font-weight: bold; margin-right: 1rem; }
.nn-lesson-wrapper .solution-checker input { padding: 8px; border-radius: 5px; border: 1px solid #ccc; font-size: 1em; width: 100px; }
.nn-lesson-wrapper .solution-checker button { background-color: #28a745; color: white; margin-left: 1rem; }
.nn-lesson-wrapper .solution-checker button:hover { background-color: #218838; }
.nn-lesson-wrapper #solution-feedback { margin-top: 1rem; font-weight: bold; padding: 0.5rem; border-radius: 5px; }
.nn-lesson-wrapper #solution-feedback.correct { color: #28a745; }
.nn-lesson-wrapper #solution-feedback.error { color: #dc3545; }
.nn-lesson-wrapper .image-text-wrapper { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 25px; margin-top: 15px; }
.nn-lesson-wrapper .image-text-wrapper .text-content { flex: 2; min-width: 300px; }
.nn-lesson-wrapper .image-text-wrapper .image-content { flex: 1; min-width: 250px; text-align: center; }
.nn-lesson-wrapper .image-text-wrapper .image-content img { max-width: 100%; height: auto; border-radius: 8px; border: 1px solid #ddd; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.nn-lesson-wrapper .image-text-wrapper .image-content .caption { font-size: 0.9em; color: #555; font-style: italic; margin-top: 8px; }

/* Gekapselte Druck-Styles */
@media print {
    body * { visibility: hidden; }
    /* Wichtig: Auch hier den Wrapper verwenden */
    .nn-lesson-wrapper #paper-rules-container,
    .nn-lesson-wrapper #paper-rules-container * {
        visibility: visible;
    }
    .nn-lesson-wrapper #paper-rules-container {
        position: absolute; left: 0; top: 0;
    }
}

/*
===========================================================
  PFLANZENSITTER LIGHT THEME OVERRIDE
  (Überschreibt den globalen Dark Mode)
===========================================================
*/

/* 1. Grundlegende Seiten-Stile: Hintergrund und Textfarbe */
body.pflanzensitter-theme {
    background-color: #f5f5f4; /* stone-100 */
    color: #292524;            /* stone-800 */
    font-family: 'Inter', sans-serif; /* Stellt sicher, dass die richtige Schriftart verwendet wird */
}

/* 2. Header überschreiben: Den dunklen Header neutralisieren */
body.pflanzensitter-theme .page-header {
    background: none;
    border-bottom: 1px solid #e5e7eb; /* stone-200 */
    padding-top: 80px;
    padding-bottom: 40px;
}

/* 3. Textfarben für den Header im Light-Theme anpassen */
body.pflanzensitter-theme .page-header h1,
body.pflanzensitter-theme .sticky-header-content h1 {
    color: #064e3b; /* emerald-900 */
}
body.pflanzensitter-theme .page-header p {
    color: #57534e; /* stone-600 */
}

/* 4. Link-Farben anpassen */
body.pflanzensitter-theme .back-link-sticky,
body.pflanzensitter-theme .back-link {
    color: #059669; /* emerald-600 */
}
body.pflanzensitter-theme .back-link-sticky:hover,
body.pflanzensitter-theme .back-link:hover {
    color: #064e3b; /* emerald-900 */
}

/* 5. Footer überschreiben: Den dunklen Footer aufhellen */
body.pflanzensitter-theme .main-footer {
    background-color: #e7e5e4; /* stone-200 */
    border-top: 1px solid #d6d3d1; /* stone-300 */
    color: #57534e; /* stone-600 */
}

body.pflanzensitter-theme .footer-column h3 {
    color: #047857; /* emerald-700 */
}

body.pflanzensitter-theme .footer-column p {
    color: #78716c; /* stone-500 */
}

/* Stellt sicher, dass das Formular im Footer auch hell ist */
body.pflanzensitter-theme .slick-form input,
body.pflanzensitter-theme .slick-form textarea {
    background-color: #f5f5f4; /* stone-100 */
    border-color: #d6d3d1;     /* stone-300 */
    color: #292524;            /* stone-800 */
}
body.pflanzensitter-theme .slick-form input:focus,
body.pflanzensitter-theme .slick-form textarea:focus {
    border-color: #059669;     /* emerald-600 */
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}
body.pflanzensitter-theme .slick-form label {
    color: #44403c; /* stone-700 */
}

/* Der Primary-Button im Footer */
body.pflanzensitter-theme .button-primary {
    background-color: #059669; /* emerald-600 */
    color: #ffffff;
}
body.pflanzensitter-theme .button-primary:hover {
    background-color: #047857; /* emerald-700 */
}

/* 6. Alle anderen Elemente innerhalb des Wrappers nutzen wie geplant Tailwind */
.pflanzensitter-wrapper .container {
    margin-top: 0; /* Entfernt den doppelten Abstand, da der .page-header jetzt Platz schafft */
}

/* GÄSTEBUCH V2 (SUPABASE) */

.guestbook-form-wrapper,
.guestbook-entries-wrapper {
    margin-top: 60px;
}

.guestbook-form-wrapper h3,
.guestbook-entries-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

/* Stile für Bearbeiten/Löschen-Buttons im Gästebuch */
.entry-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.entry-actions button {
    padding: 6px 12px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit {
    background-color: #555;
    color: white;
}
.btn-edit:hover {
    background-color: #777;
}

.btn-delete {
    background-color: var(--color-negative-weight); /* Nutzt deine bestehende rote Variable */
    color: white;
}
.btn-delete:hover {
    background-color: #e53935;
}