*{
    padding: 0;
    margin: 0;
}

body{
    background: #222;
    color: #fff;
    font-family: system-ui;
}

.crud{
    /* background: red; */
    border-radius: 12px;
    width: 80%;
    margin: auto;
}

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

input{
    width: 100%;
    height: 27px;
    outline: none;
    border: none;
    background: #111;
    margin: 4px 0;
    border-radius:19px;
    padding: 0px 8px;
    color: antiquewhite;
}

input:focus{
    background: #000;
    transform: scale(1.1);
}
.price input{
    width: 20%;
}
#total{
    background: #a00d02;
    padding: 5px 2px;
    border-radius: 8px;
}

#total::before{

    content: "Total:  ";

}

button{
    margin: 7px  0;
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    background: antiquewhite;
    border-radius:6px ;
    transition: 0.5s;
}

button:hover{
    background: rgb(180, 110, 18);
    letter-spacing: 1px;
}

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

}

.btnSearch button{
    width: 47%;
    
}

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

table th{
    text-transform: uppercase;
}

th,td{
    padding: 5px;
}

#deleteAll{
    margin: 20px 0 ;
}

#statistics{
    margin-top: 20px;
}

.statBox{
    background: #1e1e1e;
    color: wheat;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.statBox:hover{
    background: #2a2a2a;
    transform: scale(1.02);
}

.statBox h3,
.statBox h2{
    color: #00ff99;
}

.statBox p{
    margin: 5px 0;
}

 