.station-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.station-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ev-marker {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid black !important;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	position: relative;
	box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.ev-charged
	{
	background: green;
	}


.ev-lowbat
	{
	background: orange;
	}

.ev-nobat
	{
	background: #b00;
	}

.ev-marker:hover {
	transform: scale(1.15);
}

.ev-marker:hover::after {
	content: attr(data-info);
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	background: #212529;
	color: #fff;
	padding: 8px 10px;
	border-radius: 6px;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	z-index: 9999;
}
.car-image-wrap {
	position: relative;
	width: 100%;
}

.car-image-wrap img {
	display: block;
	width: 100%;
}
#rightPanelCarousel {

	width: 100%;

}

.carousel-item {

	transition: transform 0.2s ease-in-out;

}

.vehicle-body {
  display: flex;
  flex-direction: column;
}

.vehicle-strip {
  width: 100%;

  display: grid;
  grid-template-columns: 45px 1fr 45px;
  column-gap: 8px;              /* even LEFT-CARS-RIGHT spacing */
  align-items: center;
  padding: 5px;
}

.vehicle-window {
  overflow: hidden;
  width: 100%;
}

.vehicle-track {
  display: flex;
  gap: 8px;                      /* even spacing between cars */
  transition: transform 0.3s ease;
}

.vehicle-tile {
  flex: 0 0 calc((100% - 72px) / 12);
  height: 42px;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

.vtrack-wait
	{
	display: flex;
	width: 100%;
	height: 42px;
	align-items: center;
	font-size: 11px;
	text-align: center;
	}

.vehicle-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}


.vehicle-window {
  overflow: hidden;
}
.ttl-black
	{
	font-family: 'Roboto Mono', monospace;
	color: #000;
	font-weight: 700;
	}
