/* ═════════════════════════════════════════════════════════════════════════
   Global Cargonerds styles.
   Loaded explicitly from App.razor in the Server project.

   When to put styles here vs in a component .razor.css:
   - Styles that target third-party components (Blazorise, MudBlazor) where
     Blazor CSS isolation can't reach the rendered internals.
   - Styles shared across multiple sibling components (using a parent's
     .razor.css would require a wrapper element + ::deep and still fail
     when the parent has no host element of its own).
   - Component styles that belong to the component should live in that
     component's .razor.css.
   ═════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────── Loader / framework ─────────────────────── */
.loader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #f1f1f2;
}

#ApplicationContainer > div:first-child:not(:only-child) {
    display: none !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

:root {
    --lpx-logo: url('/images/logo/leptonx/icon.svg');
    --lpx-logo-icon: url('/images/logo/leptonx/icon.svg');
}

/* ──────────────────────────────── Booking: sticky nav ───────────────────── */
/* Safety net for the step navigation — duplicated from BookingStepNavigation.razor.css
   because scoped CSS can flake across Blazor renderer generations. These rules
   apply unconditionally to the same markup so the active pill always lights up. */
.booking-nav {
    position: sticky;
    top: 30px;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: var(--lpx-content-bg, rgba(var(--bs-body-bg-rgb), 0.92)) !important;
}

.booking-nav .step-btn {
    transition: all 0.2s;
    font-size: 0.82rem;
    white-space: nowrap;
}

.booking-nav .step-btn.active {
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.25);
}

/* ──────────────────────────────── Dashboard notification tabs ────────────── */
.dash-tab-bar {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--bs-border-color);
    background: var(--lpx-content-bg, var(--bs-body-bg));
    padding: 0;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dash-tab-bar::-webkit-scrollbar {
    display: none;
}

.dash-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--bs-secondary-color, #6c757d);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    transition: color 0.15s, background 0.15s;
}

.dash-tab-btn:hover {
    color: var(--bs-body-color);
    background: var(--bs-tertiary-bg, rgba(0, 0, 0, 0.03));
}

.dash-tab-btn.active {
    color: var(--bs-primary);
    font-weight: 600;
}

.dash-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 2px 2px 0 0;
}

.dash-tab-btn i {
    font-size: 0.8rem;
}

.dash-tab-badge {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    line-height: 1.3;
    min-width: 18px;
    text-align: center;
}

/* ──────────────────────────────── Booking: shared ────────────────────────── */
/* Applied across every section-level card the booking wizard renders. */
.booking-section .card {
    border: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.booking-section .card-header {
    background: transparent;
    border-bottom: 1px solid var(--bs-border-color);
}

.booking-section .card-header h5 {
    font-size: 1rem;
    font-weight: 600;
}

.validation-error {
    color: var(--bs-danger);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* ──────────────────────────── Organization toggle (Blazorise overrides) ──── */
/* Blazorise DropdownToggle renders a <button> in its own CSS-isolation scope,
   so scoped selectors in OrganizationToggle.razor.css never match it — these
   have to be global. */
.org-toggle-btn::after,
.org-toggle-btn::before {
    display: none !important;
}

.org-toggle-btn {
    border: none !important;
    box-shadow: none !important;
}

.org-toggle-badge {
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    font-size: .6rem !important;
    min-width: 1.1rem;
    padding: .15em .4em !important;
}

/* Dropdown-menu children inside OrganizationToggle. Rendered inside Blazorise's
   DropdownMenu ChildContent, so they live under a scope that isn't our own. */
.ou-item:hover:not(.ou-disabled) {
    background: var(--bs-primary-bg-subtle, rgba(0, 44, 97, .06)) !important;
}

.ou-active .ou-check {
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.ou-item:not(.ou-active) .ou-check {
    background: transparent;
}

.ou-item:not(.ou-active):not(.ou-disabled):hover .ou-check {
    border-color: var(--bs-primary) !important;
}

.ou-disabled {
    opacity: .5;
    cursor: default !important;
}


/* Dashboard notification tab bar */
.dash-tab-bar {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--bs-border-color);
    background: var(--lpx-content-bg, var(--bs-body-bg));
    padding: 0;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .dash-tab-bar::-webkit-scrollbar {
        display: none;
    }

.dash-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--bs-secondary-color, #6c757d);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    transition: color 0.15s, background 0.15s;
}

    .dash-tab-btn:hover {
        color: var(--bs-body-color);
        background: var(--bs-tertiary-bg, rgba(0,0,0,0.03));
    }

    .dash-tab-btn.active {
        color: var(--bs-primary);
        font-weight: 600;
    }

        .dash-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 20px;
            right: 20px;
            height: 2px;
            background: var(--bs-primary);
            border-radius: 2px 2px 0 0;
        }

    .dash-tab-btn i {
        font-size: 0.8rem;
    }

.dash-tab-badge {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    line-height: 1.3;
    min-width: 18px;
    text-align: center;
}

/* ──────────────────────────────── Shipment detail page ──────────────────── */
/* These live in the global stylesheet (rather than Shipment.razor.css) because
   the page has no single host element of its own — it renders multiple top-level
   sibling elements depending on state, so ::deep scoped CSS cannot reliably reach
   them. */

/* Font-size utilities for the shipment page */
.shipment-fs-xxs { font-size: 0.65rem; }
.shipment-fs-xs  { font-size: 0.7rem;  }
.shipment-fs-sm  { font-size: 0.78rem; }
.shipment-fs-md  { font-size: 0.82rem; }
.shipment-fs-lg  { font-size: 0.9rem;  }

/* Back-button circle */
.shipment-back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tag chip (removable) */
.shipment-tag-chip {
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: opacity 0.15s;
    font-size: 0.82rem;
    padding: 4px 8px 4px 12px;
    line-height: 1.4;
    gap: 6px;
    color: #fff;
    background-color: var(--shipment-tag-bg, #6c757d);
}
.shipment-tag-chip:hover {
    opacity: 0.9;
}
.shipment-tag-remove {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.7rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}
.shipment-tag-remove:hover {
    background: rgba(255, 255, 255, 0.45) !important;
}
.shipment-tag-add-btn {
    font-size: 0.82rem;
    padding: 4px 12px;
}
.shipment-tag-popover {
    z-index: 1050;
    min-width: 260px;
    left: 0;
}

/* Origin / destination circle icons */
.shipment-route-icon {
    width: 36px;
    height: 36px;
}
.shipment-route-icon-origin { background-color: rgba(13, 110, 253, 0.1); }
.shipment-route-icon-dest   { background-color: rgba(25, 135, 84, 0.1); }

/* Transport mode badge (icon box in the route bar) */
.shipment-transport-mode-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 110, 253, 0.08);
}

/* Main route progress bar */
.shipment-route-progress {
    height: 6px;
    background-color: var(--bs-border-color);
    border-radius: 3px;
}
.shipment-route-progress-fill {
    width: var(--shipment-progress, 0%);
    background: linear-gradient(90deg, #0d6efd, #198754);
    transition: width 0.5s;
}

/* Transport split layout */
.shipment-transport-split {
    min-height: 420px;
    max-height: 560px;
}
.shipment-transport-map {
    min-height: 420px;
}

/* Timeline panel responsive width */
.shipment-timeline-panel {
    transition: width 0.25s ease, max-width 0.25s ease, padding 0.25s ease;
    flex: 0 0 auto;
    width: 100%;
    overflow-y: auto;
}
@media (min-width: 992px) {
    .shipment-timeline-panel {
        width: 33% !important;
        max-width: 380px;
        border-right: 1px solid var(--bs-border-color) !important;
        border-bottom: none !important;
    }
    .shipment-timeline-panel.collapsed {
        width: 52px !important;
        max-width: 52px !important;
        padding: 8px 4px !important;
    }
}
@media (max-width: 991.98px) {
    .shipment-timeline-panel {
        max-height: 350px;
    }
    .shipment-timeline-panel.collapsed {
        max-height: none;
        padding: 8px 4px !important;
    }
}

/* Transport mini-header icon */
.shipment-transport-head-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.05));
}
.shipment-transport-head-icon i {
    color: #0EA5E9;
    font-size: 0.85rem;
}

/* Collapse toggle button in timeline header */
.shipment-timeline-collapse-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Live-tracking mini pulse dot (used inline inside badge) */
.shipment-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    margin-right: 3px;
    animation: tracking-pulse 1.5s ease-in-out infinite;
}

/* Small inner progress bar */
.shipment-mini-progress {
    height: 3px;
    background-color: var(--bs-border-color);
    border-radius: 2px;
}
.shipment-mini-progress-fill {
    width: var(--shipment-progress, 0%);
    background: linear-gradient(90deg, #0EA5E9, #10B981);
    transition: width 0.5s;
}

/* Milestone dot */
.shipment-milestone-dot {
    transition: transform 0.15s ease;
}
.shipment-milestone-dot:hover {
    transform: scale(1.1);
}

/* Timeline leg stop - clickable */
.shipment-timeline-stop-clickable {
    border-radius: 6px;
    padding: 2px 4px;
    margin: -2px -4px;
    transition: background-color 0.15s ease;
    cursor: pointer;
}
.shipment-timeline-stop-clickable:hover {
    background-color: var(--bs-tertiary-bg, rgba(0, 0, 0, 0.04));
}

/* Vessel card header icon */
.shipment-vessel-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0EA5E9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Activity / messages scroll containers */
.shipment-activity-body {
    max-height: 400px;
    overflow-y: auto;
}

/* Section nav (sticky scroll-spy) */
.shipment-section-nav {
    top: 0;
    z-index: 1020;
    background: var(--bs-body-bg, #fff);
    border-bottom: 1px solid var(--bs-border-color);
}
.shipment-section-nav-scroller {
    scrollbar-width: thin;
}
.shipment-section-nav-btn {
    font-size: 0.78rem;
    white-space: nowrap;
    padding: 4px 14px;
    transition: all 0.15s;
}

/* Error / loading state helpers */
.shipment-error-card {
    max-width: 500px;
}
.shipment-loading-panel {
    height: 400px;
}
.shipment-loading-panel-placeholder {
    min-height: 300px;
}

/* "no route data" fallback shown in the map area when a shipment has no legs.
   Lives in the global sheet because it's rendered inside the parent Shipment page
   host (no scope attribute), passed through to ShipmentTransportPanel as MapContent. */
.shipment-no-route {
    background: var(--bs-tertiary-bg, #f8f9fa);
}

/* cursor-pointer utility (used by multiple Shipment sub-components) */
.cursor-pointer { cursor: pointer; }

@keyframes tracking-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* ──────────────────────────────── Generic font-size utilities ──────────────
   Used wherever a one-off inline "style=\"font-size: X\"" was previously
   applied. Kept aligned with existing `.shipment-fs-*` scale so dashboard and
   hub pages can share the same type ramp without ad-hoc rules. */
.fs-55 { font-size: 0.55rem; }
.fs-60 { font-size: 0.6rem; }
.fs-65 { font-size: 0.65rem; }
.fs-70 { font-size: 0.7rem; }
.fs-72 { font-size: 0.72rem; }
.fs-75 { font-size: 0.75rem; }
.fs-78 { font-size: 0.78rem; }
.fs-80 { font-size: 0.8rem; }
.fs-82 { font-size: 0.82rem; }
.fs-85 { font-size: 0.85rem; }
.fs-875 { font-size: 0.875rem; }
.fs-90 { font-size: 0.9rem; }
.fs-1r { font-size: 1rem; }
.fs-11r { font-size: 1.1rem; }
.fs-115r { font-size: 1.15rem; }
.fs-12r { font-size: 1.2rem; }
.fs-15r { font-size: 1.5rem; }
.fs-18r { font-size: 1.8rem; }
.fs-2r { font-size: 2rem; }
.fs-25r { font-size: 2.5rem; }

/* Generic section-heading style used on Insights pages */
.heading-hub { color: var(--bs-heading-color, #002C61); }
.heading-hub-metric {
    font-size: 1.8rem;
    color: var(--bs-heading-color, #002C61);
}

/* Small progress-bar variant (4px high) */
.progress-xs { height: 4px; }
.progress-bar-full { width: 100%; }

/* Overlay-style loading/busy panels ─ used on list pages behind tables */
.busy-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.busy-overlay-host {
    min-height: 200px;
    position: relative;
}
.placeholder-panel-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-body-tertiary-bg, #f8f9fa);
    border-radius: 8px;
    z-index: 5;
}

/* Select-auto-width — ubiquitous pattern for inline page filters */
.form-select-auto { width: auto; }

/* Text truncation with max-width presets */
.text-truncate-200 { max-width: 200px; }
.text-truncate-250 { max-width: 250px; }
.text-truncate-260 { max-width: 260px; }
.text-truncate-300 { max-width: 300px; }

/* Scroll containers with capped height */
.scroll-160 { max-height: 160px; overflow-y: auto; }
.scroll-200 { max-height: 200px; overflow-y: auto; }
.scroll-350 { max-height: 350px; overflow-y: auto; }
.scroll-360 { max-height: 360px; overflow-y: auto; }
.scroll-384 { max-height: 384px; overflow-y: auto; }
.scroll-450 { max-height: 450px; overflow-y: auto; }
.scroll-500 { max-height: 500px; overflow-y: auto; }
.scroll-540 { max-height: 540px; overflow-y: auto; }

/* Sentinel element for IntersectionObserver-based virtual scroll */
.sentinel-row { height: 1px; }

/* Tiny-icon width helper (fixed-width leading icons in lists) */
.icon-fw-16 { width: 16px; text-align: center; flex-shrink: 0; }
.icon-fw-18 { width: 18px; text-align: center; }

/* Small spinner sizes (reused in UserImport, FacetFilterBar, etc.) */
.spinner-60 { width: 0.6rem; height: 0.6rem; }
.spinner-75 { width: 0.75rem; height: 0.75rem; }
.spinner-80 { width: 0.8rem; height: 0.8rem; }
.spinner-70 { width: 0.7rem; height: 0.7rem; }
.spinner-14 { width: 14px; height: 14px; }

/* Dropdown / popover surface — used by filter and column-chooser dropdowns */
.popover-surface {
    background-color: var(--lpx-content-bg, var(--bs-body-bg));
    color: var(--bs-body-color);
}
.popover-backdrop {
    inset: 0;
    z-index: 1049;
}

/* Section heading (small uppercase) used on QuotationCreate etc. */
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

/* Tag / chip patterns keyed by --tag-color for dynamic colours */
.dyn-chip {
    color: var(--tag-color, currentColor);
    border: 1px solid color-mix(in srgb, var(--tag-color, currentColor) 20%, transparent);
    background: color-mix(in srgb, var(--tag-color, currentColor) 7%, transparent);
}

/* Landing-page hero bubble / icon */
.hero-icon-bubble {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(13,110,253,0.15) 0%, rgba(13,110,253,0.05) 100%);
}
.hero-tile-icon { width: 64px; height: 64px; }
.hero-tile-icon-primary   { background-color: rgba(13, 110, 253, 0.1);  }
.hero-tile-icon-success   { background-color: rgba(25, 135, 84, 0.1);   }
.hero-tile-icon-warning   { background-color: rgba(255, 193, 7, 0.15);  }

/* Error / 500 view layout */
.route-error-view { min-height: 60vh; }
.route-error-card { max-width: 500px; }
.route-error-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.1);
}
.route-error-pre {
    background: var(--bs-body-tertiary-bg, #f8f9fa);
    overflow-x: auto;
    white-space: pre-wrap;
    font-size: 0.8rem;
}

/* Welcome hero */
.welcome-hero { min-height: 70vh; }
.welcome-hero-text { max-width: 700px; }
.welcome-hero-row  { max-width: 1000px; }
.welcome-hero-title { font-size: 2.5rem; }
.welcome-hero-lead  { font-size: 1.15rem; }

/* Progress-bar driven by CSS variable */
.progress-var > .progress-bar {
    width: var(--progress-pct, 0%);
}

/* Width-driven placeholder (skeleton rows) */
.placeholder-w { width: var(--pw, 100%); }
.placeholder-h-14 { height: 14px; }
.placeholder-h-12 { height: 12px; }
.placeholder-pill-30 { height: 30px; }

/* Modal-ish fake backdrop when using plain divs */
.modal-fake-backdrop { background: rgba(0, 0, 0, 0.5); }

/* Monospace memo edit */
.memo-monospace {
    font-family: monospace;
    font-size: 0.85rem;
}

/* Small "row indent" used by OrgUnit tree rows. Depth via --ou-depth. */
.ou-row-indent { padding-left: calc(var(--ou-depth, 0) * 1.25rem + 0.5rem); }

/* Bottom-anchored illustration on Index cards */
.card-illustration-bottom { margin-bottom: -24px; }

/* Common "cursor pointer row" for clickable list items */
.row-clickable { cursor: pointer; }

/* Fake modal glass overlay used by BookingReviewSection */
.modal-glass-backdrop { background: rgba(0, 0, 0, 0.5); }

/* Index "x white" image background */
.x-white-bg { background-color: black; }

/* Compact badge-like action buttons (65rem font, tight padding) */
.btn-micro {
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
}

/* Absolute positional inset helpers */
.inset-0 { inset: 0; }

/* Upload-progress slim pill (user import) */
.upload-row { font-size: 0.8rem; }

/* Search input wrapper with fixed icon width */
.search-input-icon {
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Booking templates card list sizing */
.booking-tpl-card { max-width: 480px; }
.booking-tpl-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: rgba(13, 110, 253, 0.1);
}
.booking-tpl-icon-sm {
    width: 40px;
    height: 40px;
    background-color: rgba(13, 110, 253, 0.1);
}
.booking-tpl-max-input { max-width: 400px; }

/* Table column widths — used wherever a <th> previously set style="width: Xpx;" */
.col-w-35 { width: 35px; }
.col-w-40p { width: 40%; }
.col-w-50 { width: 50px; }
.col-w-80 { width: 80px; }
.col-w-120 { width: 120px; }
.col-w-140 { width: 140px; }
.col-w-200 { width: 200px; }
.col-w-250 { width: 250px; }
.col-w-300 { width: 300px; }

/* OrgUnitManagement panels (subtle tinted background rows) */
.ou-bulk-bar       { background: var(--bs-warning-bg-subtle, rgba(255, 193, 7, 0.1)); }
.ou-bulk-bar-primary { background: var(--bs-primary-bg-subtle, rgba(13, 110, 253, 0.08)); }
.ou-loading-spinner { width: 1.75rem; height: 1.75rem; }
.ou-root-loading   { width: 0.6rem; height: 0.6rem; }

/* Very small size-variant for per-row action buttons. */
.btn-fs-65-tight {
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
}

/* "width: auto; font-size: .7rem" pattern used by the OU pager */
.form-select-auto-xs {
    width: auto;
    font-size: 0.7rem;
}

/* Organization-toggle dropdown surfaces (rendered by Blazorise — global scope
   required because the DropdownMenu wraps content in its own scope). */
.ou-dropdown-surface { background: var(--bs-body-bg); }
.ou-dropdown-width   { width: 300px; }
.ou-dropdown-list    { max-height: 384px; }
.ou-dropdown-empty-icon {
    font-size: 1.2rem;
    opacity: 0.4;
}
.ou-check {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.15s;
}
.ou-row-btn {
    background: transparent;
    font-size: 0.8rem;
    transition: background 0.15s;
    padding-left: var(--ou-pad-l, 0.75rem);
    padding-right: 0.75rem;
}
.ou-row-btn > .text-truncate {
    min-width: 0;
}

/* Upcoming activities slider (MudBlazor templates — global because scoped
   CSS does not penetrate MudExRangeSlider) */
.ua-slider-track {
    height: 100%;
    position: relative;
    width: 100%;
    background: var(--mud-palette-surface, var(--bs-tertiary-bg, #f8f9fa));
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--mud-palette-divider, var(--bs-border-color));
}
.ua-slider-marker {
    position: absolute;
    left: var(--marker-left, 0);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}
.ua-slider-month {
    bottom: 2px;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--bs-secondary-color, #6c757d);
}
.ua-slider-week-tick {
    top: 15%;
    bottom: 45%;
    width: 1px;
    background: var(--bs-border-color, #dee2e6);
}
.ua-slider-week-label {
    top: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--bs-secondary-color, #6c757d);
}
.ua-slider-today {
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bs-primary, #0d6efd);
    opacity: 0.4;
    z-index: 1;
}
.ua-slider-selection {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--bs-primary, #0d6efd), var(--bs-info, #0dcaf0));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.ua-slider-selection-label {
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    white-space: nowrap;
    padding: 0 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.ua-slider-thumb {
    width: 14px;
    height: 14px;
    background: var(--bs-body-bg, #fff);
    border: 3px solid var(--bs-primary, #0d6efd);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

