:root {
            --e-global-color-primary: #1C8EB8;
            --e-global-color-secondary: #FFA048;
            --e-global-color-text: #82828A;
            --e-global-color-accent: #1C231F;
        }


        .custom-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            
        }

        .container {
            display: flex;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            width: 100%;
            overflow: hidden;
        }

        .left-panel {
            flex: 2;
            padding: 50px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            box-shadow: rgb(60 64 67 / 18%) 0px 1px 2px 0px, rgb(60 64 67 / 8%) 0px 1px 3px 1px;
        }

    
        .left-panel h1 {
            font-size: 2.8em;
            font-weight: 700;
            color: #333;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .confirmation-message {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
            text-align: left;
        }

        .confirmation-message h4 {
            font-size: 1.4em;
            font-weight: 600;
            color: #333;
            margin: 0 0 15px 0;
        }

        .confirmation-message p {
            margin: 10px 0;
            color: #666;
        }

        .customer-info-section {
            margin-top: 20px;
        }

        .customer-info-section h4 {
            font-size: 1.4em;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .info-item {
            font-size: 0.9em;
            color: #666;
        }

        .info-item strong {
            font-weight: 600;
            color: #555;
        }

        .info-item a {
            color: var(--e-global-color-primary);
            text-decoration: none;
        }

        .btn-primary.backhome {
            background-color: var(--e-global-color-primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
            margin-top: 30px;
            text-decoration: none;
        }

        .btn-primary.backhome:hover {
            background-color: #0056b3;
        }

        .right-panel {
            flex: 1.2;
            background-color: #f7f7f7;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 15px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .order-section h3.order-number {
            font-size: 1.8em;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .tour-item-wrapper {
            display: flex;
            align-items: flex-start;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    flex-direction: column
        }

        .tour-image {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
            background-color: #e0e0e0;
        }

        .tour-details {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .tour-title {
            font-size: 0.95em;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .tour-info {
            font-size: 16px;
            color: #888;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .tour-info strong {
            color: #333;
        }

        .tour-price {
            font-size: 1em;
            font-weight: 700;
            color: #333;
        }

        .summary-table {
    width: 100%;
    margin-top: 10px;
    padding-bottom: 25px;
    border:none;
    /* Removed: border-bottom: 1px solid #eee; */
}

.summary-table tr {
    /* Removed: border: none; (already present, but ensuring no other border styles apply) */
    border: none; /* Explicitly ensuring no borders */
}

.summary-table td {
    padding: 10px 0;
    font-size: 0.95em;
    color: #666;
    border: none; /* Removed any default cell borders */
}

.summary-table .total-row,
.summary-table .due-row {
    font-weight: 700;
    font-size: 1.2em;
    color: #333;
    /* Removed: border-top: 2px solid #eee; */
}

.tour-item-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom:1px solid #e5e7eb;
    /* Removed: border-bottom: 1px solid #eee; */
    flex-direction: column;
}

        .info-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .info-box h4 {
            font-size: 1.4em;
            font-weight: 600;
            color: #333;
            margin-top: 0;
        }

        .info-box p {
            font-size: 0.9em;
            color: #666;
            margin: 10px 0;
        }

        .info-box a {
            color: var(--e-global-color-primary);
            text-decoration: none;
        }

        @media (max-width: 992px) {
           .custom-container {
                flex-direction: column;
                gap:20px;
                padding: 20px 10px;
            }

            .left-panel, .right-panel {
                padding: 30px;
                border-radius: 0;
            }

            .right-panel {
                border-top-right-radius: 0;
                border-bottom-left-radius: 15px;
            }

            .left-panel h1 {
                font-size: 2.2em;
            }

            .order-section h3.order-number {
                font-size: 1.6em;
            }
        }

        @media (max-width: 768px) {
          
            .left-panel, .right-panel {
                padding: 20px;
            }

            .left-panel h1 {
                font-size: 1.8em;
            }

            .customer-info-section h4,
            .confirmation-message h4,
            .info-box h4 {
                font-size: 1.2em;
            }

            .tour-item-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }

            .tour-image {
                width: 100%;
                height: 200px;
            }

            .tour-price {
                text-align: left;
                margin-top: 15px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .btn-primary.backhome {
                font-size: 1em;
                padding: 12px 25px;
            }
        }

        @media (max-width: 480px) {
            .left-panel h1 {
                font-size: 1.5em;
            }

            .confirmation-message p,
            .info-item,
            .tour-info,
            .summary-table td,
            .info-box p {
                font-size: 0.85em;
            }

            .btn-primary.backhome {
                font-size: 0.9em;
                padding: 10px 20px;
            }

            .summary-table .total-row,
            .summary-table .due-row {
                font-size: 1em;
            }
        }