* {
    box-sizing: border-box;
  }
  body{
    background-color: #f1f1f1;
  }
  #backBtn img{
    width: 50px;
    height: 50px;
  }

  #myInput {
    background-image: url('/css/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    border-radius: 15px;
    position: relative;
    top: 150px;
    left: 0px;
  }
  
  #myTable {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 18px;
    background-color: white;
    font-family: 'Oswald', sans-serif;
    position: relative;
    top: 150px;
    left: 0px;
  }
  
  #myTable th, #myTable td {
    text-align: left;
    padding: 12px;
  }
  
  #myTable tr {
    border-bottom: 1px solid #ddd;
  }
  
  #myTable tr.header, #myTable tr:hover {
    background-color: #fafafa;
  }
  #myTable a{
    text-decoration: none;
    color: black;
  }
  #Title{
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    top: 50px;
  }