  .dropdown-title{
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 3px;
  }
  .center-page{
    display: grid;
    align-items: center;
    justify-content: center;
  }
  main{
   margin-top: 2rem;
   margin-bottom: 1rem;
  }
  .func-nav{
    display: flex;
    flex-direction: row;
    flex: 4;
    justify-content: center;
  }

  .logo-div{
    flex: 1;
  }

  .logout-nav{
    flex: 1;
  }

  .nav-button-container{
    text-align: center;
    padding: 0.2rem;
  }

  .alert-success{
    margin-top: 1rem;
    background: #99ffdd;
    color: #001a00;
    font-weight: 550;
    font-size: 16px;
    padding: 1rem;
  }

  .alert-failure{
    margin-top: 1rem;
    background: #ffb3b3;
    color: #ff1a1a;
    font-weight: 500;
    font-size: 16px;
    padding: 1rem;
  }

  .form-title{
    color: white;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0.8rem;
    margin-top: 0.8rem;
  }

  .page-button-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }

  .nav-button, .single-nav-button{
    border: 1px solid white;
    border-radius: 0.15rem;
    padding: 8px;
    width: 8rem;
    cursor: pointer;
    background-color: black;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
  }

  .nav-container{
      display: flex;
      flex-direction: row;
      flex: 20;
      align-items: center;
<!--          justify-content: center;-->
   }

  @media screen and (max-width: 600px) {
    .nav-container{
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
    }
    .nav-button{
      width: 8rem;
    }
    .top-nav{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5px;
    }
    .func-nav{
      display: flex;
      flex-direction: column;
      flex: 4;
      justify-content: center;
    }
  }
  .logo-div{
    margin-left: 0.5rem;
    padding: 0.5rem;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
  }

  .top-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }

  .nav-alt{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 1.5px white;
    border-radius: 0.1rem;
    padding: 1px;
  }

  .site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: black;
    text-align: center;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.1rem;
    z-index: -2;
    background-color: #F5F5F5;
  }

  .site-header{
    background: #F5F5F5;
    color: white;
    font-weight: 500;
<!--        border: solid 1px white;-->
    border-radius: 0.1rem;
  }

  body {
    margin-bottom: 10rem;
    background: white;
    font: 16px Arial;
    overflow-y:scroll;
    max-height: 500rem;
    background-image: url('/static/images/people-group.jpg');
<!--        background-repeat: no-repeat;-->
    background-size: cover;
  }

  .double-button{
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      font-size: 10px;
      margin-top: .5rem;
  }

  .page-button{
      display: flex;
      flex-direction: row;
      justify-content: center;
      font-size: 10px;
      margin-top: .5rem;
  }

  .main-page-button{
    cursor: pointer;
    padding: 0.8rem;
    width: 18rem;
    border: 6px black solid;
    border-radius: .3rem;
    background-color: #3cb371;
    color: white;
    font-weight: 550;
    font-size: 20px;
    border-radius: 0.5rem;
  }

  details {
    border: 1px solid #767676;
    border-radius: 3px;
    display: inline-flex;
    flex-direction: column;
    padding: 3px 6px;
  }

  details summary::marker {
    display: none;
    font-size: 0;
  }

  details summary::-webkit-details-marker {
    display: none;
    font-size: 0;
  }

  details summary::after {
    content: "\25BC" / "";
    display: inline-block;
    font-size: 0.6rem;
    height: 1rem;
    line-height: 1rem;
    margin-left: 0.5rem;
    position: relative;
    transition: transform 0.25s;
  }

  details[open] summary {
    margin-bottom: 1rem;
  }

  details[open] summary::after {
    top: -0.15rem;
    transform: rotate(180deg);
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  ul li {
    border-radius: 3px;
    margin: 0;
    padding: 4px 2px;
  }

  ul li:hover {
    background: #eee;
  }

  ul li label {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
  }
  .field-label{
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .detail-box{
    background: white;
    color: black;
    justify-content: space-between;
    padding: 12px 5px;
    width: 20rem;
    border: solid 1px lightgray;
    margin-bottom: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }

  .current-table{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    margin-top: 0.5rem;
  }

  .select-section{
    display: flex;
    flex-direction: column;
  }

  .current-button{
    display: flex;
    padding: 0.2rem;
    margin-top: 0.5rem;
    padding-left: 0.5px;
    color: white;
  }
  .row-button{
    cursor: pointer;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: .3rem;
    background-color: #0088cc;
    color: white;
    font-weight: 500;
    font-size: 10px;
  }

  table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 95%;
    color: white;
    font-size: 12px;
    z-index: 2;
  }

  td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
  }


  tr:nth-child(even) {
    background-color: #36454F;
  }

  .pagination {
    display: inline-block;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-items: start;
  }

  .pagination a {
    color: white;
    float: left;
    padding: 5px 15px;
    text-decoration: none;
  }

  .pagination a.active {
    background-color: #4CAF50;
    color: white;
  }

  .pagination a:hover:not(.active) {background-color: #ddd;}

  .theme-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .theme-span{
    color: white;
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 0.5rem;
  }

  .title-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    color: white;
    margin-top: 1rem;
  }

  .title-span{
    color: white;
    font-size: 32px;
    font-weight: 550;
    font-family: "Arizonia";
    align-items: center;
    justify-content: center;
  }
  .search_container, .register_container, .title_container{
    display: flex;
    flex-direction: column;
    padding-top: 0.3rem;
    align-items: center;
    justify-content: center;
  }
  .page-button{
    cursor: pointer;
    padding: 0.7rem;
    width: 18rem;
    border: none;
    border-radius: .15rem;
    background-color: black;
    color: white;
    font-weight: 500;
    font-size: 16px;
  }
  .page-button-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .button-attach{
    width: 9rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 0.1rem;
    background-color: #0000FF;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
  }
  input, .input-box, .autocomplete-box{
    padding: 8px 4px;
    width: 20rem;
    border: solid 1px lightgray;
    margin-bottom: 5px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
  }
  input:invalid[focused="true"] {
    border: 2px dashed red;
  }

  input:invalid[focused="true"]:required {
    background-image: linear-gradient(to right, pink, lightgreen);
  }

  input:valid[focused="true"] {
    border: 2px solid black;
  }

 select{
    padding: 12px 4px;
    font-weight: 500;
    font-size: 15px;
 }
 .info{
    color: blue;
 }
 .success{
    color: green;
 }
 .warning{
    color: red;
 }
 .messages{
    background: #99ffdd;
    color: #001a00;
    font-weight: 550;
    font-size: 16px;
    padding: 5px;
    border-radius: 0.1rem;
 }
 .errormsg{
    color: red;
    width: 20rem;
    font-weight: 600;
    text-align: center;
    padding: 3px;
    margin-top: 0.1rem;
 }
