*{
  margin: 0;
  padding: 0;
}
body{
  background-color: #222;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.crud{
  width: 80%;
  margin: 0 auto;
}
.head{
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;

}
input{
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  background-color: #111;
  margin: 4px 0;
  border-radius: 4px;
  padding: 4px;
  color: #fff;
  transition: 0.3s;
}
input:focus{
  background-color: #000;
  transform: scale(1.1);
}
.price input{
  width: 20%;
}
#total{
  background-color: #a00d02;
  padding: 4px 2px;
  border-radius: 4px;
}
#total::before{
  content: "Total : ";
}
button{
  width: 100%;
  height: 30px;
  border: none;
  cursor: pointer;
  background-color: #310053;
  color: #fff;
  border-radius: 20px;
  transition: 0.5s;
}
#deleteAll{
  margin: 20px 0;
}
button:hover{
  background-color: #51025f;
  letter-spacing: 1px;
}
.btnSearch{
  display: flex;
  justify-content: space-between;
}
.btnSearch button{
  width: 45%;
}
table{
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
table .overflow {
  overflow-x: auto;
}
table th{
  text-transform: uppercase;
}
th, td{
  padding: 5px;
}
