.img-container {
    display: inline-block;
    max-width: 300px;
    max-height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.img-container img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}
.close:hover {
    color: #ccc;
}
