/*  */

body { font-family: Arial, sans-serif; max-width:800px; margin: 0 auto; padding:0px 5px }

/* Flexbox für Bilder und Text */
.slide-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.slide-container img {
    margin-right: 20px;
    width: 150px;
    height: auto;
    cursor: pointer;
}
/* Popup-Stil */
.popup {
    display: none; /* Popup ist standardmäßig versteckt */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    max-width: 90%; /* Maximale Breite auf kleineren Geräten */
    width: 800px; /* Für große Bildschirme */
    height: auto; /* Bild passt sich automatisch an */
}
.popup img {
    width: 100%; /* Bildfüllung für das Popup */
    height: auto;
}
/* Overlay-Stil */
.overlay {
    display: none; /* Overlay ist standardmäßig versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
/* Responsives Design */
@media (max-width: 768px) {
    .popup {
        width: 95%; /* Für kleine Geräte */
    }
}
