*{
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;  
    box-sizing: border-box;  	
  }
  
  html {
    height: 100%;
    width: 100%;
    border: 1px solid LightGrey;
  }
  
  body {
    background-color: White;
    color: DarkSlateGrey;
    font: normal 1.2rem/1 arial;
    height: 100%;
    width: 100%;
  }
  
  body::-webkit-scrollbar{
    display: none;
  }
  
  input[type="file"] {
    display: none;
  }
  
  input[type="text"] {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
  }

  input[type="text"]:focus {
    outline:none;
  }

  textarea {
    outline:none;
    width: 100%;
    border: none;
    background: transparent;
    color: DarkSlateGrey;
    font: normal 1.2rem/1 arial;
    overflow: hidden;
  }

  ::-webkit-resizer {
    display: none;
  }

  h1,h2,h3 {
    text-align: center;
    color:DarkSlateGrey;
    font-weight: normal;
  }
   h1 {
    font-size: 1.8rem;
   }
   
  a {
    text-decoration: none;
    color:DarkSlateGrey;
        font-size: 1.8rem;

  }
  
  header {
    margin: 30px;
    text-align: center;
    font-size: 1.8rem;
  }
  
  footer {
    position: fixed;
    bottom: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: 40px;
    padding: 10px;
    text-align: center;
    background: SteelBlue;
    color: White;
    font-size: 1rem;
  }
  
  
#content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
#data {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 80%;
    max-width: 800px;
    height: calc(100% - 140px);
    margin: 0 auto; /* Only centers horizontally not vertically! */
    overflow-x: hidden;
    overflow-y: scroll;
  }
  

  table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    /* user-select: none; */
    font: normal 12px arial;
    padding: 0;
  }

  tr.record {
    width: 100%;
    height: 30px;
  }
  
  tr.record:hover {
    background: cornsilk;
  }
  
  td {
    text-align: left;
    vertical-align: top;
    padding: 3px;
    border: 1px solid LightGrey;
  }
  
  thead {
    position: sticky;
    top: 0px;
    background: SteelBlue;
  }
  
  tfoot {
    position: sticky;
    bottom: 0px;
    background: SteelBlue;
  }
  
  th {
    text-align: center;
    padding: 3px;
    color: White;
    font: normal 16px arial;
    line-height: 30px;
  }
  
  tfoot td input[type=text] {
    width: 100%;
    height: 30px;
    text-align: left;
    padding: 3px;
    border: 1px solid LightGrey;
    background: white;
    outline: none;
  }
  
  ::placeholder {
    color: LightGrey;
    opacity: 0.8;
  }
  
  .asc, .desc {
    /* float: right; */
    color: White;
  }
  
  .asc:hover, .desc:hover {
    color: IndianRed;
  }
  
  