body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f8ff;
  color: #2c3e50;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: linear-gradient(120deg, #006994, #009688);
  color: white;
  text-align: center;
  padding: 1.5rem;
}

main {
  flex: 1;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#searchBar {
  padding: 0.8rem;
  border: 2px solid #009688;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.info-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
}

#map {
  flex: 1;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #e0f7fa;
}
