.desktop {
    display: none;
}
@media screen and (min-width: 992px) {
    .desktop {
        display: block;
    }
}

.mobile {
    display: none;
}

.tabelle {
	border: none !important;
    border-color: #fff !important;
    border-width: 0px !important;
}

@media screen and (max-width: 991px) {
    .mobile {
        display: block;
    }
}

.button-anleitung_b {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px;
    border-radius: 0 0 0 0;
    font-weight: bolder;
}

.button-anleitung_b:hover {
    transition: all 0.25sec ease;
    background-color: black;
    color: white;
}

.button-anleitung {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px;
    border-radius: 0 0 0 0;
    font-weight: bolder;
    margin-top: 50px;
}

.button-anleitung:hover {
    background-color: black;
    color: white;
    transition: all 0.25sec ease;
}

.h_75_C {
    font-size: 2rem;
    text-align: center;
    word-break: break-word;
    line-height: 2;
}

.h_75 {
    font-size: 2rem;
    word-break: break-word;
    line-height: 2;
}

.h_75_800 {
    font-size: 2rem;
    font-weight: 800;
    word-break: break-word;
    line-height: 2;
}

.h_75_800_C {
    font-size: 2.25rem;
    font-weight: 800;
    word-break: break-word;
    text-align: center;
    line-height: 2;
}

.lh_15 {
    line-height: 2;
}

.padding_0 {
    padding: 0px;
}

.margin_0 {
    margin: 0px;
}

.p_25_d {
    line-height: 2;
    font-size: 1.5rem;
}

.p_20_d {
    line-height: 2;
    font-size: 1.25rem;
}

.p_25_800 {
    line-height: 2;
    font-size: 1.5rem;
    font-weight: 800;
}

.p_20_800 {
    line-height: 2;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Akkordeon */
.accordion {
display: grid;
gap: 10px;
}
/* Entfernt den Standard-Dreieck-Marker von summary in einigen Browsern */
.acc-summary {
list-style: none;
background-color:#F8F9FA;
border-radius: 8px;
}
.acc-item {
border: 1px solid var(--border);
border-radius: var(--radius);
background: #fff;
overflow: clip; /* verhindert Outline-Überlauf beim Öffnen */
}
/* Kopfzeile */
.acc-summary {
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
font-weight: 600;
position: relative;
user-select: none;
}
/* Fokus-styles für Tastaturbedienung */
.acc-summary:focus {
outline: none;
}
.acc-summary:focus-visible {
box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.35) inset;
}
/* Pfeil-Icon (CSS) rechts */
.acc-summary::before {
content: "?";
font-weight:800;
width: 40px;
height: 40px;
transform: rotateY(0deg);
transition: transform .5s ease;
line-height:1;
padding:10px;
border-radius: 4px;
border-style: solid;
border-width: 1px;
text-align: center;
}
/* gedrehter Pfeil wenn geöffnet */
.acc-item[open] > .acc-summary::before {
transform: rotateY(180deg);
border-color: var(--accent);
color:#fff;
background-color: #000;
padding:10px;
border-style: none;
content: "!";
}
/* Panel-Inhalt */
.acc-panel {
padding: 0 16px 16px;
color: var(--fg);
border-top: 1px solid var(--border);
/* sanfter "auf/zu"-Effekt */
display: grid;
grid-template-rows: 1fr;
animation: acc-open .25s ease;
}
/* Optional: leichte Hover-Interaktion */
.acc-summary:hover {
background: #ffcc00;
transition: all .5s ease; /* sehr helles Grau/Blau */
}
/* Animation beim Öffnen */
@keyframes acc-open {
from { opacity: 0; transform: translateY(-2px); }
to   { opacity: 1; transform: translateY(0); }
}
/* Reduziere Bewegung, falls vom User gewünscht */
@media (prefers-reduced-motion: reduce) {
.acc-summary::after { transition: none; }
.acc-panel { animation: none; }
}