body {
    width: 100%;
    height: 100%;
    /* overflow: hidden; /* Hide scrollbars */
    margin: 0;
    padding: 0;
    background-color:white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

section {
    margin: 0 5%;
}

ul {
    list-style: none;
    text-align: left;
    padding-inline-start: 3px;
    line-height: 1.2;    
}

h1 {
    color: black;
}

h2 {
    color: black;;
    vertical-align: top;
    margin: 2px 2px;
}

li {
    line-height: 1;
    
    
    
}


li.light-stand {
    line-height: 1;
    transform: translate(102px, 35px);
}

div.thumb-cntr {
    border-radius: 5%;
    height: 190px;
    overflow: hidden;
}

img.thumb {
    max-width: 100%;
    clip-path: inset(25px 0 25px 0); /* crop top & bottom of thumb images */
    margin-top: -25px; /* Compensate for the hidden top part of the image */
    margin-bottom: -25px; /* Compensate for the hidden bottom part of the image */
}


img.rrsign {
    width: 50px;
    transform: translate(100px, -40px);
}

a.tnlink {
    text-decoration: none;
}

.boxContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.listContainer {
    display: flex;
    height: 70px;
}

.ulleft {
    width: 150px;
}

.box {
    background-color: white;
    border-color: gray;
    border-style: ridge;
    border-width: .1 rem;
    margin: 5px;
    padding: 5px;
    text-align: center;
    width: 325px;
    height: fit-content;
    overflow: hidden;
}

div.dir {
    background-color: rgb(0,4,255);
    color: white;
    font-size: 30pt;
    padding: 30px;
    margin: 30px auto;
    height: 12rem;
    width: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

span.heading {
    /* */
    vertical-align: middle;
    margin-top: 7px;
}

.arrow {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30pt;
    font-weight: 300;
    color:rgb(0, 4, 255);
    vertical-align: middle;
    visibility: hidden;
}

.arrow.on {
    visibility: visible;
}

.reverse {
    background-color: rgb(5, 198, 5);
    color:white;
    font-weight: bold;
    padding: 2px 2px;
}

.housing {
    width: 20px; /* Set the size of the outer black circle */
    height: 20px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.led  {
    height: 10px;
    width: 10px;
    /* display: inline-block; */
    background-color: gray;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust to center precisely */
  }
  
  .red {
    background-color: red;
  }

  .off {
    visibility: hidden;
  }
  
  .green {
      background-color: rgb(5, 198, 5);
  }

  .rblink {
    visibility: visible;
    animation: 2s blinking infinite;
  }

  .lblink {
    visibility: visible;
    animation-name: blinking;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
  }

  @keyframes blinking {
    from, to {
      background-color: red;
    }
    50% {
      background-color: white;
    }
  }


  /* Imported styles from steel-highway website */
  header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }

  .header__heading-logo {
    max-width: 100px;
  }@media screen and (min-width: 990px) {
    header-drawer {
      display: none;
    }
  }

  .menu-drawer-container {
    margin-left: 5%;
    display: flex;
  }

  .list-menu {
    padding-top: 2rem;
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  summary.list-menu__item {
    padding-right: 2.7rem;
  }

  .list-menu__item {
    padding: 1rem;
    align-items: center;
    line-height: 2;
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }

  