
.Access, .Header {
  text-align: center;
  
}

.panel  {
  padding: 0 18px;
  background-color: #d2d4c8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  
}

.accordion {
  border-radius: 20px 20px 20px 20px;
  background-color: #9C96A4;
  color: rgb(48, 44, 44);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: max-height 0.4s ease-out;
}

.active {
  background-color: #786472;
  border-radius: 20px 20px 0px 0px;
}

.accordion:hover {
  background-color: #786472;
  
}


table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 4px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  /*position: fixed;  Stay in place */
  z-index: 1; /* Sit on top 
  left: 0;
  top: 0;*/
  width: 100%; /* Full width */
  /*height: 100%;  Full height */
  /*overflow: auto;  Enable scroll if needed */
  background-color: #E0D3DE;
   
}

.panel {
  border-radius: 0px 0px 30px 30px;
  padding: 0 18px;
  background-color: #b8b7bd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  
}

.beatPanel {
  border-radius: 0px 0px 30px 30px;
  padding: 0 18px;
  background-color: #808189;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  
}

.beatbutton {
  background-color: #b8bdb5;
  border: none;
  color: rgb(0, 0, 0);
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  margin: 2px 1px;
  border-radius: 4px;
  
}

span.b {
  display: inline-block;
  vertical-align: top;
  
  }

  span.h {
    display: inline-block;
    vertical-align: middle;
    
    
    }

html, body {
      font-family: Arial, Helvetica, sans-serif;
      /*height:100%;
      display:flex;
      flex-direction:column;*/
      background-color: #ffffff;
      margin: auto;
      margin-top: 10px;
      margin-bottom: 10px;
      margin-right: 20px;
      margin-left: 20px;
      float: center;
      
    }

.search {
      width: 330px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('/server/images/searchicon.png');
  background-position: 10px 10px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
    }
    
    /* When the input field gets focus, change its width to 100% */
    .search:focus {
      width: 80%;
    }

    * {box-sizing: border-box}

    /* Style the tab */
    .tab {
      float: left;
      border: 1px solid #ccc;
      background-color: #f1f1f1;
      width: 10%;
      
    }
    
    /* Style the buttons that are used to open the tab content */
    .tab button {
      display: block;
      background-color: inherit;
      color: black;
      padding: 22px 16px;
      width: 100%;
      border: none;
      outline: none;
      text-align: left;
      cursor: pointer;
      transition: 0.3s;
    }
    
    /* Change background color of buttons on hover */
    .tab button:hover {
      background-color: #ddd;
    }
    
    /* Create an active/current "tab button" class */
    .tab button.active {
      background-color: #ccc;
    }
    
    /* Style the tab content */
    .tabcontent {
      float: left;
      padding: 0px 12px;
      border: 1px solid #ccc;
      width: 90%;
      border-left: none;
      display: none;
      min-height: 500px;
      overflow: auto;
      background-color: #ccc;
      
    }
    .tabcontent.active {
      display: block !important;
    }