table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {background-color: #f2f2f2;}
.center-class{
  display: flex;
  justify-content: center;
  padding: 20px;
}

html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:#f0f0f1;
    font-family: "Lato","Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
    font-weight: 400;
}

.login {
    box-sizing: border-box;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 24px;
}

.login label {
    text-align: center;
}

.login input, .login button, .errorlabel {
    box-sizing: border-box;
    width: 80%;
    font-size: 24px;
    line-height: 1.33333333;
    border-width: .0625rem;
    padding: 5px;
    min-height: 20px;
    max-height: none;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    margin: 10px;
    height:40px;
}

label {
    padding: .1875rem .3125rem;
    font-family: "Lato","Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
    font-weight: 400;
}

.errorlabel {
    font-size: initial;
    background-color: red;
    color: white;
    margin: 5px 0;
}
.header {
    padding: 0 20px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color:#262937;
    color:#918d8d;
    min-width: 100vw;
  }

  .appbuttons {
    padding: 0;
    margin: 0;
    list-style: none;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    min-height:85vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sitesearch {
    padding: 0;
    margin: 0;
    list-style: none;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    min-height:30vh;
    min-width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #content {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center;
      flex: 1;
      width:100%;
      background-color: white;
  }

  .logo {
      background-color:#262937;
      flex-grow: 1;
      color: white;
      font-weight: bold;
      font-size: 2em;
      padding: 10px;
  }

  .routerconfig {
      line-height: 120px;
      color: white;
      font-weight: bold;
      font-size: 2em;
      text-align: center;
      max-width:110px;
  }

  .usermenu {
      background-color:#262937;
  }

  body{
      margin:0px;
  }

  html{
      background-color:#f0f0f1;
  }

  /* Dropdown Button */
  .dropbtn {
      color: #918d8d;
      padding: 16px;
      font-size: 16px;
      border: none;
      background-color:#262937;
  }
  .appicon {
      background-color:#d4d4d9;
      border: none;
      border-radius:6px;
      padding:15px;
  }

  .dropbtn:after{
      content: ""
  }

  /* The container <div> - needed to position the dropdown content */
  .dropdown {
      position: relative;
      display: inline-block;
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f1f1f1;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}

  /* Style the search box */
#sitesearch {
    width: 100%;
    font-size: 18px;
    padding: 11px;
    border: 1px solid #ddd;
  }
  
/* Style the navigation menu */
#sitemenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  /* Style the navigation links */
#sitemenu li a {
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block
  }
  
#sitemenu li a:hover {
    background-color: #eee;
  }

ul{
    padding-inline-start: 0%;
  }

.name, .submit, .usercreate, title, .pricing, .total, .cartpage .title, .identification, .password, .level, .personal-identity{
    display: flex;
    justify-content: center;
    flex: 1;
  }
  
.insidebox, .address-check, .submit-button, .address-type{
   margin:5px;
}

.center{
    text-align: center;
}

.fullsize, .insidebox, .pricing, .total, .fullwidth, .iti{
    width: 100%;
}

.formsize{
    max-width: 600px;
}

  .form-control{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  * {
    box-sizing: border-box;
  }