* {
  margin: 0;
  padding: 0;
}
body {
  background-color: gray;
  color: #fff;
  font-family: system-ui;
}

.crud {
  width: 80%;
  margin: auto;
}
.head {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
}

/*----------------------------------------- start inputs  */
input {
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  background: #111;
  margin: 4px 0;
  border-radius: 4px;
  padding: 4px;
  color: #fff;
}
input:focus {
  background: #000;
  transform: scale(1.1);
}
.price input {
  width: 20%;
}
#total {
  background: #0a0219;
  padding: 5px 2px;
  border-radius: 4px;
}
#total::before {
  content: "total:";
}
button {
  width: 100%;
  height: 30px;
  border: none;
  cursor: pointer;
  background: #370044;
  color: #fff;
  border-radius: 20px;
  transition: 0.5s;
}
button:hover {
  background: #51045f;
  letter-spacing: 1px;
}
/*----------------------------------------- end  inputs  */
/* ----------------------------------------start outputs */
.btnSearch {
  display: flex;
  justify-content: space-between;
}
.btnSearch button {
  width: 45%;
}
#deleteAll {
  margin: 20px 0;
}

/* **********start-table****** */
table {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
table th {
  text-transform: uppercase;
}
th,
td {
  padding: 5px;
}

/* **********end-table******** */

/* ----------------------------------------end outputs */
