* { box-sizing: border-box; margin: 0; }
html, body { height: 100%; font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif; }
body { display: flex; flex-direction: column; }

header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; background: #1c2733; color: #f2f5f8;
}
.brand { font-size: 17px; font-weight: 700; }
.brand .sub { font-size: 12.5px; font-weight: 400; color: #9fb0c0; margin-left: 10px; }
.status { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #cdd8e2; }
.status button {
  background: #2f6fed; color: #fff; border: 0; border-radius: 6px;
  padding: 6px 12px; font-size: 13px; cursor: pointer;
}
.status button:hover { background: #245bd0; }

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

#sidebar {
  width: 320px; overflow-y: auto; border-right: 1px solid #dde3e9;
  background: #fbfcfd; display: flex; flex-direction: column;
}
.side-head {
  padding: 10px 14px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #67788a; position: sticky; top: 0; background: #fbfcfd;
}
#poi-list { list-style: none; flex: 1; }
#poi-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; cursor: pointer; border-top: 1px solid #eef1f4;
}
#poi-list li:hover { background: #eef4fb; }
.dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(0,0,0,.25); }
.poi-name { font-size: 13.5px; font-weight: 600; color: #22303d; }
.poi-meta { font-size: 12px; color: #67788a; }
.grow { flex: 1; min-width: 0; }
.drive { font-size: 12.5px; color: #34495e; white-space: nowrap; text-align: right; }
.drive .mi { color: #8896a5; }
.side-foot { padding: 10px 14px; font-size: 11px; color: #8896a5; border-top: 1px solid #eef1f4; }

.legend {
  background: rgba(255,255,255,.92); padding: 8px 11px; border-radius: 8px;
  font-size: 12px; line-height: 1.9; color: #33414f; box-shadow: 0 1px 5px rgba(0,0,0,.25);
}
.legend .dot { display: inline-block; vertical-align: -2px; margin-right: 7px; }

.leaflet-popup-content { font-size: 13px; line-height: 1.5; }
.leaflet-popup-content b { font-size: 14px; }
.badge { display: inline-block; padding: 1px 8px; border-radius: 10px; font-size: 12px; font-weight: 600; }
