
#table {
    width: 100% !important;
}

nav {
    background-color: darkgrey;
    position:sticky;
    top: 0;
    
}

.nav-link {
    color:black;
}

.nav-link:hover{
    color:white;
}

#searchButtons {
    margin: auto;
    max-width: 500px;
    float: right;
}

#searchFlex {
    padding: 5px;
}

/* button styling and placement */
/* .BUTT {
 max-height: 30px;
 margin-left:auto;
 margin-right:2px;
 margin-top: 3px;
 margin-bottom: 20px;
}

.button-div{
    max-height: 30px;
    margin-left:auto;
    margin-right:2px;
    margin-top: 3px;
    margin-bottom: 20px;
}

.butty {
    background-color: white;
} */

#newButton{
  float:right;
  margin:4px;
  margin-top: 7px;
}

.floaty {
  display:block;
  margin-right: auto;
  margin-left: 0;
}

/* not sure if better or not? */
nav-tab {
        display: flex;
        justify-content: space-between;
    }


/* Media Queries */
@media only screen and (max-width: 950px) {
    .priority-5{
        display:none;
    }
    #searchFlex {
        width: 100%;
    }
    /* #nav-tab {
        display: flex;
        justify-content: space-between;
    } */
  }

@media only screen and (max-width: 875px) {
    .priority-4, .priority-5 {
        display:none;
    }
  }

@media only screen and (max-width: 612px) {
    .priority-2, .priority-4, .priority-5{
        display:none;
    }
    #searchFlex {
        padding: 10px; 
    }
    /* .BUTT{
        margin: auto;
        padding: inherit;
    } */
   
  }

/* LOADER */

body, html {
    min-height: 100%;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-color: grey;
    z-index: 1001;
    text-align: center;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}


