* {
    margin: 0;
    padding: 0;
}

body {
    background: #222;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* start crud style */
.crud {
    width: 80%;
    margin: auto;
}

/* head style */
.head {
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
}

/* genaral  style inputs */
input {
    width: 100%;
    height: 30px;
    outline: none;
    background: #111;
    border: none;
    margin: 4px 0;
    border-radius: 4px;
    padding: 4px;
    color: #fff;
}

input:focus {
    background: #000;
    transform: scale(1.1);
}

/* price style */
.price input {
    width: 20%;
}

#total {
    background: #a00d02;
    padding: 5px 2px;
    border-radius: 4px;
}

#total::before {
    content: 'Total : ';
}

/* buttons style */
button {
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    background: #470053;
    color: #fff;
    border-radius: 20px;
    transition: 0.5s;
}

button:hover {
    background: #51025f;
    letter-spacing: 1px;
}

/* button search */
.btnSearch {
    display: flex;
    justify-content: space-between;
}

.btnSearch button {
    width: 45%;
}

/* button delete all style */
.deleteAll {
    margin: 20PX 0;
    
}

/* table style */
table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

table th {
    text-transform: uppercase;
}

th,
td {
    padding: 5px;
}

/* end crud style */

/* footer style */
footer {
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
}