.uk-navbar-left {
  overflow: auto;
  max-width: 50%;
  white-space: nowrap;
  scrollbar-width: thin;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.uk-navbar-nav .uk-nav li {
  white-space: normal;
}

.cookie-hint{
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal zentriert */
  justify-content: center; /* vertikal zentriert */

  text-align: center;
  line-height: 1.4;


  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 18px;

  background: rgba(180, 255, 180, 0.6); /* hellgrün, 60% */
  border: 1px solid rgba(120, 200, 120, 0.9); /* dünner Rahmen */
  border-radius: 6px;

  color: #0044cc;
  font-weight: 700;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.cookie-hint.is-visible{
  opacity: 1;
}