.newAircraftButton {
    scale: 1;
    display: inline-block;
    border-radius: 8px;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 145px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    margin: 5px;
    text-shadow: 0px 0px 3px #000000;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  
  .newAircraftButton span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .newAircraftButton span:after {
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .newAircraftButton:hover {
      background-color: #d4d2fa34;
  }
  
  .newAircraftButton:hover span:after {
    opacity: 1;
    right: 0;
  }
  .newAircraftButton:active {
    background-color: #191532a2;
    transform: translateY(4px);
  }

  .currentAircraftDetailscontainer {
    margin-top: 15px;
    height: 100px;
    overflow: hidden; 
    background-color: #0097517a; 
    min-height: 100px;
    border-radius: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .currentAircraftPicture{
    background-image: url("../images/missingAircraftPicture.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 30%;
    border-right: 2px solid #ffffff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin: 0px !important;
    float: left;
  }

  .currentAircraftDetails{
    float: right;
    width: 70%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-right: 10px;
  }

  .currentAircraftDetailsLabel{
    text-align: left;
    font-size: 1.5rem;
    color: #ffffff;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .deviationTable{
    float: left;
    margin-bottom: 10px;
  }

  .deviationTable tbody th{
    border: 1px solid white;
    background-color:#191532;
    width: 50px;
    padding: 10px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.deviationTable tbody th.firstTopHeader{
  border: 1px solid white;
  background-color:#191532;
  padding: 10px;
  color: rgb(255, 255, 255);
  text-align: left;
}

.deviationTable tbody th.firstBotHeader{
  border: 1px solid white;
  background-color:#191532;
  padding: 10px;
  color: rgb(255, 255, 255);
  text-align: left;
}

.deviationTable tbody td {
  border: 1px solid white;
  background-color: #733030;
}

.numberInputForTable{
  border: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
  padding: 10px;
  width: auto;
  height: auto;
  background-color:#33333300;
  color:rgb(255, 255, 255);
}

/*mass and balance div styling*/
.mbgraphdiv {
  width: 100%;
  aspect-ratio:  0.8/1;
  max-height: 70vh;
}


.aircraftMarkerSelectionContainer{
  width: 80%;
  max-width: 250px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #0097517a;
  border: 2px solid #ffffff;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.fakeMapSection{
  position: relative;
  top: 10px;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/map_background2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.fakeGPSmarkercontainer{
  width: 60%;
  height: 60%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 25%;
  left: 20%;
  margin: auto;
}

.fakeGPSmarker{
  max-width: 100%;
  max-height: 100%;
}

.gpsMarkerNameText{
  position: relative;
  margin-top: 20px;
  color:#ffffff;
  font-weight: bold;
  font-size: 1.8rem;
}

.errorOnNewAircraft{
  font-size: 1.5rem;
  color: #ff0000;
}

.newAircraftSuccess{
  font-size: 1.5rem;
  color: #00ff0d;
}

.errorOnNewAircraftIcon{
  background-image: url("../images/alertIcon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  margin-bottom: 0px;
  float: left;
}

.aircraftMarkerModal{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #0e0c1b;
  z-index: 1000;
}

.aircraftMarkersContainer{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.aircraftMarkerMargin{
  box-sizing:content-box;
  position: relative;
}

.aircraftMarkerSelectionContainerNonSelected{
  margin-left: 10px;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 80%;
  max-width: 250px;
  background-color: #0097517a;
  border: 2px solid #ffffff;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* mass and balance table styling */
.mbTable{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  /* border-collapse: collapse; */
  /* border-collapse: separate !important; */
  border: none;
}

.mbTable th{
  background-color:#0A0813;
  padding: 10px;
  color: #E4C32F;
  text-align: center;
}

.mbTable thead tr{
  border-bottom: none !important;
}

.mbTable td {
  padding: 5px;
  padding-bottom: 8px;
  padding-top: 8px;
  color: rgb(255, 255, 255);
  text-align: center;
  border-right: 2px solid #191919;
}

.mbTable td:last-child{
  border-right: none;
}

.mbTable tr:nth-child(even){
  background-color: #262626;
  /* border-bottom: 2px solid #686868; */
} 

.mbTable tr:nth-child(odd){
  background-color: #3b3b3b;
  /* border-bottom: 2px solid #686868 !important; */
} 

.mbTableTopRow{
  background-color:#0A0813 !important;
  font-weight: bold;
}

.mbTableTopRow td{
  border: none !important;
}

.mbTableHighlightedRow{
  background-color:#E4C32F !important;
}

.mbTableHighlightedRow td{
  color:#121212 !important;
  font-weight: bold;
}

.mbOkay{
 color:#04ff00 !important;
 font-weight: bold;
 font-size: 1.6rem;
}

.mbNotOkay{
  color:#ff2b2b !important;
  font-weight: bold;
  font-size: 1.6rem;
}

.mbTable tr:last-child{
  border-top: 2px solid #0A0813 !important;
}



.fuelAmountIndicatorBar{
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 10px;
  background-color: #3d3d3d;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.fuelAmountIndicatorBarFill{
  position: relative;
  z-index: 1000;
  width: 0%;
  height: 10px;
  background-color: #E4C32F;
  border-radius: 10px;
  transition: width 1s ease-in-out;
}





/* fuel table styling */
.fuelTable{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  /* border-collapse: collapse; */
  /* border-collapse: separate !important; */
  border: none;
}

.fuelTable th{
  background-color:#0A0813;
  padding: 10px;
  color: #E4C32F;
  text-align: center;
}

.fuelTable thead tr{
  border-bottom: none !important;
}

.fuelTable td {
  padding: 5px;
  padding-bottom: 8px;
  padding-top: 8px;
  color: rgb(255, 255, 255);
  text-align: center;
  border-right: 2px solid #191919;
}

.fuelTable td:last-child{
  border-right: none;
}

.fuelTable tr:nth-child(even){
  background-color: #262626;
  /* border-bottom: 2px solid #686868; */
} 

.fuelTable tr:nth-child(odd){
  background-color: #3b3b3b;
  /* border-bottom: 2px solid #686868 !important; */
} 

.fuelTableTopRow{
  background-color:#0A0813 !important;
  font-weight: bold;
}

.fuelTableTopRow td{
  border: none !important;
}

.fuelTableHighlightedRow{
  background-color:#E4C32F !important;
}

.fuelTableHighlightedRow td{
  color:#121212 !important;
  font-weight: bold;
}

.simplebold3{
  font-weight: bold;
  font-size: 1.6rem;
}

.simplebold{
  font-weight: bold;
  color: #E4C32F !important;
}


.simplebold2{
  font-weight: bold; 
}