html, body {
  width: 100%;
  padding: 0;
  margin: 0;
}

path:focus,
button:focus,
svg:focus {
  outline: none;
  box-shadow: none;
}

.content {
  position: relative;
}

#map {
  width: 100%;
  min-height: 600px;
  position: relative;
  z-index: 1;
}

#navigation {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
}

#navigation button {
  background-color: #FFC107; /* Ярко-жёлтый */
    border: none;
    color: #212529; /* Тёмный текст */
    padding: 11px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#navigation button:hover {
  background-color: #e0a800; /* Более насыщенный жёлтый */
  transform: translateY(-2px);
}

#navigation button:active,
#navigation button.active {
  background-color: #d39e00;
  transform: translateY(1px);
}
