html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.nav-link{
  position: relative;
}

.nav-link::after{
  content: '';
  opacity:0;
  transition: all 0.2s;
  height :2px;
  width:100%;
  background-color:Orange;
  position :absolute;
  bottom: 0;
  left:0;
}

.nav-link:hover::after{

  opacity: 1;

}

.custom-navbar {
  border-radius: 2rem; /* Bei einer Höhe von ca. 50px entspricht 2rem in etwa einer Halbkreisform an den Enden – ggf. anpassen */
}

.nav-content {
  display: inline-flex;       /* oder inline-block; alternativ funktioniert auch display: inline-flex für flexibles Layout */
  padding: 0.5rem 1rem;         /* Innenabstand, damit der Hintergrund etwas "Luft" hat */
  background-color: #343a40;    /* gewünschte Hintergrundfarbe, hier ein dunkles Grau */
  border-radius: 2rem;          /* abgerundete Enden, sodass es wie Halbkreise am Anfang und Ende aussieht */
}

/* Zusätzlich zentraler Container, damit der Wrapper in der Mitte erscheint */
.navbar .container {
  display: flex;
  justify-content: center;
}

