.map {
  background-image: url("../map.png");
  height: 60vh;
  width: 1920px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .map {
    width: 1024px;
  }
}
.map .points {
  width: 1920px;
  height: 100%;
  position: absolute;
  top: 0;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .map .points {
    width: 1024px;
  }
}
.map .points .point {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
  transform: translateX(-50%) translateY(-50%);
}
.map .points .point.filtered {
  opacity: 0.3;
}
.map .points .point.highlight {
  transform: translateX(-50%) translateY(-50%) scale(1.3);
  z-index: 20;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.map .points .point .point-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 100;
  display: none;
  pointer-events: none;
}
.map .points .point:hover .point-tooltip {
  display: block;
}

.map_container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 60vh; /* Add padding to account for map height */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.map_container .map-tabs {
  display: flex;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 5; /* Ensure tabs are above map */
}
.map_container .map-tabs .tab {
  padding: 10px 15px;
  margin: 0 5px 5px;
  background-color: #f1f1f1;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.map_container .map-tabs .tab.active {
  background-color: #007bff;
  color: white;
}
.map_container .map-tabs .tab:hover:not(.active) {
  background-color: #e0e0e0;
}
.map_container .map-search {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 10px;
  position: relative;
  z-index: 5; /* Ensure search is above map */
}
.map_container .map-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.map_container .map-search input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.map_container .map-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  display: none;
}
.map_container .map-search button:hover {
  color: #666;
}
.map_container .map-points-list {
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 5; /* Ensure list is above map */
}
.map_container .map-points-list .points-list-type {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.map_container .map-points-list .points-list-type.active {
  display: block;
  animation: fadeIn 0.3s;
}
.map_container .map-points-list .points-list-type h3 {
  margin-top: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.map_container .map-points-list .points-list-type ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
.map_container .map-points-list .points-list-type li {
  display: flex;
  align-items: center;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 3px;
  padding: 8px;
}
.map_container .map-points-list .points-list-type li:hover {
  background-color: #f0f0f0;
}
.map_container .map-points-list .points-list-type li .color-marker {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.map_container .no-results {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
  margin-top: 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #eee;
}
.map_container .point.hidden,
.map_container .points-list-type li.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=screen.css.map */
