#stockists_container {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}

.left-sidebar {
  width: 100%; /* Take full width on smaller screens */
  max-width: 300px; /* Set a maximum width for larger screens */
  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;
  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;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  #stockists_container {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }

  .left-sidebar {
    max-width: none; /* Allow the sidebar to take full width on smaller screens */
  }

  .vendor-location-map {
    min-height: 400px; /* Adjust the map height for smaller screens */
  }
}
