html, body{
    height: 100%;
    margin: 0;
    background: #f5f7f8;
    font-family: 'PwC Helvetica Neue', arial, serif;
    /*border-bottom: 1px solid rgba(242,242,242,0.85);*/
    color:#464646;
    /*overflow: hidden;*/
  }

  #header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 2000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  #logo {
    height: 38px;
    width: 50px;
    display:block;
  }

  #burger {
    width: 30px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    z-index: 2100;
    margin-right:30px;
  }

  #burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: black;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
  }
  
  #burger span:nth-child(1) {
    top: 0;
  }
  #burger span:nth-child(2) {
    top: 8px;
  }
  #burger span:nth-child(3) {
    top: 16px;
  }

  /* Wenn Menü aktiv ist – zu "X" */
#burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

#burger.active span:nth-child(2) {
  opacity: 0;
}

#burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

  #menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: #f3f3f3;*/
    background: #f5f7f8;
    z-index: 1900;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0 20px 0; /* Abstand oben wegen Header */
  }

  #menuOverlay.hidden {
    display: none;
  }

  #menu {
    color: black;
    display: flex;
    flex-direction: column;
    width:100%;
    height: auto;
  }

  #menu button {
    border: none;
    text-align: left;
  }

  #menu.menu-content button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 15px;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    font-weight: normal;
    line-height: 27px;
  }

  #menu.menu-content button:hover {
    background-color: #fd5108;
    color: white;
  }
  
  #menu.menu-content button .arrow {
    font-size: 16px;
    color: inherit;
    margin-left: 8px;
  }

  #content {
    padding: 75px 15px 15px 15px; /* Platz für Header */
    z-index: 1700;
  }
  

  img {
    image-rendering: auto;
  }

/*#mapWrapper {*/
/*  width: 90vw;              !* Or use a fixed size like 360px or 500px *!*/
/*  max-width: 800px;         !* Optional cap *!*/
/*  height: 87vh;             !* Adjust height as needed *!*/
/*  margin: auto;        !* Centers horizontally + some top space *!*/
/*  background-color: #dddddd;*/
/*  border-radius: 12px;*/
/*  overflow: hidden;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
/*  position: relative;*/
/*}*/

#mapWrapper {
  position: absolute;
  top: 60px; /* header height */
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
}

#mapWrapper.hidden {
  display: none;
}

#map {
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 12px;
}

  #controls {
    position: absolute;
    top: 10px; /* statt 10px, unterhalb des Headers */
    left: 10px;
    background: white;
    padding: 8px;
    z-index: 1000; /* höher als Karte, aber unter Menü */
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
  }

  select {
    font-size: 16px;
    padding: 4px;
  }

  /*@keyframes blinkBorderToilette {*/
  /*  0%   { border-color: red; background-color: green; }*/
  /*  50%  { border-color: green; background-color: red; }*/
  /*  100% { border-color: red; background-color: green; }*/
  /*}*/

  /*@keyframes blinkBorderBuehne {*/
  /*  0%   { border-color: blue; background-color: orange; }*/
  /*  50%  { border-color: orange; background-color: red; }*/
  /*  100% { border-color: blue; background-color: orange; }*/
  /*}*/

  /*@keyframes blinkBorderEssen {*/
  /*  0%   { border-color: yellow; background-color: purple; }*/
  /*  50%  { border-color: purple; background-color: yellow; }*/
  /*  100% { border-color: yellow; background-color: purple; }*/
  /*}*/

  /*@keyframes blinkBorderGetraenke {*/
  /*  0%   { border-color: yellow; background-color: purple; }*/
  /*  50%  { border-color: purple; background-color: yellow; }*/
  /*  100% { border-color: yellow; background-color: purple; }*/
  /*}*/
  /*.blinking-icon {*/
  /*  width: 32px;*/
  /*  height: 32px;*/
  /*  //background: rgba(255, 255, 255, 0.5);*/
  /*  //border: 2px solid red;*/
  /*  border-radius: 50%;*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: center;*/
  /*  font-size: 20px;*/
  /*  line-height: 1;*/
  /*}*/

.blinking-icon img.icon-img {
  image-rendering: auto;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/*.blinking-icon.buehne{*/
/*    animation: blinkBorderBuehne 800ms infinite;*/
/*  }*/

/*  .blinking-icon.essen{*/
/*    animation: blinkBorderEssen 800ms infinite;*/
/*  }*/

/*  .blinking-icon.toilette{*/
/*    animation: blinkBorderToilette 800ms infinite;*/
/*  }*/

/*  .blinking-icon.getraenke{*/
/*    animation: blinkBorderGetraenke 800ms infinite;*/
/*  }*/

  /*.leaflet-tile-pane.filter {*/
  /*  filter: grayscale(50%) contrast(70%) brightness(130%);*/
  /*}*/

  /*.leaflet-tile-pane.filter2 {*/
  /*  filter: grayscale(90%) contrast(70%) brightness(130%);*/
  /*}*/

  .geo-error{
    position: absolute;
    top:60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 50, 50, 0.9);
    color: white;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    z-index: 1001;
    display: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }

#customSelectWrapper {
  position: relative;
  width: 220px;
  font-size: 16px;
  font-family: inherit;
}

#customSelect {
  background: white;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: border 0.2s ease;
}

#customSelect img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

#customSelect:hover {
  border-color: #888;
}

.selectOptions {
  display: none;
  position: absolute;
  top: calc(100% + 2px); /* remove gap */
  left: 0;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.selectOptions li {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  border-radius: 4px;
}

.selectOptions li img {
  width: 20px;
  height: 20px;
}

.selectOptions li:hover:not(.active) {
  background-color: #f0f0f0;
}

.selectOptions li.active {
  background-color: #007bff;
  color: white;
}

/*.selectOptions li.active img {*/
/*  filter: brightness(0) invert(1); !* makes the icon white on blue *!*/
/*}*/




