* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #222;
  color: #fff;
  font-family: Bahij TheSansArabic;
}
.crud {
  width: 80%;
  margin: auto;
}
.head {
  text-align: center;
  text-transform: uppercase;
}
input {
  color: #fff;
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  background-color: #111;
  margin: 4px 0;
  padding: 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
input:focus {
  background-color: #000;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: wrap;
}
.price input {
  margin-right: 4px;
  width: 20%;
}
#total {
  background-color: #f10;
  padding: 5px 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
#total::before {
  content: "Total:";
}
button {
  width: 100%;
  cursor: pointer;
  padding: 5px 2px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: none;
  outline: none;
  color: #fff;
  background-color: rgba(0, 0, 255, 0.455);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
button:hover {
  letter-spacing: 2px;
}
#btnsearch {
  display: flex;
  justify-content: space-between;
}
#btnsearch button {
  width: 45%;
}

#deleteAll {
  margin: 10px 0;
}
table {
  width: 100%;
  text-align: center;
  margin: 5px;
}
@media (max-width: 768px) {
  table {
    font-size: 7px;
  }
}

table thead {
  text-transform: uppercase;
}
