.icon {
    display: flex;
    flex-direction: row;
    vertical-align: center;
    align-items: center;
    justify-content: center;

}

.modalPoint {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blinker {
    animation: blinker 1s linear infinite;
    color: green;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.delay {
    font-family: 'SUSE', sans-serif;
    background-color: #C31F2A !important;
    color: white;
    font-size: 0.6rem;
    padding: 0 5px 0 15px;
    margin: 0 0 0 -15px;
    border-radius: 0 6px 6px 0;
    text-align: right;
    z-index: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 2px white;
}

.leaflet-control-layers-toggle {
    font-family: 'SUSE', sans-serif;
    transition-duration: 200ms;
}

.leaflet-control-layers {
    font-family: 'SUSE', sans-serif;
    transition-duration: 200ms;
}

.labelstyle {
    font-family: 'Roboto', sans-serif;
    transition-duration: 200ms;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.vehicle-img {
    padding-left:.5rem;
    max-width: 80vw;
    max-height:2.5rem;
    width: auto;
}

.really-small {
    font-size: 0.6rem;
    line-height: 0.1rem;
}

.vehicle-data {
    border: 1px solid #4CABCE;
    background-color: #9CC0CE;
    color: white;
    border-radius: 6px;
    padding: .5rem;
    box-shadow: inset 0 0 2px darkgrey;
}

.info-span {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 6px;
    font-family: 'Roboto Mono', monospace;
}

.popup-train-img {
    display:flex;
    flex-direction: row;
    overflow-y: auto;
}

.delayText {
    font-weight: bold;
    color: red;
}

[sidebarjs-container] {
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-body, .sidebar-header {
    padding: .6rem .6rem;
}

.sidebar-header {
    display:flex; 
    flex-direction:row; 
    justify-content: space-between;
    align-items: flex-start;
    background-color:#004B87; 
    color:white;
}

.sidebar-header-content {
    flex: 1;
}

.sidebar-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.sidebar-close-btn:hover {
    opacity: 1;
}

.overlay {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 4000000;
    background-color: rgba(0, 0, 0, 0.5);
}

.stopIcon {
    display: flex;
    flex-direction: row;
    vertical-align: center;
    align-items: center;
    justify-content: space-evenly;
    background-color: #173963;
    padding: 3px;
    border-radius: 6px;
    width: 8rem;
    box-shadow: inset 0 0 2px white;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);

}

.composition {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 2px solid grey;
    justify-content: left;
    align-items: center;
    vertical-align: bottom;
    padding: 0 0 0 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-top:0px;
    border-top: 1px solid lightgrey;
}

.composition::-webkit-scrollbar {
    display: none;
  }

@media screen and (max-width: 375px) {
    .vehicle-data {
        font-size: 0.8rem;
    }
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.marker {
    background-image: url('../images_temp/bus.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
.maplibregl-popup {
    max-width: 400px;
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}