/* *{
    margin: 0;
}
.container{
    background-color: blue;
    width: 90px;
    height: 100vh;
    color: azure;
    border-radius: 10px;

}
.container p {
    padding: 5px;
}
.container p:hover{
    background: black;
    border-radius: 10px;
}
.hide {
    display: none;
} */
/* .photo img {
    width: 50px;
    height: 60px;
    border: 7px solid red;
}

.photo img:hover {
    cursor: pointer;
    width: 60px;
    height: 70px;
    border: 3px solid rgb(0, 4, 255);
} */

/* #btn{
    border-radius: 20px;
    background-color: brown;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;

} */


/* div{
    width: 50px;
    height: 50px;
    cursor:pointer;
}
#red{
    background-color: red;
}
#blue{
    background-color: blue;
}
#green{
    background-color: green;
}
#black{
    background-color: black;
}
 */

*{
    margin: 0;
    padding: 0;
}
body{
    background: #222;
    color: #fff;
    font-family: system-ui;
}
.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: 10px;
    padding: 2px;
    color: white;
    transition: 0.5s;


}
input::placeholder{
    color: blue;
    letter-spacing: 2px ;

}
input:focus{
    background: #000;
    transform: scale(1.075);

}
.price input{
    width: 20%;
}
#total{
    background: rgb(120, 31, 31);
    border-radius: 5px;
    padding: 3px 2px;

}
#total::before{
    content: 'Total: ';
}
button{
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    background: purple;
    color: white;
    transition: 0.5s;
}
button:hover{
    background: rgb(102, 61, 122);
    transform: scale(1.075);
    letter-spacing: 2px ;


}
.btnsearch{
    margin: 6px;
    display: flex;
    justify-content: space-between;

}
.btnsearch button{
    width: 45%;

}
#deleteall{
    margin: 20px 0;
    text-align: center;
        width: 100%;
    height: 30px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    background: purple;
    color: white;
    transition: 0.5s;


}
#deleteall:hover{   
    background: rgb(102, 61, 122);
    transform: scale(1.075);
    letter-spacing: 2px ;


}

table{
    width: 100%;
    text-align: center; 
    margin:3px ;
}
table th{
    text-transform: uppercase;
}
th,td{
    padding: 5px; ;
}

























