::-webkit-scrollbar {
    height: 1px;
    width: 1px;
  }
  ::-webkit-scrollbar-track {
    background-color: black;
  }
  ::-webkit-scrollbar-thumb {
    background-color: red;
  }
  
  body {
    line-height: 1.6;
    margin: 2em;
    min-width: 990px;
  }
  table {
    border-collapse: collapse;
  }
  th {
    background-color: #001f3f;
    color: #fff;
    padding: 0.5em 1em;
  }
  
  td {
    border-top: 1px solid #eee;
    padding: 0.5em 1em;
  }
  
  input {
    cursor: pointer;
  }

  .stats,
  .control {
    align-items: center;
    align-content: center;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }

  .stats.displayed {
    display: none;
    transition: all 0.3s ease;
  }


  .control button {
    background-color: #001f3f;
    color: #fff;
    font-size: 18px;
    height: 50px;
    width: 150px;
    border-radius: 10px;
    margin: 10px;
    transition: all 0.3s ease;
  }

  .stats button {
    background-color: #001f3f;
    color: #fff;
    font-size: 15px;
    height: 37.5px;
    width: 112.5px;
    border-radius: 10px;
    margin: 10px;
    transition: all 0.3s ease;
  }
  
  .attendance-container {
    width: 100%;
    overflow: scroll;
  }
  
  /* Column types */
  th.missed-col {
    background-color: #f00;
  }
  
  td.missed-col {
    background-color: #ffecec;
    color: #f00;
    text-align: center;
  }
  
  .name-col {
    text-align: left;
  }
  