/* === Search Bar === */
#search-container {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 1000;
  font-family: sans-serif;
  max-width: calc(100% - 20px);
}

#searchBox {
  width: 100%;
  padding: 10px 35px 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#searchResults {
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

#searchResults div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

#searchResults div:hover {
    background-color: #f5f5f5;
}


/* default button  */

#top-left-container{
  margin-top: 50px;
}

.layer-switcher{
  margin-top: 56px;
}