body {
    letter-spacing: 0.26px;
}

.tv-field,
.tv-meta-field {
    background: #fff;
    border: 1px solid #C5C5C5;
    border-radius: 0.75rem;
    position: relative;
}

.tv-field label,
.tv-meta-field label {
    display: block;
    padding: 0.55rem 0.65rem 0.1rem;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 600;
}

.tv-field input,
.tv-field select,
.tv-meta-field input,
.tv-meta-field select,
.tv-meta-field textarea {
    width: 100%;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    outline: none;
    box-shadow: none;
    border-radius:5px;
}
.tv-field .cusPadd{
    padding: 0.35rem 0.65rem 0.75rem
}

.tv-meta-field {
    background: #FBFBFC;
    border-radius: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 24px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e7eb;
    transition: .2s;
    border-radius: 999px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.switch input:checked + .slider { background-color: #2C2C2C; }
.switch input:checked + .slider:before { transform: translateX(30px); }
.switch .labels:after {
    content: attr(data-off);
    position: absolute;
    right: 8px;
    top: 4px;
    color: #374151;
    font-size: 10px;
}
.switch input:checked + .slider .labels:after {
    content: attr(data-on);
    left: 8px;
    right: auto;
    color: #fff;
}

.tab-curve[aria-selected="true"],
.journey-tab[aria-selected="true"] { opacity: 1; }

/* Active scope tab: white background blends with the white content card */
.scope-tab[aria-selected="true"] {
    background: #ffffff;
    color: #001488;
    opacity: 1;
}

/* Inactive scope tab: retains the dark gradient defined inline; reduce opacity */
.scope-tab[aria-selected="false"] {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .documents-wrapper { gap: .5rem; }
}

/* ------------------------------------------------------------------ */
/* Shared UI component classes (Travelution design system)            */
/* Used by Login, Unauthorized, Bookings list, etc.                   */
/* ------------------------------------------------------------------ */

:root {
    --tv-navy-1: #00137C;
    --tv-navy-2: #0B1A5E;
    --tv-accent-1: #03BBFF;
    --tv-accent-2: #7937E4;
}

.tv-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.75rem;
    box-shadow: 0 24px 60px -12px rgba(11, 26, 94, 0.45);
}

.tv-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0B1A5E;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.tv-input {
    width: 100%;
    background: #fff;
    border: 1px solid #C5C5C5;
    border-radius: 0.85rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.85rem;
    color: #111827;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.tv-input::placeholder { color: #9AA1B2; }
.tv-input:focus {
    border-color: var(--tv-accent-1);
    box-shadow: 0 0 0 3px rgba(3, 187, 255, 0.18);
}

.tv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background-image: linear-gradient(90deg, var(--tv-accent-1) 0%, var(--tv-accent-2) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    box-shadow: 0 10px 24px -8px rgba(121, 55, 228, 0.55);
}
.tv-btn:hover { transform: translateY(-1px); opacity: 0.96; }
.tv-btn:active { transform: translateY(0); }

.tv-header-bar {
    background-image: linear-gradient(90deg, var(--tv-navy-1), var(--tv-navy-2));
    border-radius: 1rem;
    color: #fff;
}

.tv-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 12px 40px -16px rgba(11, 26, 94, 0.35);
}
