.navigation-card {
  position: absolute;
  bottom: 1rem;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
}
.navigation-card .nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navigation-card .nav-time {
  font-size: 28px;
  font-weight: 600;
  color: #1C1C1E;
}
.navigation-card .nav-distance {
  font-size: 16px;
  color: #8E8E93;
  font-weight: 500;
}
.navigation-card .nav-instruction {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navigation-card .nav-icon {
  font-size: 42px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F2F7;
  border-radius: 12px;
  flex-shrink: 0;
}
.navigation-card .nav-text {
  flex: 1;
}
.navigation-card .nav-action {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 4px;
}
.navigation-card .nav-next-distance {
  font-size: 14px;
  color: #8E8E93;
  font-weight: 500;
}
.navigation-card .nav-loading {
  text-align: center;
  color: #8E8E93;
  font-size: 16px;
}

.map-container__action-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.map-container__action-button .label:empty {
  display: none;
}
.map-container__action-button svg, .map-container__action-button i {
  width: 20px;
  height: 20px;
  color: #FF6B35;
  stroke-width: 2.5;
}
.map-container__action-button:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transform: scale(1.05);
}
.map-container__action-button:active {
  background: #FF6B35;
  transform: scale(0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.map-container {
  position: relative;
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  flex: 1;
  overflow: hidden;
}
.map-container .map-rotation-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.3s ease-out;
  height: 141.42vmax;
  width: 141.42vmax;
}
.map-container .map {
  height: 100%;
  width: 100%;
  position: relative;
}
.map-container .map-container__controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}
.map-container .map-container__controls .map-container__action-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.map-container .map-container__controls .map-container__action-button .label:empty {
  display: none;
}
.map-container .map-container__controls .map-container__action-button svg, .map-container .map-container__controls .map-container__action-button i {
  width: 20px;
  height: 20px;
  color: #FF6B35;
  stroke-width: 2.5;
}
.map-container .map-container__controls .map-container__action-button:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transform: scale(1.05);
}
.map-container .map-container__controls .map-container__action-button:active {
  background: #FF6B35;
  transform: scale(0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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