html, body {
  margin: 0;
  padding: 0;
  overflow: auto;
  box-sizing: border-box;
  height: 100vh;
}

#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.car-marker-icon,
.destination-marker {
  background: transparent !important;
  border: none !important;
}

.navigation-card {
  position: absolute;
  bottom: 116px;
  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;
}

.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);
}

.nav-time {
  font-size: 28px;
  font-weight: 600;
  color: #1C1C1E;
}

.nav-distance {
  font-size: 16px;
  color: #8E8E93;
  font-weight: 500;
}

.nav-instruction {
  display: flex;
  align-items: center;
  gap: 16px;
}

.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;
}

.nav-text {
  flex: 1;
}

.nav-action {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 4px;
}

.nav-next-distance {
  font-size: 14px;
  color: #8E8E93;
  font-weight: 500;
}

.nav-loading {
  text-align: center;
  color: #8E8E93;
  font-size: 16px;
}

.recenter-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.recenter-btn:hover {
  background: #F2F2F7;
  transform: scale(1.05);
}
.recenter-btn:active {
  transform: scale(0.95);
}
.recenter-btn svg {
  color: #007AFF;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 12px !important;
  overflow: hidden;
}
.leaflet-control-zoom a {
  background: white !important;
  color: #007AFF !important;
  border: none !important;
  font-size: 20px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}
.leaflet-control-zoom a:hover {
  background: #F2F2F7 !important;
}

.leaflet-routing-container {
  display: none;
}

@media (max-width: 768px) {
  .navigation-card {
    left: 10px;
    right: 10px;
    padding: 16px;
  }
  .nav-time {
    font-size: 24px;
  }
  .nav-action {
    font-size: 16px;
  }
}
.navigation-card {
  transition: max-height 0.3s ease;
}
.navigation-card.expanded {
  max-height: 60vh;
  overflow-y: auto;
}

.nav-header-expanded {
  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);
}

.nav-header-left {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.collapse-btn:hover {
  background: #F2F2F7;
}
.collapse-btn svg {
  color: #8E8E93;
}

.nav-instruction {
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 8px;
  padding: 8px;
  margin: -8px;
}
.nav-instruction:hover {
  background: rgba(0, 0, 0, 0.02);
}
.nav-instruction:active {
  background: rgba(0, 0, 0, 0.05);
}
.nav-instruction svg {
  flex-shrink: 0;
}

.instructions-list {
  max-height: 50vh;
  overflow-y: auto;
  margin-top: 12px;
}

.instruction-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #F2F2F7;
  transition: background 0.2s;
}
.instruction-item.current {
  background: rgba(255, 107, 53, 0.1);
  border-left: 3px solid #FF6B35;
}
.instruction-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.instruction-icon-small {
  font-size: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  flex-shrink: 0;
}

.instruction-details {
  flex: 1;
}

.instruction-text {
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1E;
  margin-bottom: 2px;
}

.instruction-distance {
  font-size: 13px;
  color: #8E8E93;
}

.location-marker-icon {
  background: transparent !important;
  border: none !important;
}

.follow-btn,
.overview-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.follow-btn:hover,
.overview-btn:hover {
  background: #F2F2F7;
  transform: scale(1.05);
}
.follow-btn:active,
.overview-btn:active {
  transform: scale(0.95);
}
.follow-btn svg,
.overview-btn svg {
  color: #8E8E93;
  transition: color 0.2s;
}

.follow-btn.active {
  background: #FF6B35;
}
.follow-btn.active svg {
  color: white;
}

.overview-btn svg {
  color: #8E8E93;
}

.destination-marker {
  cursor: pointer;
  transition: all 0.2s ease;
}
.destination-marker:hover {
  transform: scale(1.1);
  z-index: 100;
}
.destination-marker .logo-square {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  position: relative;
}
.destination-marker .logo-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.destination-marker .logo-square .arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

/*# sourceMappingURL=tour-map.css.map */
