.custom-control {
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
  }
  .category-title {
    cursor: pointer;
    color: #0078A8;
    font-size: 16px;
    padding: 5px 10px;
    display: inline-block;
    margin: 2px 0;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-align: center;
  }
  .category-title:hover {
    background-color: #e0e0e0;
  }
  .content {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
    display: none; /* initially hide all lists */
    overflow: auto;
    max-height: 200px;
  }
  .content li {
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
  }
  .content li:last-child {
    border-bottom: none;
  }

  #mapid {
    width: 100%;
    height: 850px;

    padding-right: 20px;
  }