.navbar-scroll {
    background-color: #24355c;
}
.navbar-scrolled {
    background-color: #24355c;
}
.carousel-inner {
    position: relative;
}

.carousel-item {
    text-align: center; /* Zentrierung des Inhalts innerhalb des Carousel-Items */
}

.image-wrapper {
    position: relative;
}

.carousel-indicators {
    position: absolute;
    bottom: -30px; /* Anpassung der vertikalen Position der Indikatoren */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5); /* Hintergrundfarbe der Indikatoren */
    border: none;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    padding: 0;
}

.carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9); /* Hintergrundfarbe des aktiven Indikators */
}

.carousel-caption-wrapper {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5); /* Hintergrundfarbe für den Text */
    color: white;
    padding: 10px;
    margin-top: 10px; /* Abstand zum Bild */
}

