#map {
    position: absolute;
    top: 0;
    left: 320px;
    width: calc(100% - 320px);
    height: 100%;
  }
  #sidebar {
      position: absolute;
      top: 0;
      left: 0;
      width: 320px;
      height: 100%;
      overflow-y: auto;
      background: #f2f2f2;
      padding: 10px;
      box-sizing: border-box; /* Add this line */
      }

  .business-item {
      margin-bottom: 10px;
      padding: 5px;
      background: #fff;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      overflow: hidden; /* Add this line */
      text-overflow: ellipsis; /* Add this line */
      white-space: nowrap; /* Add this line */
  }

  .business-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .business-description {
    margin-bottom: 5px;
  }
  #search-box {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-bottom: 10px;
      max-width: 100%;
      box-sizing: border-box;
      outline: none;
  }
  .search-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .gm-style-iw-d > div {
      font-size: 15px;
      min-height: 70px;
  }
  .gm-style-iw-d > div h2 {
      font-size: 18px;
  }
  .gm-style-iw-d > div p {
      font-size: 15px;
  }

  @media (min-width: 768px) {
    #map {
      left: 320px;
      width: calc(100% - 320px);
      height: 100%;
    }
    #sidebar {
      top: 0;
      left: 0;
      width: 320px;
      height: 100%;
    }
  }