.list-container {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
}

.list-products {
    list-style-type: none;
    background-color: transparent ;
    /* margin: auto; */
    display: inline-block;

    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: transparent;
}



.listitems-products {
    margin: 20px;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background-color: whitesmoke;
    width: 350px;
    height: 430px;
    padding: 20px;
    position: relative;
    display: inline-block;
}

.product-title {
    position: absolute;
    font-weight: bold;
    font-size: 18px;
    top: 10px;
}
.product-id {
    top: 30px;
    position: absolute;
    font-weight: normal;
    font-size: 12px;
    text-align: left;
}
.product-img {
    position: absolute;
}


.product-desc {
    position: absolute;
    font-weight: normal;
    font-size: 16px;
    bottom: 40px;
}

.product-price {
    position: absolute; 
    font-weight: normal;
    font-size: 16px;
    /* margin: 0,0,10px,0; */
    bottom: 10px;
}

.product-price-label {
    font-weight: bold;
}

.product-link {
    position: absolute;
    z-index: 2; 
    display:block;
    width:100%;
    height:100%;
    top: 0;
    left: 0;
}
.img {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 90%;
    max-height: 70%;
}

#update {
    position: absolute;
    top: 10px;
    right: 65px;
}

#delete {
    position: absolute;
    top: 10px;
    right: 10px;
}

