#stockists_container {
  display: flex;
}

.left-sidebar {
  width: 300px; /* Adjust width based on your preference */
  background-color: #f5f5f5;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#stockist-list {
  list-style: none;
  padding: 0;
  max-height: 300px; /* Adjust the maximum height based on your preference */
  overflow-y: auto;
}

#stockist-list li {
  cursor: pointer;
  padding: 10px;
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#stockist-list li:hover {
  background-color: #f0f0f0;
}



.vendor-location-map {
  flex: 1;
  min-height: 350px;
  /* Add any additional styles for your map container */
}
