* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #222;
  color: #fff;
  font-family: system-ui;
}
.crud {
  width: 80%;
  margin: auto;
}
.crud .head {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 2px;
}
input {
  outline: none;
  border: none;
  width: 100%;
  height: 30px;
  background-color: #111;
  margin: 4px 0;
  border-radius: 4px;
  padding: 4px;
  color: #fff;
}
input:focus {
  background-color: #000;
  transform: scale(1.1);
}
.price input {
  width: 20%;
}
.price small {
  padding: 5px 2px;
  border-radius: 4px;
  background-color: #a00d02;
}
.price small::before {
  content: "Total: ";
}
button {
  width: 100%;
  border: none;
  height: 30px;
  cursor: pointer;
  background-color: rgba(34, 145, 136, 0.56);
  color: white;
  border-radius: 10px;
  transition: 0.5s;
}
button:hover {
  background-color: rgb(34, 145, 136);
  letter-spacing: 1px;
}
.btnSearch {
  display: flex;
  justify-content: space-between;
}
.btnSearch button {
  width: 45%;
}
#deleteAll {
  margin: 20px 0;
}
table {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
table th {
  text-transform: uppercase;
}
th,
td {
  padding: 5px;
}
