body.map-page {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

#map {
  width: 100%;
  height: 100vh;
}

.coordinates-panel {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 1000;
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(calc(100vw - 24px), 300px);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 7, 7, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
}

#coordInput {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  font: 800 15px/1 "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

#coordInput::placeholder {
  color: var(--muted);
}

#coordInput:focus {
  border-color: rgba(245, 245, 242, 0.48);
  background: rgba(255, 255, 255, 0.075);
}

#goButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

#goButton:hover {
  border-color: rgba(245, 245, 242, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

#goButton:active {
  transform: scale(0.985);
}

#goButton svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

@media (max-width: 1000px) {
  .coordinates-panel {
    bottom: 40px;
    width: min(calc(100vw - 18px), 300px);
    padding: 7px;
  }

  #coordInput {
    font-size: 14px;
  }

  #goButton svg {
    width: 18px;
    height: 18px;
  }
}
