*{

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;
}
.crud{
width: 80%;
margin: auto;
}
.head{

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

width: 100%;
height: 30px;
outline: none;
border: none;
background: #111;
margin: 4px 0;
border-radius: 4px;
padding: 4px;
color: #fff;
}
input:focus{
    background: #000;
    transform: scale(1.1);
}

.price input{

    width: 20%;

}
#total{
    background:#6b0808;
    padding: 10px 2px;
    margin-left: 7px;
    border-radius: 4px;
}
#total::before{
    content: 'Total : ';
}
button{
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    background: #6b0808;
    color: #fff;
    border-radius: 20px;
    transition: 0.5s;
}
button:hover{
    background: #cf0d0d;
    letter-spacing: 1px;

}

.btnsearch{
display: flex;
justify-content: space-between;
}
.btnsearch button{
    width: 45%;
}

#deleteAllData{
    margin: 20px 0;
}
table{
    width: 100%;
    text-align: center;
   margin: 12px 0; 
}
table th,td{
    padding: 5px;
}


/* Additional styling for image preview */
#image-preview {
    max-width: 100%;
    max-height: 150px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

