/* Light Mode */
body.light-mode .lightbox-overlay {
    background-color: rgba(255, 255, 255, 0.9);
}

body.light-mode .lightbox-container {
    color: #000;
}

/* Dark Mode */
body.dark-mode .lightbox-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

body.dark-mode .lightbox-container {
    color: #fff;
}

/* Container der Lightbox */
.lightbox-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
/*    background: #fff; */
    z-index: 1000;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    border-radius: 8px;
    overflow: hidden;
}

/* Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}


/* Wenn nur der Close-Button angezeigt werden soll (bei Webseiten) */
.lightbox-menu.only-close {
    justify-content: center;
}

/* Styling für die Buttons in der Menü-Leiste */
.lightbox-menu button {
    background: transparent;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 4px;
    margin: 0;
}

/* Menü-Leiste */
.lightbox-menu {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background-color: rgba(71, 130, 184, 0.6); /* 60% transparent */
    border-radius: 0 0 15px 15px; /* Stärkere Abrundung */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Weniger Abstand zwischen Buttons */
    z-index: 1100;
    padding: 2px;
    box-sizing: border-box;
    transition: top 0.3s ease;
}

