*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #222;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
}

.cruds{
    width: 80%;
    margin: 10px auto;

}
.head{
    text-align: center;
    text-transform:uppercase;

}

input{
    width: 100%;
    height: 30px;
    padding: 5px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: #111;
    color: #fff;
}

input:focus{
    background-color: black;
    transform: scale(1.1);
}
input::placeholder{
    color: #888888;
    opacity: 1;
    transition: opacity 0.9s linear;
}
input:focus::placeholder{
    opacity: 0;
}

.price input{
    width: 20%;
    
}

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

#total::before{
    content: "Total Price: ";
    font-weight: bold;
}

button{
    width: 100%;
    height: 40px;
    padding: 5px;
    margin: 5px 0;
    border: none;
    border-radius: 25px;
    outline: none;
    background-color: #1d7a6b;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.8s;
}

button:hover{
    background-color: #114b41;
    letter-spacing: 1.2px;
}

.btnSearch {
    display: flex;
    justify-content: space-between;
    gap: 20%;
}
.btnSearch input {
    width: 40%;
}
#deleteAll{
    margin: 20px 0;
}
table {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

table th {
    background-color: #1d7a6b;
    color: #fff;
    padding: 10px;
    text-transform: uppercase;
}
table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table button:hover {
    letter-spacing: 0px;
}