
        /* Slideshow Container */
        .ly-slide-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            position: relative; /* Needed for absolutely positioned arrows */
        }

        .ly-slide {
            display: none;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
        }

        .ly-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Navigation Arrows */
        .ly-prev, .ly-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            font-size: 24px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none;
            z-index: 10;
        }

        .ly-prev {
            left: 10px; /* Positioned 10px from the left of .mySlides */
        }

        .ly-next {
            right: 10px; /* Positioned 10px from the right of .mySlides */
        }

        .ly-prev:hover, .ly-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        /* Caption Container */
        .caption-container {
            text-align: center;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 10px;
            color: white;
            font-size: 14px;
            border-radius: 0 0 10px 10px;
        }

        /* Thumbnail Row */
        .ly-slide-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 16px;
        }

        .ly-slide-column {
            flex: 1 1 calc(16.66% - 10px);
            max-width: 100px;
        }

        .ly-slide-demo {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border: 2px solid transparent;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s, border-color 0.3s;
        }

        .ly-slide-demo:hover, .active {
            border-color: #fff;
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media screen and (max-width: 768px) {
            .ly-prev, .ly-next {
                width: 30px;
                height: 30px;
                font-size: 18px;
            }

            .ly-slide-row {
                gap: 8px;
            }

            .column {
                max-width: 80px;
            }
        }

        @media screen and (max-width: 480px) {
            .ly-prev, .ly-next {
                width: 25px;
                height: 25px;
                font-size: 16px;
            }

            .ly-slide-row {
                gap: 6px;
            }

            .ly-slide-column {
                max-width: 60px;
            }
        }