* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #222;
    color: #fff;
    font-family: system-ui;
}
.crud {
    width: 80%;
    margin: auto;
}
.crud .head {
    text-align: center;
    margin: 10px 0;
    text-transform: uppercase;
}
.crud .head h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
.crud .head p {
    font-size: 20px;
}
input {
    width: 100%;
    height: 40px;
    margin: 4px 0;
    border-radius: 5px;
    padding: 4px;
    outline: none;
    border: none;
    background-color: #111;
    color: #fff;
    transition: 0.3s;
}
input:focus {
    transform: scale(1.1);
    background-color: #000;
}
.price input{
    width: 20%;
}
#total {
    background-color: #a00d02;
    padding: 4px 2px;
    border-radius: 5px;
}
#total::before {
    content: 'total: ';
}
button {
    width: 100%;
    height: 30px;
    padding: 4px;
    margin: 4px 0;
    font-size: 17px;
    border-radius: 20px;
    background-color: #fa0;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: #b37a07;
    letter-spacing: 1px;
}
.outputs .btnSearch {
    display: flex;
    justify-content: space-between;
}
.outputs .btnSearch button {
    width: 45%;
}
#deleteAll {
    margin: 20px 0;
}
table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    color: #fff;
}
table th {
    text-transform: uppercase;
}
th,td {
    padding: 5px;
    color: #fff;
}