       /* Styles for the thumbnail images */
       .thumbnail {
        cursor: pointer;
        width: 100%;
        height: 250px;
        /* margin: 10px; */
    }

    /* Styles for the zoomed-in image overlay */
    .zoom-overlay {
        display: none; /* Hidden by default */
        position: fixed; /* Sit on top of the screen */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Black background */
        justify-content: center;
        align-items: center;
        z-index: 1000; /* Make sure it sits on top */
    }
    .zoom-overlay img {
        max-width: 80%;
        max-height: 80%;
        width: auto;
        height: auto;
    }
    .zoom-overlay.active {
        display: flex; /* Show when active */
    }
    .zoom-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }
    .zoom-controls button {
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 20px;
    }
    .bg-img{
        background-color:var();
    }