body {
    font-family: Arial;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .openBtn:hover {
    background: #bbb;
  }
  
  .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(71, 71, 71, 0.8);
  }
  
  .overlay-content {
    position: relative;
    top: 15%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
  }
  
  .overlay .closebtn:hover {
    color: #ccc;
  }
  
  .overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 100%;
    background: white;
  }
  
  .overlay input[type=text]:hover {
    background: #f1f1f1;
  }
  
  .overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
  }
  
  .overlay button:hover {
    background: #bbb;
  }

  .brand-logo{
    cursor: pointer;
  }


  .tableFixHead          { overflow: auto; height: 300px; }
  .tableFixHead thead th { position: sticky; top: 0; z-index: 1; }

  .tableFixHead table  { border-collapse: collapse; width: 100%; }
  .tableFixHead th, .tableFixHead td { padding: 8px 16px; }
  .tableFixHead th { background:#eee; }