#accessibility-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #124cff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
}
#accessibility-panel {
    width: 350px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Grid-Elemente */
.accessibility-item {
    background: white;
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    width: 100%;
}

.accessibility-item:hover {
    background: #e9ecef;
}

/* Bleibt grau nach Klick */
.accessibility-item.active {
    background: #e9ecef;
}

.accessibility-item-small {
    background: white;
    border-radius: 6px;
    padding: 5px;
    text-align: left; /* Text links ausrichten */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #000;

    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    justify-content: flex-start; /* Text und Icon linksbündig */

    height: 40px; /* Höhe anpassen (z. B. 40px für eine gute Optik) */
    width: 100%; /* Volle Breite */

    gap: 10px; /* Abstand zwischen Icon und Text */
    font-size: x-small;
}

.accessibility-item-small p {
    margin: 0; /* Entfernt Standard-Abstand des <p>-Tags */
    line-height: 1.2; /* Angemessene Zeilenhöhe */
    font-size: small; /* Passende Schriftgröße */
}

.accessibility-item-small img.accessibility-icon {
    width: 24px; /* SVG-Größe etwas größer für bessere Sichtbarkeit */
    height: 24px; /* SVG-Größe anpassen */
}

.accessibility-item:hover {
    background: #e9ecef;
}
/* Icons */
.accessibility-icon {
    width: 40px;
    height: 40px;
}
.accessibility-btn {
    display: block;
    width: 100%;
    margin: 2px 0;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    background: #000;
    color: #fff;
    border: none;
}
.accessibility-btn:hover {
    background: #444;
}
.high-contrast {
    background-color: black !important;
    color: yellow !important;
}
.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.large-cursor {
    cursor: url('../../images/home/cursor.svg') 16 16, auto !important;
}
img.hidden {
    display: none;
}

/* Sicherstellen, dass alle Elemente innerhalb des Grid-Containers gleichmäßig aufgeteilt werden */
.row-cols-3 .col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paused-animations * {
    animation-play-state: paused !important;
    transition: none !important;
}

.invert-colors {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.accessibility-menu-content {
    display: none;
    transition: max-height 0.3s ease-out;
    padding-bottom: 8px;
}

.accessibility-menu-content.show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-height: 700px; /* Höhe für das Drop-down Menü */
}

.accessibility-menu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: black;
    padding: 8px 0;
}

.menu-line {
    width: 100%; /* Linien über die gesamte Breite */
    border: none;
    border-top: 1px solid #000; /* Schwarze Linie */
    margin: 3px 0; /* Abstand zwischen den Linien und dem Text */
}

#arrow {
    font-size: 16px;
}


