.thumbnail-container {
    width: 150px;
    height: 150px;
    overflow: hidden;
    cursor: pointer;
}

@media screen and (max-width: 440px) {
    .thumbnail-container {
        width: 100px;
        height: 100px;
        overflow: hidden;
        cursor: pointer;
    }
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-image:hover {
    scale: 1.1;
}

.full-size {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.full-size img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* or change to cover if you prefer */
}
