/* Item page styles */
.container-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.left-column {
    width: 20%;
    margin-right: 10px;
}


.small-images {
    margin-left: 40%;
    max-height: 400px;
    overflow-y: scroll;
}


.small-images ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.small-images li {
    margin-bottom: 5px;
}

.small-images img {
    /*width: 60px;*/
    /*height: 60px;*/
    /*border: 1px solid #ccc;*/
    cursor: pointer;
    /*transition: all 0.3s ease;*/

    border-radius: 7px;
    box-shadow: 0px 5px 18px 3px rgb(0 0 0 / 12%);
    width: 100px;
    height: 100px;
    margin: 0px 7px 0px 7px;
    display: inline-block;
}

.small-images img:hover {
    border: 1px solid #000;
}

.large-images img {
    max-width: 100%;
}

.center-column {
    width: 60%;
    margin: 0 10px;
}

.right-column {
    width: 60%;
    padding: 20px;
    background-color: #f1f1f1;
    margin: 0 10px;
}

.item-details {
    margin-bottom: 20px;
}

.item-details h2 {
    margin: 0 0 10px;
}

.item-details p {
    margin: 0;
}

@media (max-width: 768px) {
    .container-item {
        flex-direction: column;
    }

    .center-column {
        width: 100%;
        margin: 10px 0;
    }

    .right-column {
        width: 100%;
        padding: 10px;
    }
}
