        .Gallery-carousel-item {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh; /* Full viewport height */
        }

        .Gallery-carousel-item img {
            max-width: 100%;
            max-height: 100%;
            height: auto;
            width: auto;
            margin: auto;
        }

        /* Close button in top right corner */
        .Gallery-close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1050; /* Above other elements */
            cursor: pointer;
        }
		
		.Gallery-modal-content {
			background-color: transparent;
		}

        /* Center images vertically on mobile devices */
        @media (max-width: 767.98px) {
            .Gallery-carousel-item {
                height: 100vh; /* Full viewport height */
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .Gallery-carousel-control-next, .Gallery-carousel-control-prev {
            opacity: 1;
        }

        @media screen and (pointer: coarse) {
            .Gallery-carousel-control-prev,
            .Gallery-carousel-control-next {
                display: none;
            }
        }