#inventoryList {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.inventory-item {
    background-color: rgb(102, 120, 170);
    padding: 10px;
    margin: 10px;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
}

.inventory-item img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

.inventory-item p {
    flex-grow: 1;
    text-align: center;
    margin: 0;
}

.more-info {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
    margin-top: 5px;
}

#inventoryDetailsModal {
    display: none;
    position: fixed;
    height: 40%;
    width: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(240, 240, 240, 0.9);
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.closee {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

