/* map-overlays.css

   Стили для overlay-слоёв карты MIGoRIX
   Включает .map-realtime-layer, .map-route, .map-marker, .map-current-position и др.

/* Лёгкое затемнение снизу, чтобы нижнее меню читалось */
#screen-map .map-canvas::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54));
  z-index: 3;
}

/* Полностью скрываем все старые fake-элементы поверх карты */
#screen-map .map-realtime-layer,
#screen-map .map-route,
#screen-map .map-route-segment,
#screen-map .map-route-dot,
#screen-map .map-marker,
#screen-map .map-current-position,
#screen-map .dot-a,
#screen-map .dot-b,
#screen-map .dot-c {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Убираем старую декоративную сетку/свечение */
#screen-map .map-canvas::before {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/*
   Стили для overlay-слоёв карты MIGoRIX
   Включает .map-realtime-layer, .map-route, .map-marker, .map-current-position
*/
