.Container{
    width: 90%;
    margin: auto;
    padding-top: 20px;
}

label{
    display: block;
    margin: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

input, textarea{
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #7c8790;
}

input:focus, textarea:focus{
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: 0;
    background-color: #fff;
}

.addbtn, .updatebtn{
    border: #0dcaf0 solid 1px;
    color: #0dcaf0;
    background-color: transparent;
    padding: 8px 10px;
    border-radius: 8px;
    margin: 8px 0;
    transition: all 0.1s ease-in-out;
}

.addbtn:hover, .updatebtn:hover{
    background-color: #0dcaf0;
    color: #000;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.products{
    width: 90%;
    margin: auto;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 25px;
}

.item{
    width: 15%;
}

.item img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.more-info{
    display: flex;
    justify-content: space-between;
}

.deletebtn{
    width: 100%;
    background-color: transparent;
    border: 2px solid red;
    color: red;
    margin-top: 10px;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.deletebtn:hover{
    background-color: red;
    color: white;
}

.updatebtn{
    border: #f9e154 solid 1px;
    color: #f9e154;
}

.updatebtn:hover{
    background-color: #f9e154;
    box-shadow: 0 0 0 0.25rem rgba(249, 225, 84, 0.7) !important;
}

.d-none{
    display: none;
}

.search input{
    width: 50%;
    border: none;
    border-bottom: 1px solid #888;
}

.search{
    text-align: center;
}

.error{
    color: red;
}