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

body {
    background-color: #222;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.crud {
    width: 80%;
    margin: auto;
}

.head {
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
}

input {
    width: 100%;
    height: 30px;
    outline: none;
    border: none;
    background-color: #111;
    margin: 4px 0;
    border-radius: 4px;
    padding: 5px;
    color: white;
}

input:focus {
    background-color: #000;
    transform: scale(1.01);
}

.price input {
    width: 18%;
    display: inline-block;
}

#total {
    background-color: red;
    padding: 5px;
    border-radius: 4px;
}

#total::before {
    content: 'total:';
}

button {
    width: 100%;
    height: 30px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
    background-color: rgba(128, 0, 128, 0.521);
    transition: 0.5s
}

button:hover {
    background-color: rgba(128, 0, 128, 0.7);
}

.btnSearch {
    display: flex;
    justify-content: space-between;
}

.btnSearch button {
    width: 45%;
}

.deleteAll {
    margin: 10px 0;
}

table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

table th {
    text-transform: uppercase;
}

th,
td {
    padding: 5px;
}