*{
    margin: 0;
    padding: 0;
    
}
body{
    background: #222;
    font-family: system-ui;
    color: #fff;
}
.cred{
    width: 80%;
    margin: auto;
}
.head{
text-align: center;
text-transform: uppercase;
margin: 10px 0;
}
input{
    border: none;
    outline: none;
    width: 100%;
    height: 30px;
    background: #111;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}
input:focus{
    background: #000;
    transform: scale(1.1);
}
.price input{
    width: 20%;
}
#total{
    background: #750404;
    padding: 5px 2px;
    border-radius: 5px;
}
#total::before{
    content: "TOTAL : ";
}
button{
    width: 100%;
    height: 30px;
    padding: 5PX;
    background: #31045c;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    color: #fff;
    transition: 0.5s;
}
button:hover{
    background:#470585;
    letter-spacing: 1px;
}
.btnsearch{
display: flex;
justify-content: space-between;
}
.btnsearch button{
    width: 45%;
}
table{
    width: 100%;
    text-align: center;
    margin: 10px 0;
    border-collapse: collapse;
}
th{
    text-transform: uppercase;
}
tr{
    border-bottom: 1px solid #f0f0f03d;
}
th,td{
    padding: 5px;
}
#deletall{
margin: 10px 0;
}