html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #f6f3ea;
}

#_dash-app-content {
  height: 100%;
}

.map-shell {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.menu-toggle {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.warehouse-overlay {
  position: absolute;
  top: 72px;
  left: 16px;
  z-index: 25;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.warehouse-overlay.closed {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.warehouse-overlay.open {
  opacity: 1;
  transform: translateY(0);
}

.warehouse-overlay h3 {
  margin: 0 0 12px;
}

.warehouse-overlay .Select-control,
.warehouse-overlay .Select-menu-outer {
  background: #fff;
  color: #111;
}

.warehouse-overlay .Select-placeholder,
.warehouse-overlay .Select-value-label,
.warehouse-overlay .Select-input > input,
.warehouse-overlay .VirtualizedSelectOption,
.warehouse-overlay .VirtualizedSelectFocusedOption {
  color: #111 !important;
}

.apply-button,
.reset-button {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.apply-button {
  background: #f0f4ff;
  color: #0f172a;
}

.reset-button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.reset-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.selection-summary {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}
