* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #fff;
  background: #222;
  font-family: system-ui;
}
.container {
  width: 80%;
  margin: 30px auto;
}
.container h1 {
  text-align: center;
  margin: 20px 0;
}
.container .crud_container .inputs {
  width: 100%;
}
input {
  width: 100%;
  padding: 15px;
  border: 0;
  outline: none;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: black;
  color: white;
  transition: 0.3s;
}
input:focus {
  transform: scale(1.1);
}
.container .crud_container .inputs .operation_inputs input {
  width: 20%;
  margin-right: 10px;
}
#total_btn {
  background-color: red;
  padding: 5px;
  border-radius: 5px;
}
#total_btn::before {
  content: "Total : ";
}
.btn {
  background-color: tomato;
  border: navajowhite;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.crud_container .btn:hover {
  opacity: 0.9;
}
.crud_container .search_btns {
  display: flex;
  justify-content: space-between;
}
.crud_container .search_btns button {
  width: 40%;
}
table {
  width: 100%;
  text-align: center;
}
td,
th {
  padding: 10px;
}
#productUI .btn {
  width: fit-content;
  font-size: 15px;
  padding: 8px;
}
.nothing {
  color: red;
  font-size: 18px;
}

table {
  position: relative;
}
.nodata,
.nothing {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
  color: red;
  font-size: 20px;
}
#update_btn {
  display: none;
}
.dlt_btn {
  background-color: rgb(209, 3, 3);
}
