nav a.active {
    font-weight: bold;
}

nav.navbar {
  z-index: 1050;
  position: relative;
}

.container-fluid {
  background-color: rgb(33, 37, 41);
}

#inline-calendar {
  width: 100%;
  margin: auto;
}

.responsive-bold {
  font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden; /* Verhindert horizontalen Scroll */
    z-index: 0;
}

#fallback img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90%; 
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translate(-50%, -50%); /* Zentriert das Video zusammen mnit position: absolute mittig 
    object-fit: cover; /* Video bedeckt den Container proportional */
    min-width: 100%; /* Optional: Stellt sicher, dass Video mind. Bildschirmbreite hat */
    z-index: 0;
}

@media print {
  .no-print {
    display: none;
  }
}

@media (min-width: 1200px) {
  .responsive-bold {
    font-weight: normal;
  }
}