html,
body {
  margin: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

.topbar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  gap: 8px;
}

.topbar-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.search-row input {
  flex: 1 1 260px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.inline-label {
  font-size: 12px;
  color: #333;
}

.search-row select {
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 8px;
  background: #fff;
}

.search-row button {
  height: 32px;
  padding: 0 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  background: #f4f4f4;
  cursor: pointer;
}

#officeBtn {
  border-color: #d97706;
  background: #fff7ed;
}

.stats-panel {
  font-size: 13px;
  color: #222;
  padding: 4px 2px 0;
  line-height: 1.4;
}

#map {
  flex: 1;
  min-height: 0;
}
