.floors {
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2000;
  background-color: white;
  padding: 8px 2px;
  border: 1px solid #e1e2e6;
  border-radius: 5px;
  transition: right 0.3s ease, top 0.3s ease;
}
#floors-list {
  max-height: 192px;
  overflow-y: auto;
}

@media (max-height: 500px) {
  .floors {
    top: 117px;
    transform: translateY(0%);
  }
  #floors-list {
    max-height: 92px;
  }
}

#floors-list::-webkit-scrollbar {
  width: 6px;
}

#floors-list::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 3px;
}

#floors-list::-webkit-scrollbar-thumb:hover {
  background-color: #a1a1a1;
}

#floors-list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 3px;
}
.floors-shifted {
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  background-color: white;
  padding: 8px 2px;
  border: 1px solid #e1e2e6;
  border-radius: 5px;
  transition: right 0.3s ease, top 0.3s ease;
}

#floors ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#floors p {
  border-bottom: 1px solid #e1e2e6;
  height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
#floors ul li {
  width: 37px;
  height: 27px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  font-weight: 500;
  width: 100%;
  text-align: center;
  font-family: Poppins;
}
#floors ul li.active {
  cursor: pointer;
  color: #0085ff;
}

#floors ul li:hover {
  background-color: rgb(120 162 204 / 0.2);
  cursor: pointer;
  color: #0085ff;
}

#toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  border-radius: 5px;
  background-color: white;
  padding: 8px 2px;
}

.coordinates {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2000;
  border-radius: 5px;
  background-color: white;
  padding: 8px 2px;
}

.floor-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px 12px 0 0;
}

.floor-map-header span {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.floor-map-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}


