*{
    margin: 0;
    padding: 0;
}
body {
    background-color: #222;
    color: white;
}
.crud {
    width: 80%;
    margin: auto;
}.head {
    text-align: center;
    margin: 10px 0;
}
.head h2 {
    margin-bottom: 10px;
}
input {
    width: 100%;
    background-color: #111;
    outline: none;
    border: none;
    border-radius: 5px;
    height: 30px;
    margin: 5px 0;
    color: white;
    padding: 5px;
}
input:focus{
    background-color: #000;
    transform: scale(1.1);
    
} .totalPrice input{
    width: 20%;
}
#total {
    background-color: rgba(232, 22, 22, 0.884);
    padding: 4px 5px;
    border-radius: 4px;
}#total::before{
    content: 'Total: ';
}button {
    width: 100%;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    background-color: rgba(11, 36, 159, 0.775);
    transition: 0.5s;
} button:hover {
    background-color: rgba(14, 59, 182, 0.775);
    letter-spacing: 1px;
} .searchBtns {
    display: flex;
    justify-content: space-between;
} .searchBtns button {
    width: 45%;
} table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
} td,th {
    padding: 5px;
} #deleteAll {
    margin: 20px 0;
} 