.modal-header .close {
    padding: 1.1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    color: var(--darkmode-font-color);
}

button.close {
    background: none;
    /* Standard-Hintergrund entfernen */
    padding: 0;
    /* Setze Padding, wie du es brauchst */
    border: 0;
    appearance: none;
    cursor: pointer;
    /* Zeigt an, dass es klickbar ist */
}

button.close i {
    font-size: 1.5rem;
    /* Behalte die gewünschte Größe bei */
    transition: transform 0.2s ease;
    /* Sanfter Übergang für die Drehung */
    color: var(--darkmode-font-color);
    /* Deine Farbe */
    display: inline-block;
    /* WICHTIG: Für die Drehung notwendig */
}

button.close:hover i {
    transform: rotate(90deg);
    /* Drehung um 90 Grad beim Hover */
    /* Optional:  color: red;  Farbänderung beim Hover, falls gewünscht */
}

.modal.modal-download-app i.fab {
    font-size: 7rem;
    color: #f1f1f1;
    cursor: pointer;
}

.modal.modal-download-app img {
    max-width: 150px;
    cursor: pointer;
}

.modal-content {
    background-color: var(--darkmode-background-color);
}

.disabled-download-app {
    pointer-events: none;
    opacity: 0.4;
}

.oldCenter {
    text-align: center;
}

/* =======  galleries modal images  ======= */
/* The Modal (background) */

.gallery.modal {
    display: none;
    position: fixed;
    z-index: 1500;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

/* Modal Content */

.gallery .modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
    max-height: calc(100% - 100px);
    height: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-default);
}

.gallery .modal-content img {
    max-width: 98%;
    max-height: 80%;
    display: flex;
    margin: auto;
}

/* The Close Button */

.gallery .close {
    /* WICHTIG: btn-close verwenden */
    position: absolute;
    top: 20px;
    right: 25px;
    /* font-size wird jetzt über das <i> Element gesteuert */
    /* color wird über das <i> Element und CSS-Variablen gesteuert */
    /* Entferne unnötige Stile, die von btn-close bereitgestellt werden */
    background: none;
    /* Standard-Hintergrund entfernen */
    padding: 0;
    border: 0;
    appearance: none;
}

.gallery .close i {
    font-size: 2rem;
    /* Kontrolliere die Größe über das Icon */
    transition: transform 0.2s ease;
    /* Sanfter Übergang für die Drehung */
    display: inline-block;
    /* Wichtig für die Transformation */
    color: white;
    /* Ursprüngliche Farbe */

}


.gallery .close:hover i,
.gallery .close:focus i {
    transform: rotate(90deg);
    cursor: pointer;
    /* Geänderte Farbe beim Hover/Focus */
    /* text-decoration: none;  Nicht notwendig für ein Icon */
}

/* Hide the slides by default */

.gallery .mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.gallery .myImage {
    display: block;
    width: 100%;
    height: 100%;
}

/* Next & previous buttons */

.gallery .prev,
.gallery .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-right: 40px;
    margin-left: 40px;
    padding: 16px;
    margin-top: -50px;
    color: white !important;
    font-weight: bold;
    font-size: 60px;
    transition: background-color 0.3s ease;
    border-radius: var(--border-radius-default);
    -webkit-user-select: none;
    user-select: none;
}

/* Position the "next button" to the right */

.gallery .next {
    right: 0;
    border-radius: var(--border-radius-default);
}

/* On hover, add a black background color with a little bit see-through */

.gallery .prev:hover,
.gallery .next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.gallery .caption {
    color: white !important;
    width: fit-content;
    display: block;
    margin: auto;
    text-align: center;
    position: relative;
    /* WICHTIG: Für die absolute Positionierung des Pseudo-Elements */
    z-index: 1;
    /* Stellt sicher, dass der Text ÜBER dem Verlauf liegt */
    padding: 0.5rem;
    /* Optional: Innenabstand, damit der Verlauf nicht direkt am Text klebt*/
    margin-top: 1rem;
}

.gallery .caption::before {
    /* Oder ::after, das Ergebnis ist gleich */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Verlauf anpassen */
    z-index: -1;
    /* Platziert den Verlauf HINTER dem Text */
    border-radius: var(--border-radius-default);
    /* Optional: Übernimmt border-radius vom Elternelement*/
}

.gallery .caption h4 {
    color: white;
    margin-bottom: 0;
    line-height: normal;
}

.gallery .caption p {
    margin: 0;
    color: #cccc;
}

.gallery .caption .copyrightImage {
    font-size: 0.8rem;
}

.gallery .copyright {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin-top: -27px;
    position: relative;
    max-width: 740px;
    text-align: right;
    color: white;
    padding-right: 10px;
    font-size: 0.8rem;
}
