/*body {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    background-color: #f0f0f0;*/
/*    margin: 0;*/
/*}*/

.mainImg{
    border-radius: 5px;
    /*outline: auto;*/
   
    border: 1px solid #ccc;
    height:372px;
}
.gallery-container {
    text-align: center;
}

.main-image {
    margin-bottom: 20px;
}

.thumbnail-container {
    width: 420px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.thumbnail-scroll {
    display: inline-flex;
    gap: 10px;
}

.thumbnail {
    width: 125px;
    height: 125px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
}
