* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BACK BAR ===== */
.back-bar {
    background: var(--gradient-primary);
    font-size: 0.875rem;
    padding: 8px 0;
}
.back-bar .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}
.back-bar .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.back-bar .breadcrumb-item a:hover {
    color: #fff;
}
.back-bar .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}
.back-bar .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

:root {
    /* ── Blue-White Theme ── */
    --color-primary:      #3B82F6;
    --color-primary-dark: #1E40AF;
    --color-primary-hover:#2563EB;
    --color-bg:           #F8FAFC;
    --color-text:         #1F2937;
    --color-white:        #FFFFFF;

    /* ── Gradients ── */
    --gradient-primary:   linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-success:   linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-dark:      linear-gradient(135deg, #1e3a8a 0%, #1E40AF 100%);
    --gradient-orange:    linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
}

/* Header Gradient */
.header-gradient {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(30,64,175,0.12);
    border-bottom: 2px solid #DBEAFE;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    color: var(--color-text) !important;
    opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
    transform: translateY(-2px);
    opacity: 1;
    color: var(--color-primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.header-gradient .thuexe-navbar {
    padding: 0.6rem 0;
}

.header-gradient .thuexe-nav-list {
    align-items: center;
    justify-content: center;
    margin-right: auto;
}

.header-gradient .thuexe-nav-list .nav-link {
    text-align: center;
}

.header-gradient .thuexe-navbar-toggler {
    border: 1.5px solid #bfdbfe;
    border-radius: 10px;
    padding: 0.36rem 0.5rem;
}

.header-gradient .thuexe-navbar-toggler:focus {
    box-shadow: 0 0 0 0.22rem rgba(59, 130, 246, 0.25);
}

@media (max-width: 991.98px) {
    .header-gradient .thuexe-navbar {
        padding: 0.5rem 0;
    }

    .header-gradient .nav-brand-wrap {
        min-width: 0;
        gap: 0.45rem !important;
    }

    .header-gradient .globalcare-logo {
        height: 44px !important;
    }

    .header-gradient .thuexe-logo {
        height: 44px !important;
        width: 58px !important;
    }

    .header-gradient .thuexe-title {
        font-size: 1.05rem !important;
    }

    .header-gradient .thuexe-navbar-collapse {
        margin-top: 0.65rem;
        padding: 0.6rem;
        border: 1px solid #dbeafe;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(30, 64, 175, 0.12);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .header-gradient .thuexe-nav-list {
        gap: 0.12rem;
        width: 100%;
    }

    .header-gradient .thuexe-nav-list .nav-item {
        width: 100%;
    }

    .header-gradient .thuexe-nav-list .nav-link {
        margin: 0;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        padding: 0.65rem 0.8rem;
        line-height: 1.25;
    }

    .header-gradient .thuexe-nav-list .nav-link:hover,
    .header-gradient .thuexe-nav-list .nav-link.active {
        transform: none;
        opacity: 1;
        background: #eff6ff;
    }

    .header-gradient .thuexe-nav-list .nav-link.active::after {
        display: none;
    }

    .header-gradient .thuexe-nav-list .auth-nav-item {
        margin-left: 0 !important;
        margin-top: 0.35rem;
        padding-top: 0.45rem;
        border-top: 1px solid #e5e7eb;
    }

    .header-gradient .thuexe-nav-list #auth-loading {
        padding: 0.45rem 0.25rem !important;
    }

    .header-gradient .thuexe-nav-list #auth-guest > button,
    .header-gradient .thuexe-nav-list #auth-user > button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .header-gradient .globalcare-logo {
        height: 40px !important;
    }

    .header-gradient .thuexe-logo {
        height: 40px !important;
        width: 50px !important;
    }

    .header-gradient .thuexe-title {
        font-size: 0.97rem !important;
        letter-spacing: 0.2px !important;
    }

    .header-gradient .thuexe-navbar-collapse {
        margin-top: 0.55rem;
        padding: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.search-box .form-control,
.search-box .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.35);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(37, 99, 235, 0.45);
    color: var(--color-white);
}

.btn-gradient-secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.btn-gradient-success {
    background: var(--gradient-success);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* Map Picker */
.map-picker-box {
    border-radius: 10px;
    overflow: hidden;
}
.map-picker-box .map-el {
    height: 260px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}
.btn-map-picker {
    font-size: 0.8rem;
    padding: 4px 12px;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    border-radius: 6px;
    transition: all 0.2s;
}
.btn-map-picker:hover,
.btn-map-picker.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}
.leaflet-popup-content { font-size: 0.82rem; max-width: 220px; }

/* Car Cards */
.car-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.car-card-img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.car-card:hover .car-card-img {
    transform: scale(1.1);
}

.car-card-body {
    padding: 20px;
}

.car-price {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
}
.car-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.car-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.car-feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
}

.badge-available {
    background: var(--gradient-success);
}

.badge-rented {
    background: var(--gradient-secondary);
}
.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover; /* ảnh đầy khung, không có khoảng trống */
}
/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

/* Footer */
.footer-gradient {
    background: var(--gradient-dark);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* ===== Booking Modal (mobile-first) ===== */
#bookingModal .modal-dialog {
    max-width: 760px;
}

#bookingModal .booking-modal-content {
    border-radius: 16px;
    overflow: hidden;
}

/* ===== Booking modal header — logo + title centered ===== */
.booking-modal-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 8px;
}
.tx-bk-spacer { width: 32px; flex-shrink: 0; }
.tx-bk-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.tx-bk-center h5 { white-space: nowrap; font-size: 1rem; color: #1e293b; }
.tx-bk-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    padding: 0;
}

#bookingModal .booking-modal-header {
    border-radius: 0;
}
#bookingModal .booking-modal-header .btn-close {
    filter: none;
}

#bookingModal .booking-modal-body {
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

#bookingModal .booking-form .form-label {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

#bookingModal .booking-form .form-control,
#bookingModal .booking-form .form-select {
    border-radius: 10px;
    min-height: 44px;
}

#bookingModal .booking-form textarea.form-control {
    min-height: 92px;
}

#bookingModal .booking-touch-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#bookingModal .booking-map-actions {
    gap: 0.55rem;
}

#bookingModal .booking-map-actions .btn-map-picker {
    border-radius: 999px;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1;
}

#bookingModal .booking-map-actions .btn-map-gps {
    border: 1px solid transparent;
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.28);
}

#bookingModal .booking-map-actions .btn-map-gps:hover {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
    border-color: transparent;
}

#bookingModal .booking-map-actions .btn-map-gps:focus-visible {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
    outline: 3px solid rgba(59, 130, 246, 0.25);
    outline-offset: 2px;
}

#bookingModal .booking-submit-wrap {
    padding-top: 0.8rem;
}

/* Submit button — căn giữa, không full-width */
.booking-submit-wrap {
    text-align: center;
    margin-top: 16px;
}
.booking-submit-btn {
    min-height: 46px;
    font-size: 0.96rem;
    min-width: 160px;
    padding: 12px 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Capture buttons — luôn cùng hàng, chia đôi đều */
.tx-capture-btns {
    display: flex;
    gap: 10px;
}
.tx-capture-photo,
.tx-capture-video {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    border: none;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    transition: opacity 0.2s;
}
.tx-capture-photo { background: var(--gradient-primary); color: white; }
.tx-capture-video { background: linear-gradient(135deg, #0f172a, #1e3a5f); color: white; }
.tx-capture-photo:hover,
.tx-capture-video:hover { opacity: 0.88; }

/* Map action buttons — luôn cùng hàng */
.booking-map-actions {
    display: flex;
    gap: 8px;
}
.booking-map-actions .btn-map-picker {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 600;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Media preview box — luôn hiện */
.tx-media-preview-box {
    margin-top: 10px;
    background: #f8fafc;
    border: 1px dashed rgba(59,130,246,0.35);
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.tx-media-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.tx-media-preview-grid:empty::before {
    content: 'Chưa có ảnh / video';
    font-size: 0.8rem;
    color: #94a3b8;
}

#bookingModal .tx-confirm-actions .btn {
    min-height: 44px;
}

/* ===== Addon service cards ===== */
.addon-service-grid {
    margin-top: 2px;
}

.addon-service-card {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.addon-service-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    pointer-events: none;
}

.addon-service-shell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 86px;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #cbd5e1;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.12s ease;
}

.addon-service-check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 2px solid #64748b;
    background: #fff;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.76rem;
}

.addon-service-main {
    display: block;
    width: 100%;
    min-width: 0;
}

.addon-service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.addon-service-name {
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
}

.addon-service-price {
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.86rem;
    white-space: nowrap;
}

.addon-service-desc {
    display: block;
    margin-top: 4px;
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.35;
}

.addon-service-card:hover .addon-service-shell {
    border-color: var(--color-primary);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.16);
}

.addon-service-card:active .addon-service-shell {
    transform: translateY(1px);
}

.addon-service-input:focus-visible + .addon-service-shell {
    outline: 3px solid rgba(59, 130, 246, 0.28);
    outline-offset: 2px;
}

.addon-service-input:checked + .addon-service-shell {
    border-color: var(--color-primary);
    background: #eff6ff;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18);
}

.addon-service-input:checked + .addon-service-shell .addon-service-check {
    border-color: transparent;
    background: var(--gradient-primary);
    color: #fff;
}

.addon-service-input:checked + .addon-service-shell .addon-service-name,
.addon-service-input:checked + .addon-service-shell .addon-service-price {
    color: #1e3a8a;
}

header.sticky-top {
    z-index: 1030; /* Dưới Bootstrap modal (1055) để modal không bị che */
}
/* Car Detail Page */
.car-detail-img {
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
    object-fit: cover;
}

.car-gallery-thumb {
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.car-gallery-thumb:hover,
.car-gallery-thumb.active {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.info-box {
    background: #EFF6FF;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0 !important;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .search-box {
        padding: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .car-detail-img {
        height: 250px;
    }

    #bookingModal .booking-modal-body {
        padding: 0.9rem;
    }

    #bookingModal .booking-form-grid {
        row-gap: 0.85rem !important;
    }

    #bookingModal .booking-map-actions .booking-touch-btn {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
    }

    #bookingModal .booking-submit-wrap {
        padding-top: 0.65rem;
    }

    .addon-service-shell {
        min-height: 80px;
        padding: 10px;
    }

    .addon-service-top {
        flex-direction: column;
        gap: 2px;
    }

    .addon-service-price {
        font-size: 0.84rem;
    }

}

/* ── Small Phone (≤576px) ── */
@media (max-width: 576px) {
    .hero-section     { padding: 60px 0 !important; }
    .hero-section h1  { font-size: 1.7rem; }
    .hero-section p   { font-size: 0.92rem; margin-bottom: 20px; }
    .search-box       { padding: 14px; margin-top: 20px; }
    .section-title h2 { font-size: 1.55rem; }
    .section-title    { margin-bottom: 28px; }
    .service-card     { padding: 18px; }
    .car-card:hover   { transform: none; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
    .service-card:hover { transform: none; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
    .car-gallery-thumb { height: 80px; }
    .car-detail-img   { height: 200px; }
    .booking-sticky   { position: static !important; }
}

/* ── Very Small Phone (≤480px) ── */
@media (max-width: 480px) {
    .hero-section     { padding: 50px 0 !important; }
    .hero-section h1  { font-size: 1.5rem; }
    .section-title h2 { font-size: 1.4rem; }
    .search-box       { padding: 12px; }
    .service-icon     { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* Loading Spinner */
.spinner-border-gradient {
    border-right-color: var(--color-primary);
    border-top-color: var(--color-primary-dark);
}

/* Pagination */
.pagination .page-link {
    border-radius: 10px;
    margin: 0 5px;
    border: none;
    color: var(--color-primary);
}

.pagination .page-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border: none;
}

/* Alert boxes */
.alert-gradient-success {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    border: none;
    color: #155724;
}

.alert-gradient-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
}
.booking-sticky {
    top: 80px;   /* = chiều cao navbar */
    z-index: 1010; /* thấp hơn navbar */
}
/* ===== Booking confirm panel ===== */
.tx-cf-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}
.tx-cf-row:last-child { border-bottom: none; }
.tx-cf-label {
    flex-shrink: 0;
    min-width: 120px;
    font-size: 0.85rem;
    color: #6b7280;
}
.tx-cf-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: right;
    word-break: break-word;
}
