/*NAVBAR */
.navbar-brand {
	display: flex;
	align-items: left;
	text-align: left;
}

.navbar-brand img {
	height: 1.5rem;
	border-radius: 10%;
	margin-right: 0.5rem;
}

.container-fluid {
	padding-left: 10;
}

/* Content Area Styling */
.content-area {
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.content-privacy {
	border-radius: 10px;
	padding: 0px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

/* Carousel Styling */
.carousel-inner {
	min-height: 400px;
	height: auto;
}

.carousel-inner img {
	object-fit: contain; /* Verhindert das Abschneiden von Bildern */
	max-height: 400px;
	margin: auto; /* Zentriert die Bilder */
}

/* Aktiver Indikator */
.carousel-indicators .active {
	background-color: #9fdb6c !important; /* Grün für den aktiven Strich */
}

.carousel-caption {
	background: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 5px;
}

/* Carousel Image Wrapper */
.carousel-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Passt sich der Carousel-Höhe an */
}

.carousel-image-wrapper img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}