body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

header .logo {
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

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

#sidebar {
  position: absolute;
  right: 0;
  top: 60px;
  bottom: 0;
  width: 250px;
  background: white;
  overflow-y: auto;
  padding: 10px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

#switch-container {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  display: flex;
  gap: 5px;
  padding: 5px;
  z-index: 1000;
}

#switch-container button {
  border: none;
  background: #e6e6e6;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

#switch-container button.active {
  background: #007bff;
  color: white;
}
