html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.poi-shell {
  display: flex;
  align-items: center;
  justify-content: center;
}

#map {
    position: absolute;
    left: 280px;
    right: 0;
    top: 0;
    bottom: 0;
}

.poi-marker {
  width: 24px;
  height: 24px;
  background: url("icons/crate.png") center / contain no-repeat;
}

.leaflet-tooltip.poi-tooltip {
  background: rgba(15, 15, 15, 0.9);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

#sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background: #1e1e1e;
    color: white;
    overflow-y: scroll;
    padding: 15px;
    z-index: 1000;
    scrollbar-width: none;
}

#sidebar::-webkit-scrollbar {
  display: none;
}

#sidebar h2 {
    margin-left: 6px;
    margin-top: 0;
}

#poi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#poi-list li {
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
}

#poi-list li:hover {
    background: #333;
}

#poi-list li.active {
    background: #ffcc00;
    color: black;
    font-weight: bold;
}

#search {
    width: 80%;
    padding: 8px;
    margin-left: 6px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

#search:focus {
    box-shadow: 0 0 0 2px #ffcc00;
}
