*{
    outline:none;
    transition: all 0.5s cubic-bezier(0, 0, 0.05, 1);
    font-family: navigo, sans-serif;
  }
  #header-box {
    background-color: #0E0C60;
    padding: 20px;
    text-align: center;
    left: 0px;
    right: 0px;
    position:sticky;
  }
  body{
    background-color:#ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    /* overflow-y:hidden; */
  }
  
  #intro{
    color: #000000;
    text-align: center;
  }
  header{
    position: fixed;
    padding: 10px;
    padding-left: 20px;
    padding-bottom: 25px;
    
    z-index: 10;
    top: 0px;
    left: 0px;
    height: 100px;
    width: 100%;
    background-color: #06048f;
    margin: 0;
    box-sizing: border-box;
  }
  
  #heading{
    text-align: center;
  }
  
  h1{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-style: normal;
  
    color:#ffffff;
  }
  
  h5{
    font-size:10pt;
  }
  
  #wrapper{
    display: grid;
    position: relative;
    max-width: 1200px;
    top: -20px;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
  }
  
  h5,a,button,input{
    font-family: navigo, sans-serif;
    font-weight: 500;
    color:#f9f2f7;
  }
  
  a{
    text-decoration:none;
    color:white
    
  }
  
  button,button *{
    /* border-radius:10px; */
    border-style:none;
    padding:10px;
  
    background-color:#06048f;
    
    min-width:fit-content;
  }
  input *{
    /* border-radius:10px; */
    border-style:none;
    padding:10px;
  
    background-color:#d9d9d9;
    
    min-width:fit-content;
  }
  button:hover,button:hover *, input:hover{
    background:#223f8f;
  }
  input:hover{
    background:#ffffff;
    /* background:#223f8f; */
  }
  
  
  #loginBox{
    font-size:15pt;
    display: grid;
    
    width:100%;
    height:100%;
    max-height:fit-content;
    
    background-color: #0E0C60;
    color: #ffffff;
    
    padding:10px;
    margin:20px;
    
    border-radius:10px;
  }
  
  #loginBox *{
    align-items: center;
    margin:5px;
    font-size: 15pt;
  }
  
  input[type="checkbox"] {
    width: 65px;
    justify-self: center;
  }
  input[type="text"]{
    color: #000000;
  }
  
  dialog{
    width: 45%;
    height: 40%;
    padding:10px;
    align-items: center;
    align-content: center;
    border: none;
    border-radius: 10px;
  }
  
  dialog *{
    text-align: center;
    margin: 5px;
  }
  #dateSelect{
    color: black;
  }
  .blackText{
    color:black;
  }
  .fullWidthInput {
    width: 100%;
    box-sizing: border-box;
    display: block;
    height: 44px;              
    padding: 12px 16px;        
    font-size: 16px;          
    border-radius: 6px; 
  }
  #submit {
    margin-bottom: 0;
  }
  #loginBox{
    height: 260px;
  }
  .small{
    height: 10px;
  }
  .mini{
    height: 3px;    
  }

  
  .dropdown {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: auto;
  }
  .dropdown-content {
    display: none;
    position:absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    transition: none !important;    
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdownButtons{
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }
  .dropbtn{
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media print{
    button{
      display:none;
    }
  }
