/* === Global Reset === */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0b1a2b;
  color: #ffffff;
}

/* === Header === */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #07111f, #0b1f33);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 1000;
}

.site-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.site-title h1 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.site-title span {
  font-size: 0.8rem;
  color: #9fb3c8;
}

/* === Map === */
#map {
  height: calc(100vh - 72px);
  width: 100%;
}

/* === Right Panel (starter) === */
.right-panel {
  position: absolute;
  top: 90px;
  right: 16px;
  width: 300px;
  background: rgba(10, 20, 35, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.title-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.controls label {
  font-size: 0.75rem;
  color: #9fb3c8;
}

.controls select,
.controls button {
  background: #0f2438;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  cursor: pointer;
}

.controls select:hover,
.controls button:hover {
  background: #16314d;
}