/* ==========================================================================
   BAUSTOFFANZEIGER - MAIN CSS v5 FINAL
   ========================================================================== */

/* 1. VARIABLEN & THEME */
:root {
    /* Farben Light */
    --bg-color: #ffffff;
    --text-color: #333333;
    --modal-bg: #ffffff;
    --modal-border: #ddd;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --primary: #a34917;
    --primary-dark: #004488;
    --accent: #ff8c00;
    --accent-hover: #e07b00;

    /* Header/Balken Farben */
    --h1-bg: #fff;
    --h1-text: #000;
    --h2-bg: #eee;
    --h2-text: #4B4B4B;
    --h3-bg: #C3C3C3;
    --h3-text: #4B4B4B;
    --balken1-bg: #ccc;
    --balken1-text: #000;

    /* Layout Breiten */
    --layout-narrow: 1200px; /*.tab */
    --layout-wide: 100%; /*.tab2 */

    color-scheme: light;
}

/* System Darkmode */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode):not(.dark-mode) {
        --bg-color: #121212;
        --text-color: #eeeeee;
        --modal-bg: #1e1e1e;
        --modal-border: #333;
        --overlay-bg: rgba(0, 0, 0, .8);
        --h1-bg: #3C3C3C;
        --h1-text: #E3E3E3;
        --h2-bg: #696969;
        --h2-text: #E3E3E3;
        --h3-bg: #4B4B4B;
        --h3-text: #E3E3E3;
        --balken1-bg: #4B4B4B;
        --balken1-text: #BCBCBC;
        color-scheme: dark;
    }
}

/* Manuelle Klassen überschreiben alles */
body.dark-mode {
    --bg-color: #121212 !important;
    --text-color: #eeeeee !important;
    --modal-bg: #1e1e1e !important;
    --modal-border: #333 !important;
    --overlay-bg: rgba(0, 0, 0, 0.8) !important;
    --h1-bg: #3C3C3C !important;
    --h1-text: #E3E3E3 !important;
    --h2-bg: #696969 !important;
    --h2-text: #E3E3E3 !important;
    --h3-bg: #4B4B4B !important;
    --h3-text: #E3E3E3 !important;
    --balken1-bg: #4B4B4B !important;
    --balken1-text: #BCBCBC !important;
    color-scheme: dark !important;
}

body.light-mode {
    --bg-color: #ffffff !important;
    --text-color: #333 !important;
    --modal-bg: #ffffff !important;
    --modal-border: #ddd !important;
    --overlay-bg: rgba(0, 0, 0, 0.5) !important;
    --h1-bg: #fff !important;
    --h1-text: #000 !important;
    --h2-bg: #eee !important;
    --h2-text: #4B4B4B !important;
    --h3-bg: #C3C3C3 !important;
    --h3-text: #4B4B4B !important;
    --balken1-bg: #ccc !important;
    --balken1-text: #000 !important;
    color-scheme: light !important;
}

/* 2. RESET & BASE */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 0;
    padding: 0;
    padding-top: 35px;
    display: block;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body a {
    color: var(--primary);
    text-decoration: none;
}

body a:hover {
    text-decoration: underline;
}

/* 3. FORMULARE */
input,
select,
textarea {
    background: var(--bg-color);
    color: var(--text-color);
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    padding: 8px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 5px rgba(0, 85, 170, 0.2);
}

.input-leer {
    border: 2px solid #e74c3c !important;
    background-color: #fff !important;
}

button[type="submit"],
input[type="submit"] {
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    padding: 8px 10px;
    border: 1px solid var(--primary-dark);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s ease;
    -webkit-appearance: none;
}

button[type="submit"]:hover {
    background-color: var(--primary-dark) !important;
    box-shadow: 0 0 5px rgba(0, 85, 170, 0.4);
}

button[type="submit"]:active {
    transform: scale(0.98);
}

/* 4. HEADER & NAVIGATION */
.tab_top {
    position: fixed !important;
    top: 0;
    left: 0 !important;
    width: 100% !important;
    height: 35px !important;
    background-color: var(--primary) !important;
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
    z-index: 99999 !important;
    transition: top 0.3s ease-in-out;
    gap: 10px;
}

.tab_top a {
    color: #fff;
}

#darkModeToggle,
.taste-top {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 4px 8px;
    margin: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#darkModeToggle:hover,
.taste-top:hover {
    background-color: #FF7F2A;
    color: var(--primary);
    transform: scale(1.05);
}

.dark-mode.tab_top {
    background-color: #FF7F2A;
    border-bottom: 1px solid var(--primary);
}

/* Menü Button */
#menuToggle {
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff !important;
    padding: 5px 10px;
    display: inline-block;
    transition: color 0.2s ease;
}

#menuToggle:hover {
    color: #eeeeee !important;
    background: transparent !important;
}

/* Navigationsbox */
#navBox {
    position: absolute;
    top: 45px;
    right: 10px;
    background: #ffffff;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    width: 220px;
    z-index: 9999;
    transition: all 0.2s ease-in-out;
}

#navBox h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 5px;
}

#navBox a {
    display: block;
    padding: 8px 10px;
    color: #2d3748;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

#navBox a:hover {
    background: #f7fafc;
    color: #3182ce;
}

.nav-box-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-box-visible {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

/* 5. LAYOUT CONTAINER */
.tab {
    width: 100%;
    max-width: var(--layout-narrow); /* 1200px */
    margin: 0 auto;
    overflow: hidden;
}

.tab2 {
    width: 100%;
    max-width: var(--layout-wide); /* 100% */
    margin: 0 auto;
    overflow: hidden;
}

.tabr {
    float: right;
    margin-bottom: 10px;
    max-width: 100%;
}

.tabl {
    float: left;
    margin-bottom: 10px;
    max-width: 100%;
}

/* 6. KOMPONENTEN */

/* Balken */
.balken1 {
    background-color: var(--balken1-bg);
    color: var(--balken1-text);
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
}

.balken2 {
    background-color: #C50E2D;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}

.balken3 {
    background-color: #366C09;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}

.dark-mode.balken2 {
    color: #000;
}

.dark-mode.balken3 {
    color: #000;
}

/* Hintergrund-Klassen mit Variablen */
.h_1 {
    background-color: var(--h1-bg);
    color: var(--h1-text);
}

.h_1b {
    border-top: 1px solid var(--primary);
    background-color: var(--h1-bg);
    color: var(--h1-text);
}

.h_2 {
    background-color: var(--h2-bg);
    color: var(--h2-text);
}

.h_3 {
    background-color: var(--h3-bg);
    color: var(--h3-text);
}

.h_site {
    background-color: #FAD180;
}

.h_druck {
    background-color: #90cdf4;
}

.h_anz {
    background-color: #F0F0F0;
}

.h_geklickt {
    background-color: #e67e22;
}

.h_mitar {
    background-color: #FAD88A;
}

.h_anz_on {
    background-color: #BFDFBF;
}

.dark-mode.h_anz_on {
    background-color: #568156;
    color: #fff;
}

/* Links in h_3 */
.h_3 a {
    color: #850606 !important;
}

.h_3 a:hover {
    color: #D62C02 !important;
}

body.dark-mode.h_3 a {
    color: #FF7F2A !important;
}

body.dark-mode.h_3 a:hover {
    color: #FFAA22 !important;
}

/* Balkon Überschriften */
.balk_anz {
    font-weight: normal !important;
    background-color: var(--balken1-bg);
    color: var(--balken1-text);
    border-bottom: 1px solid var(--modal-border);
    padding: 6px;
    border-radius: 5px;
}

.balk_chef {
    background-color: #505050;
    border-bottom: 1px solid #333;
    font-weight: bold;
    color: #fff;
    padding: 6px;
    border-radius: 5px;
}

.dark-mode.balk_chef {
    background-color: #2a2a2a;
    color: #eee;
}

.balk_mi {
    background-color: #AB;
    border-bottom: 1px solid #333;
    font-weight: bold;
    padding: 6px;
    border-radius: 5px;
}

.dark-mode.balk_mi {
    background-color: #555;
    color: #eee;
}

/* Aktions-Button */
.aktion {
    display: inline-block;
    background-color: var(--accent) !important;
    color: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: 1px solid var(--accent-hover) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: background-color 0.2s ease, transform 0.1s ease !important;
}

.aktion:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px) !important;
}

body.dark-mode.aktion {
    background-color: #ff9900 !important;
    color: #121212 !important;
    border: 1px solid #ffaa22 !important;
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.4) !important;
}

body.dark-mode.aktion:hover {
    background-color: #ffaa22 !important;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.6) !important;
}

/* Fehlerbox */
.fehler {
    background-color: #e07b00;
    color: #ffffff;
    margin: 20px;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    border: 1px solid #e67e22;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Super Box */
.super {
    color: #ffffff;
    background-color: #999;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    margin: 20px;
    border: 2px dotted var(--primary);
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 4px 4px;
    border-radius: 6px;
    float: left;
    margin-left: -50px;
    position: relative;
    z-index: 10;
    min-width: 300px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.super a {
    color: #fff !important;
    text-decoration: none;
}

.dark-mode.super {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.dark-mode.super a {
    color: #fff !important;
    text-decoration: none;
}

/* Detail */
.detail {
    padding: 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #af4910;
    background-color: var(--modal-bg);
    color: var(--text-color);
    font-size: 12px !important;
    clear: both;
}

/* 7. LAYOUT HELPER */
.border {
    border: 1px solid var(--primary);
    border-radius: 4px;
}

.b_b {
    border-bottom: 1px solid var(--primary);
}

.bo {
    border-top: 1px solid var(--primary);
}

.bo_u {
    border-bottom: 1px solid #af4910;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.p20 {
    padding: 20px;
}

.p30 {
    padding: 30px;
}

.ma10 {
    margin: 10px;
}

.ma20 {
    margin: 20px;
}

.ma30 {
    margin: 30px;
}

.text-12 {
    font-size: 12px !important;
}

.text-10 {
    font-size: 10px !important;
}

.text-8 {
    font-size: 8px;
    color: #636363;
}

.re {
    text-align: right;
}

.ce {
    text-align: center;
}

.le {
    text-align: left;
}

.no {
    display: none;
}

.maus {
    cursor: pointer;
}

.scroll {
    overflow: auto;
}

.u {
    border-bottom: 1.5px solid #333;
}

/* Breiten-Helper */
.wi {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: left;
}

.wi98 {
    width: 90%;
    max-width: 1200px;
}

.wi60 {
    width: 70px;
    flex-shrink: 0;
}

.wi80 {
    width: 80px;
    flex-shrink: 0;
}

.wi100 {
    width: 100px;
    flex-shrink: 0;
}

.wi150 {
    width: 150px;
    flex-shrink: 0;
}

.wi200 {
    width: 200px;
    flex-shrink: 0;
}

.wi200_m {
    width: 200px;
    flex-shrink: 0;
}

.wi250 {
    width: 250px;
    flex-shrink: 0;
}

.wi290 {
    width: 290px;
    flex-shrink: 0;
}

.wi300 {
    width: 300px;
    flex-shrink: 0;
}

.wi400 {
    width: 400px;
    flex-shrink: 0;
}

.wi500 {
    width: 500px;
    flex-shrink: 0;
}

.wi600 {
    width: 600px;
    flex-shrink: 0;
}

.wi800 {
    width: 800px;
    flex-shrink: 0;
}

.wi850 {
    width: 850px;
    flex-shrink: 0;
}

.wi900 {
    width: 900px;
    flex-shrink: 0;
}

.wi1200, .wi1200b {
    width: 100%;
    max-width: 1200px;
}

.wi2000 {
    width: 100%;
    max-width: 2200px;
}

.hi100 {
    max-height: 100px;
}

.hi400 {
    max-height: 400px;
}

/* 8. TABELLEN */
table {
    border-collapse: separate;
    border-spacing: 1px;
    border: 0px solid var(--modal-border);
    border-radius: 8px;
    overflow: hidden;
}

td {
    position: relative;
}

/* 9. SPEZIELLE KOMPONENTEN */
.scroll-container {
    border: 1px solid var(--modal-border);
    max-height: 100px;
    overflow-y: auto;
    padding: 15px;
    background: var(--modal-bg);
}

.lupe {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 10;
    pointer-events: none;
    font-size: 12px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.85);
    padding: 2px 5px;
    border-radius: 4px;
    backdrop-filter: blur(3px);
}

.dark-mode.lupe {
    color: #ffaa22;
    background: rgba(0, 0, 0, 0.6);
}

.logo {
    position: absolute;
    top: 120px;
    left: 100px;
    border-radius: 4px;
}

.suche-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1320px;
}

.suche-form {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

/* Details/Summary */
summary {
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: left;
}

summary::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('bilder/pi/p_u.png') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

details[open] > summary::before {
    transform: rotate(180deg);
}

/* OHNE PFEIL VARIANTE */
details.ohne-pfeil summary {
    list-style: none !important;
}

details.ohne-pfeil summary::-webkit-details-marker {
    display: none !important;
}

details.ohne-pfeil summary::before,
details.ohne-pfeil summary::after {
    content: none !important;
    display: none !important;
}

.ueberalles {
    position: relative;
    background: var(--modal-bg);
    transition: all 0.3s ease;
}

.ueberalles[open] {
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #3498db;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Ad Overlay */
#adOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 9999;
}

#adBox {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 100%;
    height: 80%;
    overflow: auto;
    background: var(--modal-bg);
    color: var(--text-color);
}

#adSplit {
    display: block;
}

#adPreview, #adEdit {
    width: 100%;
    border-right: 1px solid var(--modal-border);
}

/* Preise */
.preis-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.preis-spalte {
    flex: 1;
    min-width: 300px;
}

.pro-highlight {
    border: 2px solid #3182ce !important;
    box-shadow: 0 6px 12px rgba(49, 130, 206, 0.15) !important;
}

.hersteller-zeile {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hersteller-titel {
    width: 300px;
    background: #4a5568;
    color: white;
}

.dark-mode.hersteller-titel {
    background: #2a2a2a;
}

/* Share Buttons */
.share-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    justify-content: center;
}

.share-btn {
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-family: sans-serif;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.8;
}

.facebook {
    background-color: #1877F2;
}

.whatsapp {
    background-color: #25D366;
}

.x-social {
    background-color: #000;
}

.linkedin {
    background-color: #0077b5;
}

.telegram {
    background-color: #0088cc;
}

.email {
    background-color: #666;
}

.druck_butt {
    background-color: #FF5500;
}

/* 10. DARKMODE SPEZIFISCHES */
.dark-mode,
.dark-mode body {
    background-color: #1a1a1a !important;
    color: #eeeeee !important;
}

body.dark-mode img {
    filter: brightness(0.8) contrast(1.1);
}

body.dark-mode img:hover {
    filter: brightness(1);
}

body.dark-mode hr {
    background-color: #555;
}

.dark-mode.logo-light {
    display: none;
}

.dark-mode.logo-dark {
    display: block;
    transition: all 0.3s ease;
}

.logo-dark {
    display: none;
}

.logo-light, .logo-dark {
    width: auto;
    transition: opacity 0.3s ease;
}


.michel-slider {
    position: relative;
    width: 260px; /* 200-300px */
    height: 85px;
    overflow: hidden;
    border: 0px solid #ddd;
    border-radius: 4px;                               
    /*background: #fff;*/
    margin: 0px 0;
    touch-action: pan-y; /* nur vertikal scrollen der Seite erlauben */
    user-select: none;
    margin: 5px;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;                             
}

.slide {
    flex: 0 0 40%; /* 100% / 2.5 Bilder = 40% */
    padding: 5px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 80px;                                                        
    object-object: cover;
    border-radius: 3px;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    color: white;
    border: none;
    padding: 5px 8px;                                 
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

.michel-slider:hover .slider-btn {
    opacity: 1;
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

.slider-btn:disabled {
    opacity: 0.1;
    cursor: default;
}


.slide img {
    pointer-events: none; /* verhindert dass Bild das Wischen blockt */
}

/* 11. RESPONSIVE */
@media (max-width: 600px) {
    .super {
        margin-left: 0;
        float: none;
        width: 100%;
        justify-content: center;
    }

    .michel-slider {
        width: 100%;
    }
    .slide {
    flex: 0 0 30%; /* 100% / 2.5 Bilder = 40% */
    }
    .wi, .wi98, .wi1200, .wi500, .wi800, .wi850, .wi900, .wi600, .wi300, .wi400, .wi250, .wi200, .wi150 {
        box-sizing: border-box !important;
        width: calc(100% - 5px) !important;
        max-width: calc(100% - 20px) !important;
    }

    .rahmen-responsive {
        width: 140px !important;
        height: 200px !important;
    }

    .thumb-responsive {
        width: 130px !important;
        height: 130px !important;
    }

    .thumb-text {
        width: 130px !important;
        height: 50px !important;
    }

    .gross-responsive {
        width: 90vw !important;
        max-width: 90vw !important;
    }

    .suche-flex-container {
        flex-direction: column-reverse;
        align-items: center;
    }
}


@media (min-width: 600px) {
    #adBox {
        width: 80%;
        height: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    #adSplit {
        display: flex;
        height: calc(100% - 40px);
    }

    #adPreview {
        width: 50%;
        overflow: auto;
    }

    #adEdit {
        width: 50%;
        overflow: hidden;
    }

}

@media (min-width: 601px) {
    .rahmen-responsive {
        width: 190px !important;
        height: 220px !important;
    }

    .thumb-responsive {
        width: 164px !important;
        height: 155px !important;
    }

    .thumb-text {
        width: 150px !important;
        height: 50px !important;
    }

    .gross-responsive {
        width: auto;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hersteller-titel {
        width: 100%;
    }
}

/* 12. ANIMATIONEN */
@keyframes michel-alarm {
    0% {
        transform: rotate(0);
    }
    15% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    45% {
        transform: rotate(5deg);
    }
    60% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0);
    }
}

.michel-shake {
    display: inline-block;
    animation: michel-alarm 2s infinite;
}

@keyframes blinkEffect {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(163, 73, 23, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

.blink {
    animation: blinkEffect 0.8s ease-in-out;
}

@media screen {
    .only-print-footer {
        display: none;
    }
}

/* 13. TYPOGRAFIE */
h1 {
    font-size: 1.5em;
    line-height: 1.4em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    padding: 2px 0;
    display: block;
}

h2 {
    font-size: 1.2em;
    line-height: 1.4em;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    display: block;
}

h3 {
    font-size: 1.0em;
    line-height: 1.4em;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    display: block;
}

h4 {
    font-size: 14px;
    line-height: 1.2;
    margin: 3px 0;
}

h5 {
    font-size: 12px;
    line-height: 1.2;
    margin: 2px 0;
}

/* Listen */
ul {
    list-style-type: none;
}

li::marker {
    content: url('bilder/pi/punkt.png');
}

hr {
    border: none;
    height: 1px;
    background-color: var(--primary);
    margin: 30px 0;
}

.unten {
    justify-content: flex-end;
}





