html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

#map {
  height: calc(100vh - 92px);
}

.app-header {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  background: #0f172a;
  color: #fff;
  align-items: center;
}

.brand {
  font-weight: 600;
  font-size: 1.1rem;
}

.favorites-bar {
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: #e5e7eb;
}

.favorites-bar .fav {
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-tabs .nav-link {
  cursor: pointer;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }
