#map-container-2 {
  height: 400px;
  width: 100%;
  border: 1px solid #ddd;
}
.map-section-wrapper-2 {
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f1e3;
  padding: 2rem;
  border-radius: 6px;
  gap: 2rem;
  align-items: flex-start;
}

.map-sidebar-2 {
  flex: 1 1 300px;
  max-width: 400px;
  gap: 3rem;
  display: flex;
  flex-direction: column;
}

.map-container-holder-2 {
  flex: 2 1 600px;
  min-width: 300px;
  height: 100%;
}

#map-container-2 {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.map-title-2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2b2b29;
  margin-top: 0.5rem;
}

.map-filters-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-filters-2 li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #645f5f;
  gap: 0.5rem;
}

.map-filters-2 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #3a5c73;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.map-filters-2 input[type="checkbox"]:checked {
  background-color: #3a5c73;
  border-color: #3a5c73;
}

.map-filters-2 input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 12px;
  position: absolute;
  top: -2px;
  left: 3px;
}

.filter-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 0.5rem;
}

@media (max-width: 1199px) {
  .map-title-2 {
    text-align: center;
  }
  .map-sidebar-2 {
    flex: 1 1 300px;
    gap: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map-section-wrapper-2 {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .map-section-wrapper-2 {
    flex-direction: column;
    padding: 1rem;
  }

  .map-sidebar-2,
  .map-container-holder-2 {
    width: 100%;
  }

  #map-container-2 {
    height: 400px;
  }
}
