/* Extracted from theme templates — keep selector names stable */
.slideshow-wrapper {
        position: relative;
        width: 800px;
        height: 100vh;
        overflow: hidden;
        margin: 0px auto;
        padding-top: 50px;
    }
    

    .slide-content {
        display: none;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .slide-content.active {
        display: block;
    }

    /* Cover slide specific */
    .cover-slide.active {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .cover-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Tour slides - adjust container for slideshow */
    .slide-content .container {
        min-height: 100vh;
        margin: 0;
        max-width: 100%;
    }

    /* Navigation Buttons */
    .nav-btn {
        position: absolute;
        top: 0px;
        background: rgba(0, 51, 153, 0.8);
        color: white;
        border: none;
        padding: 5px 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 2000;
        transition: background 0.3s;
        border-radius: 4px;
    }

    .nav-btn:hover {
        background: rgba(0, 51, 153, 1);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    /* Slide Indicators */
    .slide-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 25px;
    }

    .indicator {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid rgba(0, 51, 153, 0.6);
    }

    .indicator.active {
        background: #003399;
        transform: scale(1.2);
        border-color: #fff;
    }

    .indicator:hover {
        background: rgba(0, 51, 153, 0.8);
    }

    /* Control Panel */
    .control-panel {
        position: absolute;
        top: 0px;
        right: 20px;
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .control-btn {
        background: rgba(0, 51, 153, 0.9);
        color: white;
        right: 100px;
        position: relative;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        transition: background 0.3s;
    }

    .control-btn:hover {
        background: rgba(0, 51, 153, 1);
    }

    /* Fullscreen Button */
    .fullscreen-btn {
        position: absolute;
        top: 0px;
        left: 100px;
        background: rgba(0, 51, 153, 0.9);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        z-index: 2000;
        transition: background 0.3s;
    }

    .fullscreen-btn:hover {
        background: rgba(0, 51, 153, 1);
    }

    /* Slide Counter */
    .slide-counter {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 2000;
        font-family: 'Montserrat', sans-serif;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-btn {
            padding: 15px 10px;
            font-size: 18px;
        }

        .slideshow-wrapper {
            width: 100%;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .control-panel {
            top: 0px;
            right: 10px;
        }

        .control-btn {
            display: none;
        }

        .fullscreen-btn {
            display: none;
            top: 10px;
            left: 10px;
            padding: 8px 12px;
            font-size: 12px;
        }

        .slide-counter {
            top: 10px;
            font-size: 12px;
            padding: 6px 12px;
        }


    }
