* {
    margin: 0;
    padding: 0;

}

body {
    background-color: #222;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}

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

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

input {

    width: 100%;
    height: 30px;
    color: white;
    outline: none;
    border: none;
    background-color: #111;
    padding: 4px;
    margin: 4px 0;
    border-radius: 4px;
    transition: 0.5s;
}

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


.price input {
    width: 20%;
}

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

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

button{
    width: 100%;
    height: 30px;
    border: none;
    text-transform: capitalize;
    background-color: #390035;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover{
    background-color: #51025f;
    letter-spacing: 1px;
}

.btnsrch{
    display: flex;
    justify-content: space-between;
}

.btnsrch button{
    width: 45%;
}

#deleteAll button{
    margin : 15px auto

}

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

table th{
    text-transform: uppercase;
}

th , td {
    padding: 5px;
}

