h3 { color: rgb(225, 164, 51) }

.navbar-brand { color: rgb(225, 164, 51) }

/*generierter Content: */

body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Sidebar nur auf großen Bildschirmen */
.sidebar {
    background-color: #2c3e50;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    border-right: 1px solid #34495e;
    overflow-y: auto;
    z-index: 100;
}

.main-content {
    margin-left: 260px;
    min-height: 100vh;
    padding: 2rem 1.5rem;
}

.nav-link {
    color: #bdc3c7;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 4px 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: #34495e;
    color: #00ffcc;
    transform: translateX(8px);
}

/* Mobile Anpassungen */
@media (max-width: 767.98px) {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
        padding: 1rem 1rem 2rem;
    }
    .slideshow-container {
        height: 70vh !important;
        margin-top: 10px;
    }
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #dee2e6;
}

.slideshow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slideshow-img.active {
    opacity: 1;
}

.caption {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    color: #00ffcc;
    z-index: 10;
    width: 285px;
    text-align: center;
}

.slideshow-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #00ffcc;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    background: rgba(0, 255, 204, 0.4);
    color: white;
    transform: scale(1.1);
}

h1 {
    color: #2c3e50;
}