*{
    margin: 0;
    box-sizing: border-box;
}
body{
    background:#073f26  !important;
    font-family: system-ui !important;
    padding-bottom: 50px;
    padding-top: 20px;
}
.title{
    text-align: center;
    color: white;
}
.title h1{
    font-size: 50px;
}
.title p{
    font-size: 20px;
}
input{
    color: white;
    margin: 10px 0 !important;
    border-radius: 10px;
    padding: 10px;
    border: none;
    outline: none;
    background: #108c54 ;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}
input:focus{
    border: none;
    outline: none;
    background: rgb(37, 159, 104);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
input:hover{
    background: rgb(69, 213, 148);
}
input::placeholder{
    color: white;
}
.inPuts .total input{
    width: 21%;
}
.inPuts .total input:focus{
    margin: 0 15px !important;
}
.inPuts .total span{
    margin-left: 15px;
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.inPuts .total span::before{
    content: "total : ";
}
button{
    color: white;
    border: none;
    outline: none;
    background: #0d6efd;
    padding: 5px 0;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    font-size: 25px !important;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    box-shadow:  0 0 10px 1px #0d6efd;
    margin: 10px 0 !important;
}
button:hover{
    background: #4b91fa;
    box-shadow:  0 0 10px 1px #4b91fa;

}
.buttonSearch button{
    width: 48%;
    margin: 5px 0px 15px 0;
}
.deleteAll{
    margin-bottom: 30px;
}
.delete,.bot{
    background: #da2638;
    box-shadow:  0 0 10px 1px #da2638;
}
.delete:hover,.bot:hover{
    box-shadow:  0 0 10px 1px #f15c6b;
    background: #f15c6b;
}

.bot{
    display: none;
}
table{
    text-align: center;
    color: white;
    border-top: 1px solid white;
}
table thead{
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
table thead th{
    padding: 15px 0 ;
}
table tbody tr:not(:last-child){
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.407);
}
table tbody td{
    padding: 15px 0;
}
table button{
    font-size: 15px !important;
    padding: 5px 10px !important;
}