* {
    margin: 0;
    padding: 0;
  }
  
  body {
    color: white;
    background-color: #222;
    width: 80%;
    margin: auto;
  }
  
  .head {
    text-transform: uppercase;
    margin: 10px 0;
    text-align: center;
  }
  
  input {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 4px;
    margin: 4px 0;
    padding: 4px;
    background-color: #111;
    color: white;
  }
  
  input:focus {
    background: #000;
    transform: scale(1.05);
  }
  
  .price input {
    width: 20%;
  }
  
  #total {
    background-color: rgb(176, 13, 13);
    padding: 5px 4px;
    border-radius: 4px;
  }
  
  #total::before {
    content: "Total: ";
  }
  
  button {
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    background-color: rgb(107, 8, 110);
    color: white;
    border-radius: 20px;
    transition: 0.5s;
  }
  
  button:hover {
    background-color: rgb(78, 22, 91);
    letter-spacing: 1px;
  }
  
  #searchBtn {
    display: flex;
    justify-content: space-between;
  }
  
  #searchBtn button {
    width: 45%;
  }
  
  table {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  
  table th {
    text-transform: uppercase;
  }
  
  th,
  td {
    padding: 5px;
  }
  
  #deleteAll {
    margin: 20px 0;
  }