.stop-list { 
  max-height: 450px; 
  overflow-y: auto 
}
.stop-active { 
  border-left: 4px solid #0d6efd; 
}
.trip-left-side { 
  max-height: 450px; 
  overflow-y: auto 
}
#tripMap {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    margin-bottom: 20px;
}
#mapHint {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
    z-index: 500;
}
.color-dot {
    display:inline-block;
    width:12px;
    height:12px;
    border-radius:50%;
    margin-left:6px;
    border:1px solid #333;
}
.border-double {
    border-top-style: double !important;
    border-top-width: 5px !important;
}
.form-check-label,
.form-check-label * {
    cursor: pointer;
}
.form-check {
    padding-left: 1.7em !important; /* Default is 1.5em. */
}
/* alternating row color */
.trip-select:nth-child(odd) {
  background: rgba(0,0,0,0.0);
}
.trip-select:nth-child(even) {
  background: rgba(0,0,0,0.06);
}
.trip-select:hover {
  background: rgba(13,110,253,0.12);
}
.list-group-item {
  padding: 0.3rem 0.4rem; !important;
}
.tripMessage {
  color: red;
  font-weight: bold;
}
.currentTrip {
  color: green;
}
.futureTrip {
  color: orange;
}
.leaflet-marker-icon.stop-marker {
  background: none;
  border: none;
}
.stop-marker .marker-inner {
  width: 34px;
  height: 34px;
  background: var(--marker-color, #d73a49);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.stop-marker.active .marker-inner {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.2); }
  100% { transform: scale(0.8); }
}
.mapHide {
  display:none;
}