/* ========================================= */
/*  Tabelle                                   */
/* ========================================= */

.fisch-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 16px;
}

.fisch-tabelle th {
    background: var(--blue);
    color: white;
    padding: 10px;
    text-align: left;

    /* Sortier-Addons */
    position: relative;
    cursor: pointer;
}

/* Standard-Sortiericons (blass) */
.fisch-tabelle th .sort-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.35; /* blass */
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Aktive Sortierung: kräftiger */
.fisch-tabelle th.sorted .sort-icon {
    opacity: 0.9;
}

.fisch-tabelle th:hover {
    background: var(--orange);
}

.fisch-tabelle td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

.fisch-tabelle tr:nth-child(even) {
    background: #f5f5f5;
}

.fisch-tabelle tr:hover {
    background: var(--light2)   
}

.tabelle-hinweis {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Tabelle Desktop 80% + zentriert */
@media (min-width: 769px) {
    .fisch-tabelle {
        width: 80%;
        margin: 0 auto;
    }
}

/* Filter-Buttons sauber integrieren */
.tabelle-filter {
    width: 100%;
    text-align: center;
    margin: 15px 0 5px 0;
}

#filterSchonzeit, #filterReset {
    padding: 8px 14px;
    margin: 5px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: system-ui, sans-serif;
    font-size: 15px;
    transition: background 0.2s ease;
}

/* Hover-Farbe = dein var(--orange) */
    #filterSchonzeit:hover, #filterReset:hover {
        background: var(--orange);
    }

/* ========================================= */
/*  Intro-Bereich (Text + Bild 66/33)         */
/* ========================================= */

.intro-flex {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    margin-bottom: 0px;
}

.intro-text {
    flex: 2; /* 66% */
}

.intro-img {
    flex: 1; /* 33% */
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}


/* ========================================= */
/*  Gesetzliche Regelungen (50/50)            */
/* ========================================= */

.gesetz-2col {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.gesetz-col {
    flex: 1; /* 50% */
}


/* ========================================= */
/*  Responsive                                */
/* ========================================= */

@media (max-width: 768px) {

    /* Intro untereinander */
    .intro-flex {
        flex-direction: column;
    }

    .intro-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Gesetzliche Regelungen untereinander */
    .gesetz-2col {
        flex-direction: column;
    }
}


.block-33 {
    display: flex;
    gap: 20px;
    align-items: center; /* Bild wird vertikal mittig */
}

.col33 {
    flex: 1;
}

.col33 img {
    display: block;
    margin: 0 auto; /* horizontal zentriert */
    max-width: 100%;
    height: auto;
}   

.col33 .gesetz-img {
    max-width: 150px !important;
    height: auto;
    display: block;
    margin: 0 auto;
}
    