#faderMask {
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0.7;
}

#overlay {
    z-index: 101;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    padding: 0;
    color: black;
    background-color: white;
    border-radius: 8px;
}

.simulationParameter {
    display: flex;
    justify-content: flex-start;
    margin-top: 2vh;
}

.simulationInput{
    max-width: 4vw;
}

.invalid {
    border: 2px solid red;
}

.invalid:focus {
    outline: 1.5px dotted red;
}

.dateInput {
    margin-right: 1vw;
}

.simulateLaunch{
    background-color: #94D6FF; 
}

.inflightSimulation{
    background-color: #DF97C5;
}

.mainPageButton{
    margin-left:10px; 
    border: 1px solid black
}

.mainPageButton:hover {
    filter: brightness(96%);
  }
  