.container{
    width: 80%;
    margin: auto;
    padding-top: 30px;
}
input:focus + label{
    font-size: 14px;
    color: #888;
    top: 20px;
    left: 0;
    background-color: blue;
}
label{
    display: block;
    margin: 10px 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14PX;
}
input,textarea{
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #6c757d;
}
input:focus,textarea:focus{
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 .25em rgba(13,110,253,.25) !important;
    outline: 0;
    background-color: #fff;
}
.addbtn{
   border: #0dcaf0 solid 1px;
   color: #0dcaf0;
   background-color: transparent;
   padding: 8px 10px;
   border-radius: 8px;
   margin: 8px 0;
    transition: all 0.1 ease-in-out;
}
.addbtn:hover{
    background-color: #0dcaf0;
    color: #000;
    box-shadow: 0 0 0 .25em rgba(13,110,253,.25) !important;
}
.products{
    width: 80%;
    margin: auto;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.item{
    width: 15%;
}
.item img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.more_information{
    display: flex;
    justify-content: space-between;
}
.deletebtn,.updatebtn{
    width: 100%;
    background-color: transparent;
    border: 2px solid red;
    color: red;
    margin: 10px 0;
    padding: 5px 0;
    transition: all 0.3s;
    border-radius: 8px;
}
.deletebtn:hover{
    background-color: red;
    color: #fff;
}
.updatebtn{
    border: #f9E154 solid 1px;
   color: #f9E154;
   background-color: transparent;
   padding: 5px 0px;
   border-radius: 8px;
   margin: 3px 0;
   transition: all 0.1 ease-in-out;

}
.updatebtn:hover{
     background-color: #f9E154;
    color: #000;
    box-shadow: 0 0 0 .25em rgba(249,255,84,0.7) !important;
}
.d-none{
    display: none;
}
.search input{
    margin: auto;
    width: 50%;
    border: none;
    border-bottom: 1px solid #888;
}
.search{
    text-align: center;
}
.error{
    color: red;
    font-size: 13px;
    margin-top: 5px;
}