/* Extracted from theme templates — keep selector names stable */
:root {
        --primary-blue: #003399;
        --accent-orange: #FF6600;
        --table-header-bg: #E6F3FF;
        --table-stripe-bg: #F5F9FC;
        --text-dark: #333;
        --border-color: #ddd;
        --font-main: 'Montserrat', sans-serif;
        --font-title: 'Playfair Display', serif;
    }

    /* Hide default page header */
    .page-header {
        display: none;
    }

    /* Header Content Section */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 20px 0px 20px;
    }

    .title-section {
        flex: 1;
    }

    .main-title {
        font-family: var(--font-title);
        color: var(--accent-orange);
        font-size: 3rem;
        font-style: italic;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .logo-section {
        text-align: right;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .brand {
        font-size: 25px;
        font-weight: 800;
        color: var(--primary-blue);
        line-height: 1;
    }

    .sub-brand {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #555;
    }

    .slogan {
        font-size: 14px;
        color: #888;
        letter-spacing: 2px;
    }

    .qr-code {
        display: flex;
    }

    .qr-placeholder img {
        border: 1px solid #eee;
        padding: 2px;
    }

    /* Table Styling */
    .table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border-radius: 4px;
        position: relative;
    }

    .table-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('') center center / cover no-repeat;
        width: 100%;
        height: 100%;
        opacity: 0.15;
        z-index: -1;
        pointer-events: none;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background-color: transparent;
        border: none !important;
    }

    table tr td {
        border: none !important;
    }

    table th {
        background-color: var(--table-header-bg);
        color: var(--primary-blue);
        padding: 12px 10px;
        text-align: left;
        font-weight: 700;
        border-bottom: 2px solid #ccc;
        white-space: nowrap;
    }

    table td {
        padding: 10px 10px;
        vertical-align: middle;
    }

    table tbody tr:nth-child(even) {
        background-color: transparent;
    }

    table tbody tr:hover {
        background-color: transparent;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    /* Column Styles */
    .col-stt {
        width: 40px;
        text-align: center;
    }

    .col-name {
        width: auto;
    }

    .col-time {
        width: 120px;
        text-align: center;
    }

    .col-price {
        width: 150px;
        text-align: right;
    }

    .col-vehicle {
        width: 120px;
        text-align: center;
    }

    .text-center {
        text-align: center;
    }

    .text-right {
        text-align: right;
    }

    .fw-bold {
        font-weight: 600;
        font-size: 14px;
    }

    .price {
        font-weight: 700;
        color: #333;
    }

    .unit {
        font-size: 0.8rem;
        font-weight: 400;
        color: #666;
    }

    /* Footer Info Section */
    .footer-info {
        font-size: 14px;
        color: #444;
        margin-top: 30px;
        border-top: 2px solid var(--primary-blue);
        padding-top: 20px;
    }

    .info-cols {
        display: flex;
        gap: 40px;
        margin-bottom: 20px;
    }

    .col {
        flex: 1;
    }

    .col h3 {
        font-size: 16px;
        color: var(--primary-blue);
        margin-bottom: 8px;
        margin-top: 15px;
        font-weight: 700;
    }

    .col h3:first-child {
        margin-top: 0;
    }

    .col ul {
        list-style-type: none;
        padding-left: 10px;
    }

    .col ul li {
        margin-bottom: 4px;
        position: relative;
        padding-left: 10px;
    }

    .col ul li::before {
        content: "-";
        position: absolute;
        left: 0;
    }

    .note-center {
        text-align: center;
        margin: 20px 0;
        font-style: italic;
        color: #666;
    }

    .contact-info {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .contact-info h2 {
        color: #333;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .contact-info p {
        margin-bottom: 5px;
        color: #666;
    }

    /* Slideshow Wrapper */
    .slideshow-wrapper {
        position: relative;
        width: 800px;
        height: 100vh;
        overflow: hidden;
        margin: 10px auto;
        padding-top: 40px;
    }

    .slide-content {
        display: none;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .slide-content.active {
        display: block;
    }

    /* Cover Slide */
    .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 Container */
    .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 span {
        height: 22px;
        display: inline-block;
        position: relative;
        top: -2px;

    }

    .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: 100px;
        display: flex;
        gap: 10px;
        z-index: 2000;
    }

    .control-btn {
        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;
        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 Design */
    @media (max-width: 768px) {
        .slideshow-wrapper {
            width: 100% !important;
        }

        .header-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .logo-section {
            margin-top: 15px;
            flex-direction: column;
        }

        .logo-text {
            align-items: center;
        }

        .info-cols {
            flex-direction: column;
            gap: 20px;
        }

        .main-title {
            font-size: 30px;
        }

        .nav-btn {
            padding: 15px 10px;
            font-size: 18px;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .control-panel {
            display: none;
            top: 0px;
            right: 100px;
        }

        .fullscreen-btn {
            display: none;
            ;
            top: 0px;
            left: 10px;
            padding: 8px 12px;
            font-size: 12px;
        }

        .slide-counter {
            top: 10px;
            font-size: 12px;
            padding: 6px 12px;
        }
    }
