* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #222;
    color: #FFF;
}

.crud {
    width: 80%;
    margin: auto;
}

.head {
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
}

input {
    width: 100%;
    background-color: #111;
    outline: none;
    border: none;
    height: 30px;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
    color: #FFF;
    transition: 0.4s;

}

input:focus {
    background-color: #000;
    transform: scale(1.1);
}

.prices input {
    width: 21.5%;
}

.prices {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#total {
    background-color: #a00d02;
    padding: 5px 2px;
    border-radius: 5px;
}

#total::before {
    content: 'Total: ';
}

button {
    width: 100%;
    height: 30px;
    background-color: #390053;
    border: none;
    color: #FFF;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    background-color: #51025f;
    letter-spacing: 1px;
}

.btnsearch {
    display: flex;
    justify-content: space-between;
}

.btnsearch button {
    width: 45%;
}

table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

table th {
    text-transform: uppercase;
}

th,
td {
    padding: 5px;
}

#deleteall {
    margin: 10px 0;
}