*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    color: rgb(228, 237, 255);
    font-family: 'Cairo', sans-serif;
    font-family: 'Itim', cursive;
    text-transform: capitalize;
    animation: changeby 5s infinite alternate linear;
}

@keyframes changeby{
    0% {
        background-color: #0A2647;
    }
    25% {
        background-color: #144272;
    }
    50% {
        background-color: #205295;
    }
    75%{
        background-color: #1C82AD;
    }
    100%{
        background-color: #2C74B3;
    }
}

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

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

.header h1{ 
    margin:5px 0;
    font-size: 40px;
    text-transform: uppercase;
}

.header p{ 
    font-size: 25px; 
}

input{
    width: 100%;
    height: 30px;
    outline: none;
    border: none;
    margin: 5px 0;
    border-radius: 4px;
    padding: 5px;
    background-color: #3b4c66;
    color: rgb(255, 255, 255);
    font-family: 'Cairo', sans-serif;
    font-family: 'Itim', cursive;
}

button{
    font-family: 'Cairo', sans-serif;
    font-family: 'Itim', cursive;
}

input:focus{
    background-color: #183b74;
    transform: scale(1.06);
}

.nooone:hover{
    background-color: #183b74;
    transform: scale(1.04);
    background-image: linear-gradient(90deg, #23a1c4 0%, #14283b 74%);
    box-shadow:  2px 4px 4px 0 rgba(30, 53, 129, 0.26),
                -4px -4px 6px 0 rgba(29, 35, 87, 0.329), 
        inset -4px -4px 6px 0 rgba(32, 38, 71, 0.096),
        inset 2px 4px 4px 0 rgba(59, 95, 139, 0.178)
}

.price input{
    width: 20%;
    margin-right: 10px;
}

#total {
    background-color: #ca2323;
    padding: 5px 3px;
    border-radius: 4px;
}

#total::before{
    content: 'total : ';
}

.inputs button{
    width: 100%;
}

::placeholder { 
    color: rgb(201, 238, 255);
    opacity: 1;
    font-size: large;
}



.btn-9 {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    }
    .btn-9:after {
    position: absolute;
    content: " ";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background-color: #e9e9e9;
    background-image: linear-gradient(315deg, #1eceff 0%, #012f5a 74%);
    transition: all 0.3s ease;
    border: none;

}
    .btn-9:hover {
    background: transparent;
    box-shadow:  4px 4px 6px 0 rgba(30, 53, 129, 0.26),
                -4px -4px 6px 0 rgba(29, 35, 87, 0.329), 
        inset -4px -4px 6px 0 rgba(32, 38, 71, 0.096),
        inset 4px 4px 6px 0 rgba(59, 95, 139, 0.178);
    color: rgb(223, 228, 255);
}
.btn-9:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Cairo', sans-serif;
    font-family: 'Itim', cursive;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 40px;
    font-size: larger;
    border: none;

}

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

.searchBut button{
    width: 40%;
}

table{
    text-align: center;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    background: #06283D;
    box-shadow:  4px 4px 6px 0 rgba(59, 95, 139, 0.486),
    -4px -4px 6px 0 rgba(59, 95, 139, 0.486), 
inset -4px -4px 6px 0 rgba(59, 95, 139, 0.486),
inset 4px 4px 6px 0 rgba(59, 95, 139, 0.486);
}

th,td{
    padding: 5px 0;
    border-bottom:1px solid #6aa3ff ;
}


table button{
    width: 80px ;
    height: 25px ;
    color: #e9e9e9;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    background-image: linear-gradient(260deg, #23a1c4 0%, #14283b 74%);
    box-shadow:  2px 4px 4px 0 rgba(30, 53, 129, 0.26),
                -4px -4px 6px 0 rgba(29, 35, 87, 0.329), 
        inset -4px -4px 6px 0 rgba(32, 38, 71, 0.096),
        inset 2px 4px 4px 0 rgba(59, 95, 139, 0.178)
}

#deleteAll{
    margin: 20px 0;
    text-align: center;
}

.all .btn-9{
    margin: auto;
    width: 50%;
}

table .noone , .none{
    border: none !important;
}

tbody{
    border-bottom: none !important;
}

@media (max-width: 600px) {
    .crud{
        width: 90%;
    }
}

