.lcdFrame {
  position: relative;

  width: 1280px;
  height: 600px;

  background-color: #000000;
  border-bottom: 1px solid #252525;

  display: grid;
  grid-template-columns: repeat(300, 1fr);
  grid-template-rows: repeat(120, 1fr);
  gap: 1px;
  padding: 0px;
  box-sizing: border-box;
}

.led {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0f0f0f;
  animation: none;
}

.led.active {
  background-color: #ff8d00;
}

@keyframes led-blink {
  0%, 100% {
    background-color: #ff8d00;
  }
  50% {
    background-color: #0f0f0f
  }
}

.led.active.blink {
  animation: led-blink 1.5s step-end infinite;
}

.subLCD {
  position: relative;

  width: 1280px;
  height: 200px;

  padding: 60px;
  box-sizing: border-box;

  background-color: #0a0a0a00;

  display: flex;
  align-items: start;
  justify-content: start;

  z-index: 2;
}

.subLeft {
  position: relative;

  width: 50%;
  height: auto;

  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: start;
}

.lineBlob {
  position: relative;

  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: start;
}

.lineIcon {
  position: relative;

  padding: 5px 15px;
  box-sizing: border-box;

  background-color: #ff8d00;
  border-radius: 3px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 30px;
  color: #000000;
}

.lineTitle {
  position: relative;

  font-family: "Inter";
  font-weight: 200;
  font-size: 40px;
  color: #fff;

  white-space: nowrap;
}

.lineOccup {
  position: relative;

  font-family: "Inter";
  font-weight: 300;
  font-size: 15px;
  color: #aeaeae;
}

.warningBlobs {
  position: relative;

  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: start;
}

.warning {
  position: relative;

  padding: 7px 10px;

  background-color: #ff0000;
  border-radius: 5px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.subRight {
  position: relative;

  width: 50%;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
}

.departureBlob {
  position: relative;

  width: 100%;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: end;
}

.departureTime {
  position: relative;

  font-family: "Inter";
  font-weight: 200;
  font-size: 40px;
  color: #fff;
}

.mapDisplay {
  position: relative;

  margin-top: -200px;

  background-color: black !important;

  width: 1280px;
  height: 200px;

  border: none;
  outline: none;

  z-index: 1;
}

.leaflet-control-attribution {
  display: none;
}

.vehicleMarker {
  position: relative;

  background-color: #363636;
  border-radius: 50%;

  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #9f9f9f;

  display: flex;
  align-items: center;
  justify-content: center;
}

.focus {
  background-color: #ff8d00;
  border-radius: 50%;

  color: #000;
}

.lM_name {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.timestamp {
  position: absolute;

  bottom: 10px;
  left: 60px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 10px;
  color: #717171;

  z-index: 10;
}