@charset "UTF-8";
@import "colums.css";
@import "navbar.css";
.centerImg{
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}
.image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cropped-image {
  position: relative;
  left: -100px; /* Crop 100px from the left */
  width: calc(100% + 100px); /* Scale the image to fit the container */
  height: auto;
}
.text-bold {
  font-weight: bold; /* Make the text bold */
}
.border-class {
  
  border: 2px solid black; /* Adjust the border properties as needed */
  padding: 2; /* Optional: Add some padding */
  margin: 2px; /* Optional: Add some margin */
  font-size: 18px;
}
.popup-content {

  min-height: 10px;
  max-height:40vh; /* Adjust the height as needed */
  max-width: 100%; /* Adjust the height as needed */
  min-width: 10px; /* Adjust the height as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: auto; /* Enable horizontal scrolling if content exceeds max-width */
  padding: 3px; /* Add some padding for better readability */
  box-sizing: border-box; /* Ensure padding is included in the dimensions */
}
#map-container {
  min-width: 50vw;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Ensure the map is below the header and nav */
}
#map {
  height: 50vh;
  width: 100%;
  z-index: 1; /* Ensure the map is below the header and nav */
  margin-bottom: 20px;
}
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {
  padding: 2px;
  text-align: center;
  background: white;
  z-index: 1000; /* Ensure the nav is on top */

}

.header h1 {
  font-size: 50px;
}



.mySlides {
  display: block;
  height:500px;
  text-align: center;
  width:100%;
  background-color:white;
  }


  a.shifted-anchor {
    display: block;
    position: relative;
    top: -150px;
    padding:50px;
  }

/* Slideshow container */
.slideshow-container {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height:auto;
  max-width: 1000px;
  position: relative;
  margin: auto;
  display: block;
  text-align: center;
  background-color:white;
}


/* Next & previous buttons */
.prev, .next,.play {
  background-color: rgba(137, 138, 135, 0.7);
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.play{
  right: 50%;
  top: 20px;
  border-radius: 3px 0 0 3px;
}
.prev{
  left: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover,.play:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* Center the dots */
.dots-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: -15px;
}
/* The dots/bullets/indicators */
.dot {
 
  /*cursor: pointer;*/
  height: 15px;
  width: 15px;
  top:10%;
  left:auto;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
/* @media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

@media only screen and (max-width: 600px) {
  .prev, .next {
    font-size: 14px;
    padding: 10px;
  }
} */
a {
  pointer-events: auto; /* Sicherstellen, dass Klicks erlaubt sind */
  z-index: 1; /* Sicherstellen, dass Links über anderen Elementen liegen */
}