.map-body {
  min-height: 100vh;
  overflow: hidden;
  background: #0a1520;
}
.map-shell {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}
.map-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  color: white;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(10,21,32,0.92), rgba(10,21,32,0.72));
}
.map-sidebar {
  padding: 18px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(10,21,32,0.86), rgba(10,21,32,0.52));
  backdrop-filter: blur(12px);
  color: white;
  z-index: 4;
}
.glass {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.glass .muted, .map-header .eyebrow { color: rgba(255,255,255,0.72); }
.stats-stack {
  padding: 16px;
  display: grid;
  gap: 16px;
}
.stats-stack strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}
.bus-list-wrap {
  overflow: auto;
  padding: 10px;
}
.bus-list {
  display: grid;
  gap: 10px;
}
.bus-item {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
}
.bus-item.active {
  border-color: rgba(19,145,111,0.9);
  background: rgba(19,145,111,0.14);
}
.bus-item strong {
  display: block;
  font-size: 18px;
}
.map-main {
  position: relative;
}
#publicMapView {
  width: 100%;
  height: calc(100vh - 84px);
}
@media (max-width: 980px) {
  .map-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .map-sidebar {
    order: 2;
  }
  #publicMapView {
    height: 60vh;
  }
}
