﻿
/* mBooking - Global */

/* Main Layout Section */

.mBooking-mainlayout-table {
    width: 100%;
    border-collapse: collapse;
}

.mBooking-mainlayout-line {
    color: white;
    vertical-align: top;
    font-size: 10px;
    height: 14px;
}

    .mBooking-mainlayout-line.loading,
    .mBooking-mainlayout-line.error,
    .mBooking-mainlayout-line.greeting {
        font-size: 14px;
        height: 10px;
    }

    .mBooking-mainlayout-line.greeting {
        font-weight: bold;
        vertical-align: bottom;
    }

    .mBooking-mainlayout-line.logo {
        text-align: left;
        height: 17px;
    }

.mBooking-mainlayout-cell {
    border-top: 1px solid red;
    border-bottom: 2px solid red;
}

    .mBooking-mainlayout-cell.userinfo {
        width: 94%;
        padding: 10px;
        text-align: right;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 10%, #ff6666 60%, #cc0000 100%);
    }

    .mBooking-mainlayout-cell.picture {
        width: 6%;
        padding: 4px;
        text-align: center;
        vertical-align: middle;
        border-right: 1px solid red;
    }

/* Blank Layout Section */

.mBooking-blank-layout-root {
    min-height: 100dvh;
}

.mbooking-login-link {
    display: block;
    margin-top: 10px;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

    .mbooking-login-link:hover {
        text-decoration: underline;
    }

/* Home Page Section */

.mBooking-page-full {
    background-color: indianred;
    min-height: 100dvh;
}

.mBooking-page {
    background-color: indianred;
    min-height: 88dvh;
}

.profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, #ff6666, #cc0000);
    object-fit: cover;
    cursor: pointer;
}

/* Login Page Section */

.mbooking-login-page {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle at bottom center, 
    #ffa500 0%,
    #ffa500 10%,
    #ff6666 50%,
    #cc0000 100%
    );
}

.mbooking-login-root {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: white;
    width: 460px;
    align-items: center;
}

.mbooking-login-top {
    margin: 100px 0 -90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbooking-login-logo {
    width: 150px;
    height: 150px;
    background-image: url('images/icons/mbooking_ai_logo.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.mbooking-login-middle {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbooking-login-title-app {
    font-size: 28px;
    font-weight: bold;
    color: red;
}

.mbooking-login-bottom {
    margin-top: auto;
    position: relative;
    width: 100%;
    border-radius: 50px 50px 0 0;
    overflow: hidden;
}

.mbooking-login-background {
    position: absolute;
    inset: 0;
    background-image: url('images/login_background.jpg');
    background-size: cover;
    background-position: center;
}

    .mbooking-login-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(230, 0, 0, 0.65);
        pointer-events: none;
    }

.mbooking-login-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mbooking-login-title {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.mbooking-login-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
}

.mbooking-login-input-row {
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.mbooking-login-icon-box {
    width: 60px;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    font-size: 26px;
}

.mbooking-login-input {
    height: 40px;
    border-radius: 12px;
    border: none;
    padding: 0 16px;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    color: blue;
}

.mbooking-login-button {
    margin-top: 20px;
    width: 120px;
    height: 40px;
    background-color: #cc0000;
    color: white;
    border: 1px solid white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.mbooking-login-divider {
    width: 100%;
    height: 4px;
    background-color: white;
    opacity: 0.8;
    margin: 20px 0;
}

.mbooking-login-forgot-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* General Section */

.mBooking-title-bar {
    vertical-align: bottom;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%, #ffffff 100%);
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    height: 40px;
    border-radius: 18px;
    font-size: 14px;
    color: white;
}

.mBooking-title-bar-button {
    flex: 1;
    padding: 3px 0;
    margin-left: 2px;
    border-radius: 4px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    border: none;
    background-color: white;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

    .mBooking-title-bar-button:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-title-bar-button-icon {
    padding: 0 18px 0 18px;
}

.mBooking-title-bar-label {
    margin-left: 2px;
}

/* Latest Trip */

.mBooking-latest-trip-card {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 214px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.mBooking-latest-trip-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    padding: 6px;
    border: 0px solid gold;
    border-radius: 20px;
}

.mBooking-latest-trip-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.mBooking-latest-trip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.mBooking-latest-trip-content-description {
    text-align: center;
    vertical-align: top;
    height: 20px;
    margin-left: 6px;
    font-size: 12px;
    vertical-align: top;
    color: white;
    border-bottom: 1px solid lightskyblue;
    text-wrap: wrap;
}

.mBooking-latest-trip-content-dates {
    text-align: center;
    height: 14px;
    margin-left: 6px;
    font-size: 10px;
    color: yellow
}

.mBooking-vacation-scroll-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5px;
    padding: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: 70px;
    margin-right: 50px;
}

    .mBooking-vacation-scroll-container::-webkit-scrollbar {
        height: 6px;
    }

    .mBooking-vacation-scroll-container::-webkit-scrollbar-thumb {
        background: #cccccc;
        border-radius: 10px;
    }

.mBooking-latest-promotion-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 6px;
    border: 2px solid gold;
    border-radius: 20px;
    background: rgba(0,0,0,.45);
}

.mBooking-latest-promotion-card {
    flex: 0 0 214px;
    width: 214px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.mBooking-latest-promotion-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.mBooking-latest-promotion-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.mBooking-latest-promotion-content-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.3;
    min-height: 2.6em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.mBooking-latest-promotion-content-bottom-row {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mBooking-latest-promotion-content-days {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 1.3;
    min-height: 3.9em;
    max-height: 3.9em;
    color: white;
    margin-bottom: 4px;
}

.mBooking-latest-promotion-content-currency {
    display: block;
    text-align: center;
    color: lightskyblue;
    font-size: 12px;
}

.mBooking-latest-promotion-content-price {
    color: yellow;
}

.mBooking-latest-share-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 214px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
}

.mBooking-latest-share-wrapper {
    padding: 6px;
    border: 2px solid gold;
    border-radius: 20px;
}

.mBooking-latest-share-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}

.mBooking-latest-share-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.mBooking-latest-share-content-description {
    text-align: center;
    vertical-align: top;
    height: 20px;
    margin-left: 6px;
    font-size: 12px;
    vertical-align: top;
    color: white;
    border-bottom: 1px solid lightskyblue;
}

.mBooking-latest-share-content-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
}

.mBooking-latest-share-content-share-by {
    font-size: 12px;
    color: white;
    height: 16px;
}

.mBooking-latest-share-content-share-by-name {
    font-size: 12px;
    color: yellow;
    text-align: right;
    display: flex;
    flex-direction: row;
    height: 16px;
    margin-right: -5px;
}

/* Trip - Section */

.mBooking-trip-image-outer {
    padding: 0 0 0 18px;
}

.mBooking-trip-image-wrapper {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    text-align: center;
    aspect-ratio: 16/9;
    border: 2px solid white;
    border-radius: 20px;
}

    .mBooking-trip-image-wrapper::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 38%;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        pointer-events: none;
        z-index: 1;
    }

.mBooking-trip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    cursor: pointer;
}

.mBooking-trip-title {
    margin-top: -8px;
}

.mBooking-trip-title-first,
.mBooking-trip-title-second,
.mBooking-trip-title-stars {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-shadow: 2px 2px 4px black;
    pointer-events: none;
    z-index: 2;
}

.mBooking-trip-title-first {
    top: 65%;
    font-size: 12px;
    width: 100%;
}

.mBooking-trip-title-second {
    top: 75%;
    font-size: 10px;
    width: 100%;
}

.mBooking-trip-title-stars {
    top: 83%;
    font-size: 14px;
    width: 100%;
    color: gold;
}

.mBooking-trip-share-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: red;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 5;
}

.mBooking-trip-share-count {
    font-weight: bold;
}

@media (max-width: 400px) {
    .mBooking-trip-title-first {
        font-size: 14px;
        top: 60%;
    }

    .mBooking-trip-title-second {
        font-size: 12px;
        top: 70%;
    }

    .mBooking-trip-title-stars {
        font-size: 12px;
        top: 80%;
    }
}

/* Trip - Tab Bar Section */

.mBooking-trip-tab-bar {
    display: flex;
    background-color: red;
    justify-content: space-between;
    padding: 8px 12px 8px 20px;
    margin: 0px 0px 0px 2px;
    width: 100%;
    height: 50px;
    gap: 8px;
}

.mBooking-trip-tab-tab {
    flex: 1;
    padding: 3px 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    border: none;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
    font-size: 14px;
}

    .mBooking-trip-tab-tab:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

    .mBooking-trip-tab-tab.active {
        background: linear-gradient(135deg, #ff9900 0%, #ffcc33 70%);
        color: red;
        font-weight: bold;
    }

/* Trip - Tab Section */

.mBooking-trip-tab-content {
    padding: 10px 5px;
    margin-left: 20px;
    background-color: indianred;
    border-radius: 8px;
}

.mBooking-trip-tab-content-bookings {
    color: white;
}

.mBooking-trip-tab-content-documents {
    color: white;
}

.mBooking-trip-tab-content-feedbacks {
    color: white;
}

.mBooking-trip-tab-content-expenses {
    color: white;
}

.mBooking-trip-tab-content-medias {
    color: white;
}

.mBooking-trip-tab-content-comments {
    color: white;
}

.mBooking-trip-row-line {
    display: flex;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 10px 0px 10px 2px;
}

.mBooking-trip-row-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-left: 16px;
    color: white;
    font-size: 18px;
}

/* Trip - General Section */

.mBooking-trip-container {
    padding-left: 17px;
    padding-right: 6px;
    border-radius: 18px;
    overflow-y: auto;
}

    .mBooking-trip-container.share-page {
        overflow-y: visible;
    }

.mBooking-trip-header {
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%, #ffffff 100%);
    vertical-align: bottom;
    padding-left: 16px;
    padding-top: 8px;
    height: 40px;
    border-radius: 18px;
    font-size: 14px;
    color: white;
}

.mBooking-trip-toolbar-container {
    padding: 10px 6px;
}

.mBooking-trip-toolbar-header {
    display: flex;
    justify-content: flex-start;
    margin: -10px 6px 10px 12px;
}

.mBooking-trip-button {
    padding: 4px 18px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    border-radius: 8px;
    border: none;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

    .mBooking-trip-button:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-trip-menu {
    display: flex;
    align-items: end;
    margin: 0px 0px 0px 20px;
}

    .mBooking-trip-menu .btn {
        padding: 4px 8px;
        color: red;
        transition: color 0.2s ease-in-out;
    }

        .mBooking-trip-menu .btn:hover {
            color: blue;
        }

/* Trip - Menu Popup Section */

.mBooking-modal-backdrop {
    display: flex;
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.mBooking-action-sheet {
    background: white;
    padding: 16px;
    margin: 0 0 0 152px;
    width: 100%;
    max-width: 250px;
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.25s ease-out;
}

.mBooking-action-title {
    margin: 0 0 12px 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: Black;
}

.mBooking-action-button {
    display: flex;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 10px;
    width: 100%;
    border: none;
    border-radius: 10px;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

    .mBooking-action-button:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

    .mBooking-action-button.edit {
        font-weight: bold;
        color: white;
    }

    .mBooking-action-button.delete {
        font-weight: bold;
        color: white;
    }

    .mBooking-action-button.cancel {
        font-weight: bold;
        color: white;
    }

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Trip - Expense or Comment Item Delete Section */

.mBooking-confirm-backdrop {
    display: flex;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.mBooking-confirm-modal {
    background: white;
    margin: 0 0 0 146px;
    width: 90%;
    max-width: 360px;
    border-radius: 8px;
    padding: 20px;
    animation: scaleIn 0.2s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mBooking-confirm-title {
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: red;
}

.mBooking-confirm-message {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 14px;
    color: black;
}

.mBooking-confirm-actions {
    display: flex;
    gap: 10px;
}

    .mBooking-confirm-actions button {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
    }

.mBooking-confirm-delete {
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    color: white;
}

    .mBooking-confirm-delete:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-confirm-cancel {
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    color: white;
}

    .mBooking-confirm-cancel:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Trip - Bookings Section */

.mBooking-booking-row {
    display: flex;
    background-color: white;
    margin-left: 18px;
    margin-right: 6px;
    border-radius: 8px;
    padding-top: 10px;
    padding-right: 4px;
    padding-bottom: 10px;
    padding-left: 10px;
    color: black;
}

.mBooking-booking-row-title {
    margin-left: 6px;
    align-items: center;
    font-size: 14px;
}

.mBooking-booking-row-title-total {
    margin-left: auto;
    margin-right: 6px;
    text-align: right;
    font-size: 14px;
}

.mBooking-booking-card {
    background: white;
    margin-top: 0px;
    margin-right: 4px;
    margin-bottom: 6px;
    margin-left: 18px;
    border: 1px solid lightgray;
    border-radius: 8px;
    cursor: pointer;
}

.mBooking-booking-grid {
    position: relative;
    padding-top: 12px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-left: 18px;
}

.mBooking-booking-timeline-line {
    position: absolute;
    left: 52px;
    width: 2px;
    background-color: black;
    z-index: 1;
}

    .mBooking-booking-timeline-line.top {
        top: 0;
        height: 50%;
    }

    .mBooking-booking-timeline-line.bottom {
        bottom: 0;
        height: 50%;
    }

.mBooking-booking-content {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mBooking-booking-icon {
    width: 60px;
    height: 60px;
    background: lightgray;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: red;
    position: relative;
    z-index: 3;
}

.mBooking-booking-text {
    margin-left: 10px;
    color: black;
}

.mBooking-booking-line1 {
    font-weight: bold;
    font-size: 14px;
    margin-left: 3px;
}

.mBooking-booking-line2-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-left: 3px;
}

.mBooking-booking-chevron {
    color: red;
    font-size: 11px;
}

.mBooking-booking-line3 {
    font-size: 13px;
    margin-left: 3px;
}

/* Trip - Documents Section */

.mBooking-documents {
    align-items: center;
    padding: 2px;
}

.mBooking-document-row {
    display: flex;
    margin-left: 14px;
    margin-right: 12px;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 8px 0;
}

.mBooking-document-row-title {
    align-items: center;
    margin-left: 6px;
    font-size: 14px;
}

.mBooking-trip-tab-content-documents {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
}

.mBooking-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-left: 12px;
}

.mBooking-documents-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.mBooking-documents-preview {
    width: 100%;
    height: 160px;
    border: none;
    pointer-events: none;
}

.mBooking-documents-filename {
    font-size: 12px;
    padding: 6px;
    background: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trip - Feedback Section */

.mBooking-feedback-border {
    padding: 10px;
    background: white;
    margin-left: 20px;
    margin-right: 8px;
    border-radius: 8px;
    border: 1px solid lightgray;
}

.mBooking-feedback-item {
    margin-bottom: 20px;
}

.mBooking-feedback-question {
    font-weight: bold;
    font-size: 14px;
}

.mBooking-feedback-legend {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-left: 14px;
    gap: 6px;
    font-size: 14px;
}

.mBooking-feedback-options {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-left: 12px;
}

.mBooking-feedback-option {
    border: 1px solid darkgray;
    border-radius: 10px;
    padding: 6px 10px;
    margin: 4px;
    cursor: pointer;
}

.mBooking-feedback-option-selected {
    background: #ffe6e6;
    color: red;
    font-weight: bold;
}

.mBooking-feedback-option-disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.mBooking-feedback-label {
    margin-left: 4px;
    font-size: 11px;
    font-weight: bold;
}

.mBooking-feedback-submit {
    margin: 10px auto;
    display: block;
    width: 120px;
    height: 40px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 8px;
}

    .mBooking-feedback-submit:disabled {
        background: gray;
    }

    .mBooking-feedback-submit:enabled {
        background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    }

/* Trip - Expenses Section */

.mBooking-expenses-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    background: white;
    padding: 10px 14px;
    margin: 0px 0px 6px 13px;
    align-items: center;
    border: 1px solid darkgray;
    border-radius: 8px;
}

.mBooking-expenses-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mBooking-expenses-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.mBooking-expenses-description {
    line-height: 1.3;
    font-size: 14px;
    color: black;
}

.mBooking-expenses-amount {
    font-size: 14px;
    font-weight: bold;
    color: red;
}

.mBooking-expenses-date {
    font-size: 12px;
    font-weight: bold;
    color: blue;
}

.mBooking-expenses-receipt {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #0d6efd;
    cursor: pointer;
    user-select: none;
}

    .mBooking-expenses-receipt i {
        font-size: 18px;
    }

    .mBooking-expenses-receipt:hover {
        text-decoration: underline;
    }

.mBooking-expenses-footer {
    display: grid;
    background-color: white;
    grid-template-columns: 1fr auto auto;
    padding: 12px;
    margin: 20px 0px 4px 14px;
    align-items: center;
    gap: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.mBooking-expenses-total-label {
    font-weight: bold;
    font-size: 14px;
    color: black;
}

.mBooking-expenses-total-amount {
    font-weight: bold;
    font-size: 14px;
    color: red;
}

@media (max-width: 576px) {
    .mBooking-expense-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .mBooking-expense-right {
        align-items: flex-start;
    }

    .mBooking-expense-menu {
        align-self: flex-end;
    }

    .mBooking-expense-footer {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Trip - Medias Section */

.mBooking-medias-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 12px;
}

@media (max-width: 992px) {
    .mBooking-medias-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .mBooking-medias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mBooking-medias-card {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.mBooking-medias-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.mBooking-medias-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mBooking-medias-delete:hover {
        background: #dc3545;
    }

/* Trip - Comments Section */

.mBooking-comments-card {
    background: white;
    padding: 10px 14px;
    margin: 0px 0px 6px 13px;
    border: 1px solid darkgray;
    border-radius: 8px;
}

.mBooking-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mBooking-comments-type {
    line-height: 1.3;
    font-size: 14px;
    color: black;
}

.mBooking-comments-duration {
    font-size: 12px;
    color: darkgray;
    margin-left: 6px;
}

.mBooking-comments-body {
    line-height: 1.3;
    font-size: 14px;
    color: black;
}

.mBooking-comments-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

    .mBooking-comments-footer button {
        color: #0d6efd;
    }

.mBooking-comments-attachment {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #0d6efd;
    cursor: pointer;
    user-select: none;
}

    .mBooking-comments-attachment i {
        font-size: 18px;
    }

    .mBooking-comments-attachment:hover {
        text-decoration: underline;
    }

.mBooking-field-label {
    padding: 14px 0 4px 4px;
    height: 40px;
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.mBooking-field-select {
    vertical-align: central;
    height: 34px;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-field-select-booking-status {
    background: white;
    color: #0d6efd;
    min-width: 160px;
    margin: 12px 0 0 12px;
    height: 30px;
    padding: 0 12px;
    border-radius: 20px;
    border: 1px solid #cfd8dc;
    font-weight: 600;
    cursor: pointer;
}

.mBooking-field-text-multiline {
    vertical-align: central;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-field-text-email {
    vertical-align: central;
    font-weight: bold;
    font-size: 14px;
    color: black;
    margin-left: 8px;
    padding-right: 38px;
}

.mBooking-field-text-email-share-page {
    margin-left: 8px;
}

.mBooking-field-bar-buttons {
    margin: 10px 0 0 0;
}

.mBooking-field-attachment {
    margin: 10px 0 10px 0;
    padding: 10px;
    font-family: 'Courier New';
    font-weight: bold;
    font-size: 14px;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.mBooking-field-upload {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mBooking-field-currency-row {
    display: flex;
    align-items: start;
    gap: 8px;
}

.mBooking-field-currency-flag {
    display: flex;
    width: 5%;
    justify-content: center;
    align-items: center;
}

    .mBooking-field-currency-flag img {
        max-height: 28px;
        object-fit: contain;
    }

.mBooking-field-currency-select {
    width: 16%;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-field-currency-amount {
    width: 10%;
    vertical-align: central;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-trip-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mBooking-trip-view-toggle {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
    padding-right: 12px;
    border: 2px solid red;
    padding: 2px;
    margin-top: 4px;
    margin-right: 12px;
    margin-bottom: 10px;
}

    .mBooking-trip-view-toggle:hover {
        opacity: 0.8;
    }

.mBooking-booking-card.small {
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    cursor: pointer;
}

.booking-info-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-info-card {
    background: antiquewhite;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    margin-left: 70px;
    margin-right: 60px;
    margin-bottom: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.booking-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: black;
    margin-bottom: 6px;
}

.label {
    min-width: 200px;
}

.value {
    text-align: right;
}

.booking-info-row:last-child {
    margin-bottom: 0;
}

.airline-itin-airline {
    color: black;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.airline-flight-card {
    text-align: center;
}

.airline-flight-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
}

.airline-flight-col-first {
    color: black;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-right: 20px;
}

.airline-flight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .airline-flight-icon i {
        color: #dc3545;
        font-size: 20px;
    }

.airline-flight-col-last {
    color: black;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-left: 20px;
}

.mBooking-trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-left: 20px;
}

    .mBooking-trip-grid .mBooking-trip-image-outer {
        padding-left: 0;
    }

@media (max-width: 992px) {
    .mBooking-trip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mBooking-trip-grid {
        grid-template-columns: 1fr;
    }
}

.booking-info-field-bold {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: black;
    font-size: 14px;
}

    .booking-info-field-bold.value {
        color: deepskyblue;
        text-align: right;
        font-size: 16px;
    }

.booking-info-field-normal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    font-size: 14px;
}

    .booking-info-field-normal.value {
        color: deepskyblue;
        text-align: right;
        font-size: 16px;
    }

.mBooking-booking-group {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 1rem;
}

    .mBooking-booking-group .mBooking-trip-share-icon {
        display: none !important;
    }

.mBooking-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
    color: red;
}

    .mBooking-group-header span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.mBooking-chevron {
    background: none;
    border: none;
    cursor: pointer;
}

.mBooking-booking-title {
    font-size: 14px;
    font-weight: bold;
}

.mBooking-booking-dates {
    font-size: 14px;
}

/* Trip Section */

.mBooking-trip-details {
    background-color: #ffffff;
    padding: 10px 12px 12px 12px;
    border-radius: 0 0 12px 12px;
}

.mBooking-trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.mBooking-trip-bookings {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #6c757d;
}

    .mBooking-trip-bookings i {
        font-size: 14px;
        color: #dc3545;
    }

.mBooking-trip-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: bold;
}

    .mBooking-trip-price .currency {
        color: #6c757d;
    }

    .mBooking-trip-price .amount {
        color: #dc3545;
    }

.mBooking-trip-shared {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .mBooking-trip-shared .label {
        font-size: 12px;
        color: #6c757d;
    }

    .mBooking-trip-shared .name {
        font-size: 16px;
        font-weight: bold;
        color: #dc3545;
    }

.mBooking-trip-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mBooking-trip-type {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #6c757d;
}

    .mBooking-trip-type i {
        font-size: 14px;
        color: #6c757d;
    }

.mBooking-trip-type-icon {
    font-size: 10px;
    color: #000000;
    line-height: 1;
}




.mBooking-card-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #cc0000;
    vertical-align: middle;
}

.travel-documents-container {
    padding: 10px;
}

.travel-documents-scroll {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.travel-document-card {
    display: flex;
    gap: 10px;
    min-width: 38px;
    margin-left: 60px;
}

.travel-document-left {
    width: 180px;
    height: 108px;
    background-color: lightgray;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-document-city {
    font-size: 18px;
    font-weight: bold;
    color: red;
}

.travel-document-right {
    width: 180px;
    height: 108px;
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.visa-type {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.visa-row {
    font-size: 14px;
}

.visa-label {
    font-weight: bold;
    color: black;
}

.visa-value {
    font-weight: bold;
    color: black;
}

.mBooking-promotions-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    margin: 0 auto 20px;
}

.mBooking-promotions-image-wrapper {
    position: relative;
    height: 220px;
    position: relative;
    z-index: 0;
}

    .mBooking-promotions-image-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 90px;
        background: linear-gradient( to top, rgba(0,0,0,0.98), rgba(0,0,0,0.8), rgba(0,0,0,0));
        z-index: 1;
        pointer-events: none;
    }

.mBooking-promotions-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mBooking-promotions-title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 48px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    text-align: center;
}

.mBooking-promotions-meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    align-items: center;
    text-align: center;
    color: yellow;
}

.mBooking-promotions-dates {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.mBooking-promotions-price {
    font-size: 14px;
    font-weight: bold;
}

    .mBooking-promotions-price .currency {
        margin-right: 4px;
        color: #aee4ff;
    }

    .mBooking-promotions-price .amount {
        color: yellow;
    }

.mBooking-promotions-details {
    padding: 14px;
    text-align: center;
}

.mBooking-promotions-description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
}

.mBooking-promotions-link {
    display: inline-block;
    font-weight: bold;
    color: #0d6efd;
    cursor: pointer;
    text-decoration: none;
}

    .mBooking-promotions-link:hover {
        text-decoration: underline;
    }

/* ChatGPT Page Section */

.mBooking-chat-gpt-page {
    background-color: indianred;
}

.mBooking-chat-gpt-container {
    padding-left: 17px;
    padding-right: 6px;
    border-radius: 18px;
    padding-bottom: 90px;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.mBooking-chat-gpt-message {
    display: flex;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

    .mBooking-chat-gpt-message.own {
        justify-content: flex-start;
    }

    .mBooking-chat-gpt-message.other {
        justify-content: flex-end;
    }

.mBooking-chat-gpt-bubble {
    display: block;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 12px;
    background: #e5f0ff;
    margin-bottom: 10px;
}

    .mBooking-chat-gpt-bubble.user {
        background: #cce0ff;
        margin-left: 6px;
        margin-right: 10px;
    }

    .mBooking-chat-gpt-bubble.assistant {
        background: #ffffff;
        margin-left: 30px;
        margin-right: 10px;
    }

.mBooking-chat-gpt-input-bar {
    position: fixed;
    left: 140px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: indianred;
    border-top: 1px solid #ccc;
    z-index: 20;
}

.mBooking-chat-gpt-input {
    flex: 1 1 auto;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    min-width: 0;
}

.mBooking-chat-gpt-send-button {
    flex: 0 0 auto;
    vertical-align: bottom;
    white-space: nowrap;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    color: white;
    height: 50px;
    width: 100px;
}

/* Chats Page Section */

.mBooking-chats-page {
    background-color: indianred;
}

.mBooking-chats-container {
    padding-left: 17px;
    padding-right: 6px;
    border-radius: 18px;
    padding-bottom: 90px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .mBooking-chats-container::-webkit-scrollbar {
        display: none;
    }

.mBooking-chats-date-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px 0 8px 0;
}

.mBooking-date-text {
    font-weight: 600;
    font-size: 13px;
    color: blue;
}

.mBooking-date-divider {
    width: 100%;
    height: 2px;
    background: #dcdcdc;
    margin-top: 6px;
}

.mBooking-chats-system-message {
    display: flex;
    width: 100%;
    margin: 8px 0;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    opacity: 0.85;
}

.mBooking-chats-message {
    display: flex;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

    .mBooking-chats-message.user {
        justify-content: flex-start;
    }

    .mBooking-chats-message.assistant {
        justify-content: flex-end;
    }

.mBooking-chats-agent-name {
    font-size: 12px;
    opacity: 0.65;
    margin-left: 32px;
    margin-bottom: 2px;
    color: blue;
    font-weight: bold;
}

.mBooking-chats-bubble {
    display: block;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 12px;
    background: #e5f0ff;
    margin-bottom: 10px;
}

    .mBooking-chats-bubble.user {
        background: #cce0ff;
        margin-left: 6px;
        margin-right: 10px;
    }

    .mBooking-chats-bubble.assistant {
        background: #ffffff;
        margin-left: 30px;
        margin-right: 10px;
    }

.mBooking-chats-input-bar {
    position: fixed;
    left: 140px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: indianred;
    border-top: 1px solid #ccc;
    z-index: 20;
}

.mBooking-chats-input {
    flex: 1 1 auto;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    min-width: 0;
}

.mBooking-chats-send-button {
    flex: 0 0 auto;
    vertical-align: bottom;
    white-space: nowrap;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    color: white;
    height: 50px;
    width: 100px;
}
