* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  height: 100vh;
  font-family: Georgia, serif;
  background: #f5f0e8;
  color: #2c2416;
}

#map {
  flex: 1;
  height: 100vh;
}

#sidebar {
  width: 360px;
  height: 100vh;
  background: #faf7f0;
  border-left: 1px solid #d4c9a8;
  padding: 24px;
  overflow-y: auto;
}

#sidebar h1 {
  font-size: 1.3rem;
  color: #8B6914;
  margin-bottom: 16px;
  line-height: 1.3;
}

#sidebar h2 {
  font-size: 1.1rem;
  color: #2c2416;
  margin-bottom: 12px;
}

#instructions {
  color: #6b5a3a;
  font-size: 0.95rem;
  line-height: 1.6;
}

#property-history {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a2e1a;
}