:root {
  --primary-color: #2c7c44;
  --light-color: #f5f5f5;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  color: #333;
}

#header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

#container {
  display: flex;
  height: calc(100vh - 70px);
}

#sidebar {
  width: 300px;
  background: var(--light-color);
  padding: 10px;
  overflow-y: auto;
}

#map {
  flex: 1;
  height: 100%;
}

.panel {
  background: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.panel h2 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.legend-color {
  width: 20px;
  height: 20px;
  background-color: #1a9641;
  margin-right: 8px;
  border: 1px solid #ccc;
}
