html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Stelle sicher, dass die Höhe der Seite immer 100% beträgt */
    font-variant: normal;
}

.footer-content-md {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-container-md {
        text-align: center;
        align-content: center;
    }

    .footer-content-md {
        margin-top: 10px;
        text-align: center;
    }
}

.content {
    min-height: calc(100vh - 73px); /* Stelle sicher, dass der Inhalt genügend Platz hat und der Footer unten bleibt */
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .content {
        min-height: calc(100vh - 107px); /* Stelle sicher, dass der Inhalt genügend Platz hat und der Footer unten bleibt */
        display: flex;
        flex-direction: column;
    }
}

.footer {
    position: absolute; /* Damit der Footer immer am unteren Rand bleibt */
    width: 100%;
    background-color: #00679b;
}

.custom-footer-right {
    padding: 0px 20px 0px 20px;
}

.custom-footer-button {
    color: white;
    text-decoration: none;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    border: none;
    vertical-align: baseline;
}

.custom-footer-button:hover {
    color: white;
    text-decoration: underline;
}

.no-style {
    all: unset;
    width: 100%;
}



.image-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.image-wrapper img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    display: block;
}

.close-btn,
.preview-btn {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

.close-btn {
    top: 4px;
    right: 4px;
}

.preview-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-wrapper:hover .close-btn,
.image-wrapper:hover .preview-btn {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}