 /* Basic reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Full-screen layout */
        body, html {
            height: 100%;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        /* Gallery container */
        .gallery-container {
            display: flex;
            flex-direction: row;
            height: 100vh;
            cursor: grab;
            overflow-x: auto;
            white-space: nowrap;
            scroll-behavior: smooth;
        }

        /* Dragging style */
        .gallery-container:active {
            cursor: grabbing;
        }

        /* Individual images */
        .gallery-item {
            display: inline-block;
            height: 100%;
            margin-right: 10px;
            transition: transform 0.3s ease; /* Smooth zoom transition */
        }

        .gallery-item img {
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease; /* Smooth zoom transition */
        }