<style>
        /* Styles for slideshow */
        .slideshow-container {
            position: relative;
            max-width: 100%;
            display: inline-block;
        }

        .slide {
            display: none;
            width: 100%;
            height: auto;
        }

        /* Styles for navigation buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.6s ease;
            user-select: none;
        }

        .next {
            right: 0;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
    </style>
