#loadingSpinner{
    margin: auto;
    width: 100px;
}
.table{
    width: 100%;
    border-collapse: collapse;
}
.table thead{
    background-color: #aa3e35;
    color:white;
}
.table tr{
    height: 40px;
    margin-left: 5px;
    margin-right: 5px;
}
.table tr td{
    vertical-align: middle;
    padding: 10px 15px 10px 15px;
    margin-left: 5px;
    margin-right: 5px;
}
.table tr th{
    vertical-align: middle;
    padding: 10px 15px 10px 15px;
    margin-left: 5px;
    margin-right: 5px;
}
tbody tr:nth-child(odd){
    background-color: #1f1f1f;
    color: #fff;
}
tbody tr:nth-child(even){
    background-color: #0f0f0f;
    color: #fff;
}
svg{
    vertical-align: middle;
}

.login{
    margin-left: auto;
    margin-right: auto;
}

.loginForm{
    display: grid;
    grid-template-columns: auto;
}

.inputrow{
    display: grid;
    grid-template-columns: 150px auto;
    padding: 5px;
}

.submitrow{
    display: grid;
    grid-template-columns: 200px auto;
    padding: 5px;
}

input[type=text], input[type=password]{
    border: 2px solid white;
    border-radius: 4px;
    padding: 5px;
    background-color: #0f0f0f;
    color: white;
}

input[type=submit], input[type=reset]{
    transition-duration: 150ms;
    padding: 5px;
    background-color: #0f0f0f;
    color: white;
    cursor: pointer;
    border-color: white;
    border-style: double;
    border-radius: 5px;
    transform: scale(1);
    transition: all 300ms ease-in;
}
input[type=submit]:hover, input[type=reset]:hover{
    box-shadow: 0px 0px 20px #f0f0f0;
    transition-duration: 150ms;
    background-color: white;
    color: #0f0f0f;
}
input[type=submit]:active, input[type=reset]:active{
    box-shadow: 0px 0px 20px #aa3e35;
    transition-duration: 50ms;
    background-color: #aa3e35;
    color: white;
    border-color: #aa3e35;
    transform: scale(0.955);
    transition: all 50ms ease-out;
}

/*Popup code*/

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }

  .popup {
    margin: 70px auto;
    padding: 20px;
    background: #1f1f1f;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup h2 {
    margin-top: 0;
    color: #ffffff;
  }
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #aa3e35;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }