* {
    margin: 0;
    padding: 0;
}
body{
    background:  #222;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.crud{
    width: 80%;
    margin:  auto;
}

.head{
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
    color:  rgb(220, 166, 64);

}

input{
    width: 100%;
    height: 20px;
    border: none;
    outline: none;
    margin: 3px;
    background-color: #111;
    border-radius: 5px;
    padding: 10px;
    color: white;
    transition: 0.5s;

}

input:focus{
background-color: black;
transform: scale(1.01);
}

.price input{
width: 20%;
}

#total{
    background-color: red;
    padding: 4px 2px;
    border-radius: 4px;
}

#total::before{
    content: 'Total : ';
}

button{
   
    width: 100%;
    height: 30px;
    border: none;
    outline: none;
    margin: 3px;
    border-radius: 15px;
    cursor: pointer;
    background-color:  rgb(226, 178, 90);
}
button:hover{
    background-color: rgb(255, 182, 47);
    letter-spacing: 0.5px;
    transition: 0.5s;
}

.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;
}