.asset-image-gallery {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* Centers the content horizontally */
    gap: 20px;
    /* Adds space between the selected image and thumbnails */
}

.image-wrapper {
    display: flex;
    flex-direction: row;
    /* Aligns the selected image and thumbnails side by side */
    gap: 20px;
    /* Optional: Adds space between the selected image and thumbnail images */
}

.asset-selected-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

#selectedImage {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.asset-thumbnail-images {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping to the next column */
    gap: 10px;
    /* Adds space between thumbnails */
}

.asset-thumbnail-images img {
    width: 100%;
    /* Ensure images don't overflow */
    max-width: 150px;
    /* Set a maximum size for the images */
    margin-bottom: 10px;
    /* Add space between images vertically */
    flex: 1 0 45%;
    /* Make each image take up around 45% of the container */
}

.asset-thumbnail-images>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    margin-right: 10px;
}


.asset-thumbnail {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.asset-thumbnail:hover {
    border: 2px solid rgb(3, 63, 3);
    transform: scale(1.1);
}