body {
  font-family: Roboto, sans-serif;
  background: #fffdf8;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin: 20px 0;
}

#main-container {
  display: flex;
  height: calc(100vh - 80px);
}

#sidebar {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

#map-container {
  width: 75%;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

#kpi-panel {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  font-family: sans-serif;
  margin-bottom: 20px;
  justify-content: space-around;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#steps h2 {
  text-align: center;
  margin-bottom: 10px;
}

#steps .step {
  background: #fdf6e3;
  color: #333;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#steps .step:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#steps .step.active {
  border: 2px solid #f39c12;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

#steps .step h3 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}

#steps .step p {
  margin: 2px 0;
}

.leaflet-marker-icon {
  border-radius: 50%;
  border: 2px solid #fff;
}
