/* ============================================================
   SITE.CSS — Veloxo Web Application Stylesheet
   ============================================================
   TABLE OF CONTENTS
   1.  Global Reset & Base
   2.  Fonts (Lato, Neo Sans, Glyphicons)
   3.  Headings (h1–h6, .h1–.h6)
   4.  Typography Utilities
   5.  Layout — App Shell (app, header, navbar, footer)
   6.  Layout — Main Content Containers
   7.  Layout — Responsive Grid (Bootstrap col-*)
   8.  Navigation — Top Navbar
   9.  Navigation — Hamburger Menu
   10. Navigation — Sub-Menu (menucentered / lower)
   11. Navigation — Secondary (navbar-right)
   12. Form Elements (inputs, selects, buttons, labels)
   13. Bootstrap Form Overrides (form-control, form-group, etc.)
   14. Buttons (btn-*)
   15. Panels & Table (.panel, .table, etc.)
   16. Dropdowns & Collapse
   17. Labels, Badges
   18. Visibility Helpers
   19. Print Styles
   20. Gridview / Data Tables
   21. Scrollable Panel
   22. Spacers, Padding & Width Utilities
   23. Image & Profile Utilities
   24. Camera / Video
   25. Alarm Buttons & Alarm Rows
   26. Toolbar (Print/Save/Auth/Filter Groups)
   27. Search Toolbar & Filter Panel
   28. Fuel Management
   29. Tank / Pump / Nozzle Cards
   30. Overview Tank
   31. Login Form
   32. Travel Assistant & Booking Form
   33. Flight Cards & Timeline
   34. POS (Point of Sale)
   35. Quick POS
   36. Cargo Contract
   37. Bay Grid
   38. State Indicator Panels
   39. Map Components
   40. Telematics
   41. CCTV
   42. Visitor Access Form
   43. Invoice Upload Animation
   44. Dashboard Sidebar
   45. Miscellaneous Site-Specific
   ============================================================ */


/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-y: scroll !important;
    scrollbar-gutter: stable !important;
}

html, body {
    min-width: 320px;
    overflow-x: hidden;
}

body {
    padding-top: 0;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    margin: 0px !important;
    color: #204059;
    font-size: 15px;
    line-height: 1.42857143;
    background-color: white;
}

p {
    margin: 0 0 10px;
}

a {
    color: #297cbb;
    text-decoration: none;
    background-color: transparent;
}

    a:hover, a:focus {
        color: #23527c;
        text-decoration: underline;
        outline: 0;
    }

    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

[role="button"] {
    cursor: pointer;
}

[hidden], template {
    display: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark, .mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

small, .small {
    font-size: 85%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    vertical-align: middle;
}

    img:hover {
        cursor: pointer;
    }

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

hr {
    border: 0;
    height: 1px;
    background-color: #BCBCBC;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 1em;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700;
        box-shadow: none;
    }

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    ul ul, ol ul, ul ol, ol ol {
        margin-bottom: 0;
    }

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt, dd {
    line-height: 1.42857143;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left;
}

th {
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    background-color: transparent;
}

    table col[class*="col-"] {
        position: static;
        display: table-column;
        float: none;
    }

    table td[class*="col-"],
    table th[class*="col-"] {
        position: static;
        display: table-cell;
        float: none;
    }

    table a {
        color: #295171;
        padding: 0px 10px;
        font-weight: bolder;
        font-size: 14px;
    }

        table a:hover {
            color: #3f739e;
            text-decoration: none;
        }

td, th {
    padding: 0;
}

tbody {
    background-color: transparent;
}

label {
    display: inline-block;
    max-width: 100%;
    font-weight: 700;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    padding-bottom: 5px;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input[type="image" i] {
    appearance: none;
    background-color: initial;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
}

article, aside, details, figcaption, figure, footer, hgroup, main, menu, nav, section, summary {
    display: block;
}

.main-content-container {
    padding: 0px;
    padding-top: 28px;
}
/* Browser default tooltip style overwrite */
.vx-tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(72, 130, 179, 0.25);
    color: #060518;
    padding: 6px 10px 5px;
    border-radius: 6px;
    font-size: 11px;
    font-family: lato, sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    white-space: nowrap;
    border: 1.5px solid #4882B3;
    box-shadow: 0 4px 12px rgba(72, 130, 179, 0.15);
    backdrop-filter: blur(4px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform: translateY(-4px);
    z-index: 9999;
}

.vx-tooltip--visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   2. FONTS
   ============================================================ */
/* Lato */
@font-face {
    font-family: 'Lato';
    src: url('../Assets/webfonts/Lato2OFLWeb/Lato-Regular.woff2') format('woff2'), url('../Assets/webfonts/Lato2OFLWeb/Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: auto;
    font-stretch: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../Assets/webfonts/Lato2OFLWeb/Lato-Bold.woff2') format('woff2'), url('../Assets/webfonts/Lato2OFLWeb/Lato-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    font-stretch: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../Assets/webfonts/Lato2OFLWeb/Lato-Italic.woff2') format('woff2'), url('../Assets/webfonts/Lato2OFLWeb/Lato-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: auto;
    font-stretch: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../Assets/webfonts/Lato2OFLWeb/Lato-BoldItalic.woff2') format('woff2'), url('../Assets/webfonts/Lato2OFLWeb/Lato-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: auto;
    font-stretch: normal;
}

/* Neo Sans W1G */
@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G.otf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Black.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Black.otf") format("opentype");
    font-style: normal;
    font-weight: 900;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Black_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Black_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 900;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Bold.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Bold_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Bold_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 700;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Light.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Light.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Light_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Light_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Medium.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Medium_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Medium_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Ultra.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Ultra.otf") format("opentype");
    font-style: normal;
    font-weight: 950;
}

@font-face {
    font-family: "neo-sans";
    src: url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Ultra_Italic.woff2") format("woff2"), url("../Assets/webfonts/NeoSans/Neo_Sans_W1G_Ultra_Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 950;
}

/* Glyphicons */
@font-face {
    font-family: "Glyphicons Halflings";
    src: url("../fonts/glyphicons-halflings-regular.eot");
    src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* Font Utility Classes */
.tk-lato {
    font-family: "lato", sans-serif;
}

.tk-neo-sans {
    font-family: "neo-sans", sans-serif;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free";
    padding: 15px;
    border-radius: 50%;
}

.fa-magnifying-glass, .fa-search {
    --fa: "\f002";
    padding: 9px;
}

.booking-search-btn > i.fas.fa-search {
    --fa: "\f002";
    padding: 9px !important;
}

i.fas.fa-print,
i.fas.fa-arrow-left,
i.fas.fa-floppy-disk {
    padding: 9px;
}


/* ============================================================
   3. HEADINGS (h1–h6, .h1–.h6)
   ============================================================ */

/* Screen-reader only headings */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: neo-sans;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
    .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
    h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
    .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
        font-weight: 400;
        line-height: 1;
        color: #777777;
    }

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small,
h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
    font-size: 65%;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small,
h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
    font-size: 75%;
}

h1, .h1 {
    font-size: 24px;
}

h2, .h2 {
    font-size: 30px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 18px;
}

h5, .h5 {
    font-size: 13px;
}

h6, .h6 {
    font-size: 12px;
}

/* Site-specific heading overrides */
h3 {
    color: #183248;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-left: 20px;
    font-size: 20px;
}

h4 {
    color: #060518;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}


/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777777;
}

.text-primary {
    color: #337ab7;
}

a.text-primary:hover, a.text-primary:focus {
    color: #286090;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover, a.text-success:focus {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover, a.text-info:focus {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover, a.text-warning:focus {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover, a.text-danger:focus {
    color: #843534;
}

.text_yellow {
    color: yellow;
}

.text_white {
    color: white;
}

.text-white {
    color: #333 !important;
}

.bg-primary {
    color: #fff;
    background-color: #337ab7;
}

a.bg-primary:hover, a.bg-primary:focus {
    background-color: #286090;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover, a.bg-success:focus {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover, a.bg-info:focus {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover, a.bg-warning:focus {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover, a.bg-danger:focus {
    background-color: #e4b9b9;
}

.background_yellow {
    background-color: yellow;
}

.font_bolder {
    font-weight: bolder;
}

.largfont {
    font-size: 32px;
    font-family: 'Arial', Arial, serif;
    overflow: auto;
}

.medfont {
    font-size: 26px;
    font-family: 'Arial', Arial, serif;
    overflow: auto;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

.ul-no-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.review_bottom li {
    list-style: none;
}

    .review_bottom li:after {
        content: "\A";
        white-space: pre;
    }

.error_default {
    font-size: 16px;
    color: red;
    font-family: "lato", sans-serif;
}

.data_label {
    font-size: 14px;
    font-family: 'Arial', Arial, serif;
    padding: 2px;
}

.barcode_default {
    width: 100%;
    height: 80px;
    font-size: 26px;
    font-family: 'Arial', Arial, serif;
    text-align: left;
    padding-left: 10px;
}

.barcode_smallfont {
    width: 100%;
    height: 80px;
    font-size: 14px;
    font-family: 'Arial', Arial, serif;
    text-align: left;
    padding-left: 10px;
}


/* ============================================================
   5. LAYOUT — APP SHELL
   ============================================================ */

.app {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-size: cover;

}

.app__container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app__layout {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fafafc;
    padding: 20px;
}

.app__footer {
    background: #484293;
    margin-top: 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app__footer span,
.app__footer label,
.app__footer * {
    font-family: "lato", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 0.3px;
}

/* Background image + overlay removed */

/* Main form (site.master) sits above background */
form#form1 {
    position: relative;
    z-index: 2;
}

/* Site header bar */
.header {
    display: block;
    margin-bottom: 0;
    background-color: #484293;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.header__navbar {
    margin-left: 15px;
}

/* Title bars */
.titlebar {
    font-family: "neo-sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.vx-page-header__description,
.vx-tm-tab-chip {
    margin: 2px 0 0 0;
    font-size: 13px !important;
    opacity: 0.95;
    border: #d0d0d0 solid 2px;
    border-radius: 5px;
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 3px;
    background-color: #f2f2f2;
}

.desc-label {
    color: #757583;
}

.desc-label-bold {
    color: #222222;
    font-weight: bold;
}

.expl-label {
    color: #6b6b75;
    font-size: 14px;
}

.vx-page-header__explanation {
    background-color: transparent !important;
    border: none !important;
    font-weight: 500 !important;
    padding: 0px 0px 12px;
    margin-top: -6px;
}

.title-container {
    display: flex;
    flex-direction: column;
}

.unit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2F855A;
    margin-bottom: 3.5px;
}



.logobar {
    width: 100%;
    min-height: 50px;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: x-large;
    background-color: #e3e3e3;
    margin-top: -4px;
    color: #060518;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0px;
}

footer {
    bottom: 0;
    min-height: 40px;
    padding-top: 20px;
    display: block;
    unicode-bidi: isolate;
}

#copyright-text {
    color: #68A7DB;
}

@media (min-width: 1179px) {
    #copyright-text {
        padding-left: 20px;
    }
}

@media (max-width: 1178px) {
    #copyright-text {
        padding-left: 35px;
    }
}

/* Logo */
.logo-container {
    display: flex;
    height: 50px;
    margin-right: 15px;
}

@media (min-width: 1179px) {
    .logo-container {
        margin-left: -5px;
    }
}

@media (max-width: 1178px) {
    .logo-container {
        margin-left: 5px;
    }
}

.logo-img {
    width: 100px;
    height: auto;
}


/* ============================================================
   6. LAYOUT — MAIN CONTENT CONTAINERS
   ============================================================ */

#container-main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (max-width: 1178px) {
    #container-main-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

@media (max-width: 1146px) {
    #container-main-content {
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

.lower-main-container {
    background-color: #edecec;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    display: flex;
    flex: 1;
}

.defaultform {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: transparent;
}

.container-default-tools-menu {
    font-size: 16px;
    font-weight: 500;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.menu-container {
    background-color: #4882B3;
}

@media (max-width: 619px) {
    .menu-container-lower {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin: -10px;
        margin-bottom: 0px;
    }
}

@media (min-width: 620px) {
    .menu-container-lower {
        background: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}

/* Form table layout */
.form_table_default {
    background-color: #EDEDEF;
    width: 98.5%;
    height: 95%;
    font-size: 16px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 25px;
}

.defaulttablet {
    background-color: #EDEDEF;
    font-size: 16px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 720px;
}

/* Panel (replaces Bootstrap panel) */
.panel {
    margin-bottom: 20px;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 50px 0px;
}

.panel-primary {
    border: none;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-body {
    padding: 15px;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

/* form_table_default inside a panel */
table.form_table_default.panel.panel-primary {
    width: 65%;
    margin-left: 19%;
    margin-right: 21%;
    margin: 0px;
    margin-left: 15px;
}

    table.form_table_default.panel.panel-primary.cctv-singe-view {
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }

@media (max-width: 1000px) {
    table.form_table_default.panel.panel-primary {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 790px) {
    table.form_table_default.panel.panel-primary {
        width: 80%;
        margin-left: 9%;
        margin-right: 11%;
    }
}

@media (max-width: 610px) {
    table.form_table_default.panel.panel-primary {
        width: 90%;
        margin-left: 4%;
        margin-right: 6%;
    }
}

table.form_table_default.panel.panel-primary .tabledata_default_left {
    width: 100%;
}

@media (max-width: 1000px) {
    table.form_table_default.panel.panel-primary .tabledata_default_left {
        width: auto;
    }

    table.form_table_default.panel.panel-primary input[type="text"] {
        width: 100%;
    }
}

/* Frame containers */
.frame {
    border: 1px solid #BBBCBB;
    border-radius: 10px;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 98%;
    margin-left: 10px;
}

.innerframe {
    border: 1px solid #BBBCBB;
    border-radius: 2px;
    padding: 2px;
    margin-top: 2px;
    width: 100%;
    margin-left: 5px;
    font-size: 20px;
}

.TabArea {
    width: 100%;
}

/* Jumbotron */
.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee;
}

    .jumbotron h1, .jumbotron .h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200;
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px;
    }
}

/* Collapse */
.collapse {
    height: 0;
    display: none;
}

.filter-container:empty {
    height: 0;
    display: none;
}

.collapse.show {
    display: block !important;
}

@media (max-width: 1178px) {
    .show {
        display: block !important;
    }
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
}

/* Content accordion panel (used with collapsible sections) */
.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}

/* Fadein */
.fade:not(.show) {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .fade, .collapsing {
        transition: none;
    }
}

.collapse:not(.show) {
    display: none;
}

/* Infix form title */
#MainContent_InFormTitle {
    color: #060518;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
}


/* ============================================================
   7. LAYOUT — RESPONSIVE GRID
   ============================================================ */

.container {
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

    .container > .navbar-header {
        margin-right: -15px;
        margin-left: -15px;
    }

@media (min-width: 1179px) {
    .container {
        display: flex;
        flex-wrap: wrap;
        padding-left: 0px;
        width: 100%;
    }
}

@media (max-width: 1179px) {
    .container {
        width: auto;
    }

        .container > .navbar-header, .container-fluid > .navbar-header,
        .container > .navbar-collapse, .container-fluid > .navbar-collapse {
            margin-right: 0px;
            margin-left: 0px;
        }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row60 {
    margin-right: -15px;
    margin-left: -15px;
    height: 60px;
}

/* ── Used columns only ──────────────────────
   Used across: BayManager, CaptureImage*, MoistureManager,
   ThirdPartySeal, TrainManager, UserJobEvents
   xs: 1,2,4,5,8,12  |  md: 1,2,3,4,5,6,9  |  lg: 6
───────────────────────────────────────────────────────────── */

/* Base: shared padding for all used columns */
.col-xs-1, .col-xs-2, .col-xs-4, .col-xs-5, .col-xs-8, .col-xs-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-9,
.col-lg-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

/* xs — always active (mobile-first) */
.col-xs-1, .col-xs-2, .col-xs-4, .col-xs-5, .col-xs-8, .col-xs-12 {
    float: left;
}

.col-xs-12 { width: 100%; }
.col-xs-8  { width: 66.66666667%; }
.col-xs-5  { width: 41.66666667%; }
.col-xs-4  { width: 33.33333333%; }
.col-xs-2  { width: 16.66666667%; }
.col-xs-1  { width: 8.33333333%; }

/* md — active at 992px and wider */
@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-9 {
        float: left;
    }

    .col-md-9 { width: 75%; }
    .col-md-6 { width: 50%; }
    .col-md-5 { width: 41.66666667%; }
    .col-md-4 { width: 33.33333333%; }
    .col-md-3 { width: 25%; }
    .col-md-2 { width: 16.66666667%; }
    .col-md-1 { width: 8.33333333%; }
}

/* lg — active at 1200px and wider */
@media (min-width: 1200px) {
    .col-lg-6 {
        float: left;
        width: 50%;
    }
}


/* ============================================================
   8. NAVIGATION — TOP NAVBAR
   ============================================================ */

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 19px;
    border: 1px solid transparent;
    background-color: #484293;
    border-style: none;
    max-width: 100%;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1178px) {
    .navbar {
        max-width: none;
    }
}

.navbar-color {
    background-color: #4882B3;
    border-style: none;
    border-color: #4882B3;
}

.navbar-padding {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}

@media (min-width: 1178px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        border-top: 1px solid transparent;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1177px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        border-top: 1px solid transparent;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1178px) {
    .navbar-collapse.collapse {
        display: none !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}

@media (min-width: 1179px) {
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}

.navbar-header {
    /* base */
}

@media (min-width: 768px) {
    .navbar-header {
        float: none;
    }
}

@media (min-width: 1179px) {
    .navbar-header {
        float: left;
        padding-left: 14px;
    }
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

@media (min-width: 1179px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -8px;
    }
}

/* Navbar nav lists */
.nav {
    list-style: none;
    margin-bottom: 0;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li .main-nav {
            padding-right: 5px !important;
        }

    .nav.main-nav > li > a {
        padding: 15px 10px !important;
    }

.navbar-nav > li > a {
    line-height: 20px;
}

@media (max-width: 768px) {
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }
}

@media (max-width: 1178px) {
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }
}

@media (min-width: 1179px) {
    .navbar-nav > li > a {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (min-width: 1px) {
    .navbar-nav > li {
        float: none;
    }
}

@media (min-width: 1179px) {
    .navbar-nav > li {
        float: left;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        margin: 7.5px 0px;
    }
}

@media (min-width: 0px) {
    .navbar-nav {
        float: right;
    }
}

@media (max-width: 1178px) {
    .nav.navbar-nav.navbar-left {
        float: none !important;
    }
}

@media (max-width: 1178px) {
    ul.nav.navbar-nav.navbar-left {
        padding-bottom: 10px;
    }
}

/* Logged-in user name area */
#LoggedInName {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    flex-wrap: wrap;
    width: 100px;
    box-sizing: border-box;
    padding-right: 0px;
    font-size: 16px;
    font-family: "lato", sans-serif;
    justify-content: flex-start;
}

@media (max-width: 1179px) {
    #LoggedInName {
        margin-bottom: 30px;
        margin-top: 13px;
    }
}

#liRefreshData, #liUserName, #liLogout {
    float: right !important;
}

li#liUserName, li#liLogout {
    width: 65px;
}

li#MainContent_liCalculator {
    margin-top: 21px;
}

/* Top Navbar link colours */
.nav.navbar-nav.navbar-left li a {
    color: #FAFAFC;
    transition: background-color 0.3s;
}

    .nav.navbar-nav.navbar-left li.active a,
    .nav.navbar-nav.navbar-left li a:hover {
        background-color: #54489D !important;
    }

/* Right Navbar link colours */
.nav.navbar-nav.navbar-right li a {
    color: #68a7db;
    background-color: transparent;
    margin-right: 2px;
}

    .nav.navbar-nav.navbar-right li a:hover {
        color: #90bce6;
        background-color: transparent;
    }

/* Active / selected nav states */
.selected, .selected:hover {
    background-color: #A6A6A6 !important;
    color: #fff;
}

.selected {
    background-color: #484293 !important;
    color: #fff;
}

    .selected:hover {
        background-color: #54489D !important;
    }

i.fas.tab-icon.selected {
    width: 55px;
    height: 55px;
    padding-left: 25%;
    padding-right: 25%;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 1179px) {
    .navbar-toggle {
        margin-right: 0px;
    }
}

@media (min-width: 1178px) {
    .navbar-toggle {
        display: none;
    }
}

@media (max-width: 1179px) {
    .navbar-toggle {
        display: block;
        float: right !important;
    }
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    border-radius: 1px;
}

.roundedcorners {
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.inlinebutton {
    position: relative;
    display: inline-block !important;
}

/* Navbar height helpers */
@media (min-width: 1179px) {
    .navheight {
        height: 93px;
    }
}

@media (max-width: 1178px) {
    .navheight {
        height: 80px;
    }
}

@media (max-width: 169px) {
    .navheight {
        height: 75px;
    }
}

@media (max-width: 620px) {
    .navheight {
        height: 150px;
    }
}

@media (min-width: 1179px) {
    .fulemanmain {
        height: 102px;
    }
}

@media (max-width: 1178px) {
    .fulemanmain {
        height: 84px;
    }
}

@media (max-width: 640px) {
    .fulemanmain {
        height: 159px;
    }
}

/* Header row / grid row colours */
.headerRow {
    height: 16px;
    font-weight: bolder;
    background-color: #4882B3;
}

.oddRow {
    background-color: #A3D8EF;
    height: 20px;
}

.evenRow {
    height: 20px;
    background-color: #FAFAFC;
}


/* ============================================================
   9. NAVIGATION — HAMBURGER MENU
   ============================================================ */

.custom-hamburger {
    background: none;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    display: inline-block;
    width: 22px;
    margin: 4px 0;
    border-radius: 1px;
}

.custom-hamburger-lower {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 22px;
    margin: 4px 0;
    border-radius: 1px;
}

.custom-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4.5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 619px) {
    .custom-bar-lower {
        display: block;
        width: 22px;
        height: 2px;
        margin: 4.5px auto;
        background-color: #297cbb;
        transition: all 0.3s ease-in-out;
    }
}

/* Hide hamburger on large screens */
@media screen and (min-width: 1178px) {
    .custom-hamburger {
        display: none;
    }

    .custom-hamburger-lower {
        display: none;
    }
}

@media (min-width: 1179px) {
    .custom-hamburger {
        display: none;
    }

    .custom-hamburger-lower {
        display: none;
    }
}

@media screen and (min-width: 620px) {
    .custom-hamburger-lower {
        display: none;
    }
}

@media (min-width: 620px) {
    .custom-hamburger-lower {
        display: none !important;
    }
}

.hamburger-toggle {
    display: none;
    font-size: 28px;
    padding: 10px;
    cursor: pointer;
    background-color: #4882B3;
    color: white;
    text-align: left;
}


/* ============================================================
   10. NAVIGATION — SUB-MENUS (menucentered / lower)
   ============================================================ */

.submenu {
    background-color: #4882B3;
    border-style: none;
    height: 49px;
    font-size: 12pt;
    width: 100%;
}

.submenu-lower {
    background-color: none;
    border-style: none;
    height: 49px;
    font-size: 12pt;
    width: 100%;
}

.submenu-wrapper {
    display: block !important;
}

.submenu-wrapper-lower {
    display: block !important;
}

@media (max-width: 1178px) {
    .submenu-wrapper {
        display: none !important;
        width: 100%;
    }

        .submenu-wrapper.show {
            display: block !important;
            background: none;
        }
}

@media (max-width: 619px) {
    .submenu-wrapper-lower {
        display: none !important;
        width: 100%;
    }

        .submenu-wrapper-lower.show {
            display: block !important;
            background: none;
        }
}

@media (min-width: 1179px) {
    .submenu-wrapper {
        display: block !important;
    }
}

@media (min-width: 620px) {
    .submenu-wrapper-lower {
        display: block !important;
    }
}

/* menucentered — top sub-menu bar */
.menucentered {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    vertical-align: middle;
    align-content: center;
    padding-left: 15px;
    padding-top: 0px;
    background-color: #4882B3;
    border: none;
    height: 49px !important;
    width: 100%;
    color: white;
}

    .menucentered#MainContent_Menu_Configuration {
        background-color: #4882B3;
    }

@media (max-width: 1178px) {
    .menucentered {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 10px;
        display: block !important;
        width: 100% !important;
    }

        .menucentered ul.level1 {
            display: block !important;
            width: 100% !important;
            padding: 0;
            margin: 0;
            list-style-type: none;
        }

            .menucentered ul.level1 > li {
                display: block !important;
                float: none !important;
                width: 100% !important;
                position: relative !important;
            }

                .menucentered ul.level1 > li > a {
                    display: block !important;
                    padding: 12px 16px !important;
                    text-align: left !important;
                    background-color: #4882B3 !important;
                    color: white !important;
                    text-decoration: none !important;
                }

                    .menucentered ul.level1 > li > a:hover {
                        background-color: #5291c7 !important;
                    }
}

/* Collapse sub-menu items in wrapper */
.submenu-wrapper .menucentered {
    display: block;
    flex-direction: column;
    height: auto !important;
}

    .submenu-wrapper .menucentered td {
        display: block;
        text-align: left;
    }

    .submenu-wrapper .menucentered a {
        display: block;
        padding: 12px;
    }

/* menucenteredLower — secondary (lower) sub-menu bar */
.menucenteredLower {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    vertical-align: middle;
    align-content: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    height: 49px !important;
    width: 100%;
    color: white;
}

@media (max-width: 619px) {
    .menucenteredLower {
        display: block !important;
        width: 100% !important;
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 10px;
    }

        .menucenteredLower ul.level1 > li {
            display: block !important;
            float: none !important;
            width: 100% !important;
            position: relative !important;
        }
}

/* Collapse lower sub-menu items in wrapper */
.submenu-wrapper-lower .menucenteredLower {
    display: block;
    flex-direction: column;
    height: auto !important;
}

    .submenu-wrapper-lower .menucenteredLower td {
        display: block;
        text-align: left;
    }

    .submenu-wrapper-lower .menucenteredLower a {
        display: block;
        padding: 12px;
    }

@media (max-width: 1178px) {
    /* Make lower menu links block */
    .menucenteredLower ul.level1 > li > a {
        display: block !important;
        padding: 12px 16px !important;
        text-align: left !important;
        background: none !important;
        color: #297cbb !important;
        text-decoration: none !important;
    }

        .menucenteredLower ul.level1 > li > a:hover {
            background: none !important;
        }
}

/* Sub-menu link styling */
#MainContent_CargoMenu a.static,
#MainContent_EventForm_Menu a.static,
#MainContent_Email2SMSMenu a.static,
#MainContent_Menu_ParkingForm a.static,
#MainContent_Menu_FuelManagement a.static,
#MainContent_Menu_Inventory a.static,
#MainContent_Menu_Sales a.static,
#MainContent_Menu_TravelManager a.static,
#MainContent_Menu_TravelAssistant a.static,
#MainContent_AdminMenu a.static,
#MainContent_Menu_Configuration a.static,
#MainContent_ReportMenu a.static,
#MainContent_Menu1 a.static,
#MainContent_ContractMenu a.static,
#MainContent_Menu_CCTV a.static,
#MainContent_Menu_TelematicsManager a.static,
#MainContent_Menu_InventoryItem a.static,
#MainContent_Menu_TelematicsReports a.static,
#MainContent_Menu_TelematicsUnit a.static {
    padding: 14px 10px !important;
    text-decoration: none;
    border-style: none;
    color: #FAFAFC;
    margin: 0px 5px;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 0px !important;
    font-size: 15px;
    font-weight: 400;
}

/* Fuel management menu specific mobile layout */
@media (max-width: 768px) {
    #MainContent_Menu_FuelManagement table,
    #MainContent_Menu_FuelManagement tr {
        display: block !important;
        width: 100% !important;
    }

    #MainContent_Menu_FuelManagement td {
        display: block !important;
        width: 100% !important;
    }

    #MainContent_Menu_FuelManagement a {
        display: block !important;
        padding: 12px 16px;
        background-color: #4882B3;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid #3a6a8e;
    }

        #MainContent_Menu_FuelManagement a:hover {
            background-color: #3a6a8e;
        }
}

#MainContent_Menu_FuelManagement ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
}

/* Admin menu hover */
#MainContent_AdminMenu a.static:hover {
    color: #d3d3d3;
}

#MainContent_Menu_FuelManagement a.static:hover {
    padding: 9px 12px 9px 12px;
    text-decoration: none;
    border-style: none;
    color: #DDDDDD;
}

/* Disabled menu items */
a.level1.aspNetDisabled.static,
a.level1.aspNetDisabled.static.highlighted {
    margin-top: -20px !important;
    padding: 0px !important;
    visibility: collapse;
}

/* Lower container panel sub-menu */
.lowerpanelsubmenu {
    margin: 0px 10px;
    min-width: 1000px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Navbar-nav panels — display flex on wider screens */
@media (min-width: 620px) {
    #MainContent_pTanksToolbar > ul.nav.navbar-nav,
    #MainContent_pTanksMobile > ul.nav.navbar-nav,
    #MainContent_pPump > ul.nav.navbar-nav,
    #MainContent_pNozzle > ul.nav.navbar-nav,
    #MainContent_Panel5 > ul.nav.navbar-nav,
    #MainContent_pUsers > ul.nav.navbar-nav,
    #MainContent_pThirdParties > ul.nav.navbar-nav,
    #MainContent_pTransporters > ul.nav.navbar-nav,
    #MainContent_pProducts > ul.nav.navbar-nav,
    #MainContent_Panel1 > ul.nav.navbar-nav,
    #MainContent_pContracts > ul.nav.navbar-nav,
    #MainContent_pVehicles > ul.nav.navbar-nav,
    #MainContent_pServices > ul.nav.navbar-nav,
    #MainContent_pServiceType > ul.nav.navbar-nav,
    #MainContent_pContainers > ul.nav.navbar-nav,
    #MainContent_pBreakbulks > ul.nav.navbar-nav,
    #MainContent_pSuppliers > ul.nav.navbar-nav,
    #MainContent_pEquipment > ul.nav.navbar-nav,
    #MainContent_pShippingLines > ul.nav.navbar-nav,
    #MainContent_pGroupPackage > ul.nav.navbar-nav,
    #MainContent_pQuote > ul.nav.navbar-nav,
    #MainContent_pOrder > ul.nav.navbar-nav,
    #MainContent_pInvoice > ul.nav.navbar-nav,
    #MainContent_pDashboardX > ul.nav.navbar-nav,
    #MainContent_pFlight > ul.nav.navbar-nav,
    #MainContent_pVehicleRental > ul.nav.navbar-nav,
    #MainContent_pAccommodation > ul.nav.navbar-nav,
    #MainContent_pShuttle > ul.nav.navbar-nav,
    #MainContent_pAdditionalExpenses > ul.nav.navbar-nav,
    #MainContent_pVouchers > ul.nav.navbar-nav,
    #MainContent_pConfiguration > ul.nav.navbar-nav,
    #MainContent_pBookings > ul.nav.navbar-nav,
    #MainContent_pChatTickets > ul.nav.navbar-nav,
    #MainContent_pPanel > ul.nav.navbar-nav,
    #MainContent_pGroups > ul.nav.navbar-nav,
    #MainContent_Menu1 > ul.nav.navbar-nav,
    #MainContent_Menu_CCTV > ul.nav.navbar-nav,
    #MainContent_Menu_TelematicsManager > ul.nav.navbar-nav,
    #MainContent_Menu_InventoryItem > ul.nav.navbar-nav,
    #MainContent_Menu_TelematicsUnit > ul.nav.navbar-nav {
        display: flex;
        width: 100% !important;
        margin-bottom: -5px;
        margin-right: 0px;
    }
}

@media (max-width: 620px) {
    #MainContent_pTanksToolbar > ul.nav.navbar-nav,
    #MainContent_pTanksMobile > ul.nav.navbar-nav,
    #MainContent_pPump > ul.nav.navbar-nav,
    #MainContent_pNozzle > ul.nav.navbar-nav,
    #MainContent_Panel5 > ul.nav.navbar-nav,
    #MainContent_pUsers > ul.nav.navbar-nav,
    #MainContent_pThirdParties > ul.nav.navbar-nav,
    #MainContent_pTransporters > ul.nav.navbar-nav,
    #MainContent_pProducts > ul.nav.navbar-nav,
    #MainContent_Panel1 > ul.nav.navbar-nav,
    #MainContent_pContracts > ul.nav.navbar-nav,
    #MainContent_pVehicles > ul.nav.navbar-nav,
    #MainContent_pServices > ul.nav.navbar-nav,
    #MainContent_pServiceType > ul.nav.navbar-nav,
    #MainContent_pContainers > ul.nav.navbar-nav,
    #MainContent_pBreakbulks > ul.nav.navbar-nav,
    #MainContent_pSuppliers > ul.nav.navbar-nav,
    #MainContent_pEquipment > ul.nav.navbar-nav,
    #MainContent_pShippingLines > ul.nav.navbar-nav,
    #MainContent_pGroupPackage > ul.nav.navbar-nav,
    #MainContent_pQuote > ul.nav.navbar-nav,
    #MainContent_pOrder > ul.nav.navbar-nav,
    #MainContent_pInvoice > ul.nav.navbar-nav,
    #MainContent_pDashboardX > ul.nav.navbar-nav,
    #MainContent_pFlight > ul.nav.navbar-nav,
    #MainContent_pVehicleRental > ul.nav.navbar-nav,
    #MainContent_pAccommodation > ul.nav.navbar-nav,
    #MainContent_pShuttle > ul.nav.navbar-nav,
    #MainContent_pAdditionalExpenses > ul.nav.navbar-nav,
    #MainContent_pVouchers > ul.nav.navbar-nav,
    #MainContent_pConfiguration > ul.nav.navbar-nav,
    #MainContent_pBookings > ul.nav.navbar-nav,
    #MainContent_pChatTickets > ul.nav.navbar-nav,
    #MainContent_pPanel > ul.nav.navbar-nav,
    #MainContent_pGroups > ul.nav.navbar-nav,
    #MainContent_Menu1 > ul.nav.navbar-nav,
    #MainContent_Menu_CCTV > ul.nav.navbar-nav,
    #MainContent_Menu_TelematicsManager > ul.nav.navbar-nav,
    #MainContent_Menu_InventoryItem > ul.nav.navbar-nav,
    #MainContent_pTelematicUnits > ul.nav.navbar-nav,
    #MainContent_pTelematicsRule > ul.nav.navbar-nav,
    #MainContent_Menu_TelematicsUnit > ul.nav.navbar-nav {
        display: flex;
        width: 100% !important;
        margin-bottom: -5px;
    }
}

@media (max-width: 1178px) {
    #MainContent_pTanksToolbar > ul.nav.navbar-nav,
    #MainContent_pTanksMobile > ul.nav.navbar-nav,
    #MainContent_pPump > ul.nav.navbar-nav,
    #MainContent_pNozzle > ul.nav.navbar-nav,
    #MainContent_Panel5 > ul.nav.navbar-nav,
    #MainContent_pUsers > ul.nav.navbar-nav,
    #MainContent_pThirdParties > ul.nav.navbar-nav,
    #MainContent_pTransporters > ul.nav.navbar-nav,
    #MainContent_pProducts > ul.nav.navbar-nav,
    #MainContent_Panel1 > ul.nav.navbar-nav,
    #MainContent_pContracts > ul.nav.navbar-nav,
    #MainContent_pVehicles > ul.nav.navbar-nav,
    #MainContent_pServices > ul.nav.navbar-nav,
    #MainContent_pServiceType > ul.nav.navbar-nav,
    #MainContent_pContainers > ul.nav.navbar-nav,
    #MainContent_pBreakbulks > ul.nav.navbar-nav,
    #MainContent_pSuppliers > ul.nav.navbar-nav,
    #MainContent_pEquipment > ul.nav.navbar-nav,
    #MainContent_pShippingLines > ul.nav.navbar-nav,
    #MainContent_pGroupPackage > ul.nav.navbar-nav,
    #MainContent_pQuote > ul.nav.navbar-nav,
    #MainContent_pOrder > ul.nav.navbar-nav,
    #MainContent_pInvoice > ul.nav.navbar-nav,
    #MainContent_pDashboardX > ul.nav.navbar-nav,
    #MainContent_pFlight > ul.nav.navbar-nav,
    #MainContent_pVehicleRental > ul.nav.navbar-nav,
    #MainContent_pAccommodation > ul.nav.navbar-nav,
    #MainContent_pShuttle > ul.nav.navbar-nav,
    #MainContent_pAdditionalExpenses > ul.nav.navbar-nav,
    #MainContent_pVouchers > ul.nav.navbar-nav,
    #MainContent_pConfiguration > ul.nav.navbar-nav,
    #MainContent_pBookings > ul.nav.navbar-nav,
    #MainContent_pChatTickets > ul.nav.navbar-nav,
    #MainContent_pPanel > ul.nav.navbar-nav,
    #MainContent_pGroups > ul.nav.navbar-nav,
    #MainContent_Menu1 > ul.nav.navbar-nav,
    #MainContent_Menu_CCTV > ul.nav.navbar-nav,
    #MainContent_Menu_TelematicsManager > ul.nav.navbar-nav,
    #MainContent_Menu_InventoryItem > ul.nav.navbar-nav,
    #MainContent_pTelematicUnits > ul.navbar-nav {
        margin-top: 2px !important;
    }
}


/* ============================================================
   12. FORM ELEMENTS
   ============================================================ */

input {
    border-width: 1px;
    background-color: #FAFAFC;
}

.add-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #E8F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 11px;
}

    /* Hide default file upload button (reports/trucks) */
    input#FileUpload1 {
        opacity: 0;
        width: 0.1px;
        height: 0.1px;
        position: absolute;
        z-index: -1;
    }

    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="select"] {
        max-width: 280px;
        border-radius: 10px;
    }

@media (max-width: 520px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="select"] {
        border-radius: 10px;
        display: flex;
        width: 100% !important;
    }
}

@media (max-width: 562px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="select"] {
        width: 165px !important;
    }
}

input[type="text"] {
    width: 280px;
    height: 35px;
}

input[type="submit"] {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1), 0px 0px 5px rgba(225, 225, 225, 0.1);
    font-size: 18px;
    font-weight: 500;
    font-family: neo-sans, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    margin-right: 5px;
    margin-left: 5px !important;
    padding: 0;
}

    input[type="radio"][disabled],
    input[type="checkbox"][disabled],
    input[type="radio"].disabled,
    input[type="checkbox"].disabled,
    fieldset[disabled] input[type="radio"],
    fieldset[disabled] input[type="checkbox"] {
        cursor: not-allowed;
    }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: textfield;
    -moz-appearance: none;
    appearance: none;
}

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 10px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input, button, select, textarea {
    padding: 5px 10px;
    border-radius: 10px !important;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../Images/arrow.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
    width: 280px;
    padding-bottom: 3px;
}

    select[multiple], select[size] {
        height: auto;
    }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }
}

/* Table row select */
.table_row_20 select {
    padding: 5px 5px 5px 10px;
}

@media (max-width: 485px) {
    .table_row_20 select {
        width: 100% !important;
    }
}

/* Checkbox/radio containers */
.radio, .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .radio.disabled label,
    .checkbox.disabled label,
    fieldset[disabled] .radio label,
    fieldset[disabled] .checkbox label {
        cursor: not-allowed;
    }

    .radio label,
    .checkbox label {
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
    }

    .radio input[type="radio"],
    .checkbox input[type="checkbox"] {
        position: absolute;
        margin-top: 4px \9;
        margin-left: -20px;
    }

    .radio + .radio,
    .checkbox + .checkbox {
        margin-top: -5px;
    }

/* Form groupbox */
.groupbox_data_left {
    border: none;
}

/* Misc form styling */
.submittedinfo {
    padding-left: 20px;
}

.formcheckbox {
    padding-left: 10px;
}

/* Import button */
#btnImportServices {
    width: 80px;
}

#MainContent_fuImportVehicles {
    border-radius: 10px;
}

/* Upload container */
.upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
    float: left;
    padding-left: 20px;
}

.filter-radio-buttons {
    display: flex;
    float: left;
    padding-top: 22px;
    padding-left: 20px;
    align-items: center;
    gap: 10px;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    color: #333333;
    border: 1px solid black;
    cursor: pointer;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 16px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 10px;
    margin-top: 12px;
}

    .custom-file-upload:hover {
        background-color: #e0e0e0;
        color: #333333;
    }

#fuImportVehicles {
    display: none;
}

#file-name {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* Authorize / multi-pass buttons */
#MainContent_btnAuthorize {
    margin-left: -5px;
    margin-right: 5px;
    padding: 0px;
}

#MainContent_btnMultiPass {
    padding: 0px !important;
}

#btnAuthorize, #btnMultiPass {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    color: #333333;
    border: 1px solid black;
    cursor: pointer;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 16px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 10px;
}

/* Search bar misc */
.mainsearchbar {
    margin-left: 80px;
    padding-top: 5px;
}

.searchbar-textbox {
    margin-top: 15px;
}

/* Dropdowns (legacy) */
.dropdowndefault {
    width: 200px;
    text-align: right;
}

/* In/out/all and expanded filters */
#in-out-all {
    padding-left: 0px;
    padding-top: 50px;
}

#expandedFilters {
    padding-top: 50px;
}

/* Cargo dropdown */
#MainContent_cbVehicleContracts {
    min-height: 40px !important;
    border-radius: 10px;
}

/* Description and label overrides */
#MainContent_lbDescription {
    font-family: neo-sans, sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 24px;
}

#MainContent_lblGateTrigger,
#MainContent_lblAlarm {
    font-family: neo-sans, sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}


/* ============================================================
   13. BOOTSTRAP FORM OVERRIDES (form-control, form-group, etc.)
   ============================================================ */

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.42857143;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    .custom-select:focus,
    .form-control:focus {
        box-shadow: 0 0 25px rgba(41, 124, 187, 0.1);
        border-color: rgba(41, 124, 187, 0.5);
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: #eeeeee;
        opacity: 1;
    }

    .form-control[disabled],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
    }

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 15px;
        margin-bottom: 0;
        text-align: right;
    }
}

/* text-white form control placeholders */
.form-control.text-white::-webkit-input-placeholder {
    color: #fff;
}

.form-control.text-white::-moz-placeholder {
    color: #fff;
}

.form-control.text-white:-ms-input-placeholder {
    color: #fff;
}

.form-control.text-white::placeholder {
    color: #fff;
}

/* hero-form placeholders */
.form-control.hero-form::-webkit-input-placeholder {
    color: #3b444f;
}

.form-control.hero-form::-moz-placeholder {
    color: #3b444f;
}

.form-control.hero-form:-ms-input-placeholder {
    color: #3b444f;
}

.form-control.hero-form::placeholder {
    color: #3b444f;
}

/* placeholder-1 */
.placeholder-1::-webkit-input-placeholder {
    color: #5c6770;
}

.placeholder-1::-moz-placeholder {
    color: #5c6770;
}

.placeholder-1:-ms-input-placeholder {
    color: #5c6770;
}

.form-control.text-white::-ms-input-placeholder {
    color: #fff;
}

.placeholder-1::placeholder {
    color: #5c6770;
}

/* Input group pill / borderless / transparent */
.input-group-pill {
    border-radius: 6.1875rem;
}

    .input-group-pill > .form-control:first-child {
        border-top-left-radius: 6.1875rem;
        border-bottom-left-radius: 6.1875rem;
    }

    .input-group-pill > .form-control:last-child {
        border-top-right-radius: 6.1875rem;
        border-bottom-right-radius: 6.1875rem;
    }

    .input-group-pill .input-group-prepend > .input-group-text,
    .input-group-pill .input-group-prepend > .btn {
        border-top-left-radius: 6.1875rem;
        border-bottom-left-radius: 6.1875rem;
    }

    .input-group-pill .input-group-append > .input-group-text,
    .input-group-pill .input-group-append > .btn {
        border-top-right-radius: 6.1875rem;
        border-bottom-right-radius: 6.1875rem;
    }

.input-group.input-group-pill > .form-control:first-child {
    padding-left: 1.5rem;
}

.input-group.input-group-pill .input-group-prepend > .input-group-text,
.input-group.input-group-pill .input-group-prepend > .btn {
    padding-left: 1.25rem;
}

.input-group.input-group-pill .input-group-append > .input-group-text,
.input-group.input-group-pill .input-group-append > .btn {
    padding-right: 1.25rem;
}

.input-group .input-group-prepend > .input-group-text,
.input-group .input-group-append > .input-group-text {
    font-size: 0.875rem;
}

.input-group-borderless .form-control,
.input-group-borderless .input-group-text,
.input-group-borderless button,
.input-group-borderless .btn {
    border: none;
}

    .input-group-borderless .form-control:focus,
    .input-group-borderless .input-group-text:focus,
    .input-group-borderless button:focus,
    .input-group-borderless .btn:focus {
        box-shadow: none;
    }

.input-group-radiusless .form-control,
.input-group-radiusless .input-group-text,
.input-group-radiusless button,
.input-group-radiusless .btn {
    border-radius: unset;
}

.input-group-tranparent .form-control,
.input-group-tranparent .input-group-text,
.input-group-tranparent button,
.input-group-tranparent .btn {
    background-color: transparent;
}

/* Focus/Success/Error input states (Travel Assistant form) */
.u-focus-state .form-label + .form-control,
.u-focus-state .custom-select,
.u-focus-state .input-group,
.u-focus-state .form-control:first-child:last-child {
    box-shadow: 0 0 25px rgba(41, 124, 187, 0.1);
}

.u-focus-state .input-group-text {
    color: #297cbb;
}

.u-focus-state:focus,
.u-focus-state *:focus,
.u-focus-state .input-group-text,
.u-focus-state .form-control {
    border-color: rgba(41, 124, 187, 0.5);
}

.u-focus-state .form-control {
    box-shadow: none;
}

.u-has-success .form-label + .form-control,
.u-has-success .custom-select,
.u-has-success .input-group,
.u-has-success .form-control:first-child:last-child {
    box-shadow: 0 0 25px rgba(0, 201, 167, 0.1);
}

.u-has-success .input-group-text {
    color: #00c9a7;
}

.u-has-success:focus,
.u-has-success *:focus,
.u-has-success .input-group-text,
.u-has-success .form-control {
    border-color: rgba(0, 201, 167, 0.5);
}

.u-has-error .form-label + .form-control,
.u-has-error .custom-select,
.u-has-error .input-group,
.u-has-error .form-control:first-child:last-child {
    box-shadow: 0 0 25px rgba(222, 68, 55, 0.1);
}

.u-has-error .input-group-text {
    color: #de4437;
}

.u-has-error:focus,
.u-has-error *:focus,
.u-has-error .input-group-text,
.u-has-error .form-control {
    border-color: rgba(222, 68, 55, 0.5);
}

.u-header__search .form-label {
    display: block;
    text-transform: uppercase;
    font-size: 80%;
    font-weight: 500;
}

/* xs input sizes */
.input-group-xs.input-group-pill > .form-control:first-child {
    padding-left: 1.375rem;
}

.input-group-xs.input-group-pill .input-group-prepend > .input-group-text,
.input-group-xs.input-group-pill .input-group-prepend > .btn {
    padding-left: 1.25rem;
}

.input-group-xs.input-group-pill .input-group-append > .input-group-text,
.input-group-xs.input-group-pill .input-group-append > .btn {
    padding-right: 1.25rem;
}

.input-group-xs .input-group-prepend > .input-group-text,
.input-group-xs .input-group-append > .input-group-text {
    font-size: 0.625rem;
}

.form-control-xs {
    height: calc(1.925rem + 1px);
    padding: 0.4375rem 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* sm input sizes */
.input-group-sm.input-group-pill > .form-control:first-child {
    padding-left: 1rem;
}

.input-group-sm.input-group-pill .input-group-prepend > .input-group-text,
.input-group-sm.input-group-pill .input-group-prepend > .btn {
    padding-left: 1rem;
}

.input-group-sm.input-group-pill .input-group-append > .input-group-text,
.input-group-sm.input-group-pill .input-group-append > .btn {
    padding-right: 1rem;
}

.input-group-sm .input-group-prepend > .input-group-text,
.input-group-sm .input-group-append > .input-group-text {
    font-size: 0.75rem;
}

/* lg input sizes */
.input-group-lg.input-group-pill > .form-control:first-child {
    padding-left: 2rem;
}

.input-group-lg.input-group-pill .input-group-prepend > .input-group-text,
.input-group-lg.input-group-pill .input-group-prepend > .btn {
    padding-left: 1.375rem;
}

.input-group-lg.input-group-pill .input-group-append > .input-group-text,
.input-group-lg.input-group-pill .input-group-append > .btn {
    padding-right: 1.5rem;
}

.input-group-lg .input-group-prepend > .input-group-text,
.input-group-lg .input-group-append > .input-group-text {
    font-size: 1rem;
}

/* Login form */
#loginForm input {
    background-color: #e1f2fa !important;
    transition: background-color 0.3s ease;
}

    #loginForm input.filled {
        background-color: #FAFAFC !important;
    }

    #loginForm input:-webkit-autofill {
        background-color: #FAFAFC !important;
        -webkit-box-shadow: 0 0 0px 1000px #FAFAFC inset !important;
        -webkit-text-fill-color: #000 !important;
    }

    #loginForm input:-moz-autofill {
        background-color: #FAFAFC !important;
    }

    #loginForm input:not(.filled):-webkit-autofill {
        background-color: #e1f2fa !important;
    }

    #loginForm input:not(.filled):-moz-autofill {
        background-color: #e1f2fa !important;
    }

input#MainContent_Email,
input#MainContent_Password {
    margin-left: 0px !important;
}

.form-group-forms { /* Visitor Access: flex centering on small screens */
}

@media (max-width: 530px) {
    .form-group-forms {
        display: flex;
        flex-direction: column;
    }

        .form-group-forms label {
            margin-left: 0px;
        }
}

.form-background-box {
    border: #d0d0d0 solid 2px;
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
}





/* ============================================================
   14. BUTTONS (btn-*)
   ============================================================ */
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    user-select: none;
}

    .btn:focus, .btn:active:focus, .btn.active:focus,
    .btn.focus, .btn:active.focus, .btn.active.focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:hover, .btn:focus, .btn.focus {
        color: #333;
        text-decoration: none;
    }

    .btn:active, .btn.active {
        background-image: none;
        outline: 0;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
        cursor: not-allowed;
        opacity: 0.65;
        box-shadow: none;
    }

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-default:focus, .btn-default.focus,
    .btn-default:hover {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    .btn-default:active, .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        color: #333;
        background-color: #e6e6e6;
        background-image: none;
        border-color: #adadad;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

    .btn-primary:focus, .btn-primary.focus,
    .btn-primary:hover {
        color: #fff;
        background-color: #286090;
        border-color: #204d74;
    }

    .btn-primary:active, .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #286090;
        background-image: none;
        border-color: #204d74;
    }

    .btn-primary .badge {
        color: #337ab7;
        background-color: #fff;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .btn-success:focus, .btn-success.focus,
    .btn-success:hover {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

    .btn-success:active, .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #449d44;
        background-image: none;
        border-color: #398439;
    }

    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .btn-info:focus, .btn-info.focus,
    .btn-info:hover {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

    .btn-info:active, .btn-info.active,
    .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #31b0d5;
        background-image: none;
        border-color: #269abc;
    }

    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:focus, .btn-warning.focus,
    .btn-warning:hover {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

    .btn-warning:active, .btn-warning.active,
    .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ec971f;
        background-image: none;
        border-color: #d58512;
    }

    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .btn-danger:focus, .btn-danger.focus,
    .btn-danger:hover {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

    .btn-danger:active, .btn-danger.active,
    .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #c9302c;
        background-image: none;
        border-color: #ac2925;
    }

    .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    border-color: transparent;
}

    .btn-link:hover, .btn-link:focus {
        color: #23527c;
        text-decoration: underline;
        background-color: transparent;
        border-color: transparent;
    }

    .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover,
    .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
        color: #777777;
        text-decoration: none;
    }

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.btn .label {
    position: relative;
    top: -1px;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
}

.buttons_default {
    width: 200px;
    font-size: 20px;
    font-family: "neo-sans", sans-serif;
    font-weight: 400;
}

.buttons_footer {
    width: 200px;
    height: 60px;
    font-size: 28px;
    font-family: 'Arial', Arial, serif;
    visibility: visible;
}


/* ============================================================
   15. TABLE & PANEL
   ============================================================ */

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > th,
    .table > colgroup + thead > tr:first-child > th,
    .table > thead:first-child > tr:first-child > th,
    .table > caption + thead > tr:first-child > td,
    .table > colgroup + thead > tr:first-child > td,
    .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

    /* Table active/state row colours */
    .table > thead > tr > td.active, .table > tbody > tr > td.active,
    .table > tfoot > tr > td.active, .table > thead > tr > th.active,
    .table > tbody > tr > th.active, .table > tfoot > tr > th.active,
    .table > thead > tr.active > td, .table > tbody > tr.active > td,
    .table > tfoot > tr.active > td, .table > thead > tr.active > th,
    .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
        background-color: #f5f5f5;
    }

    .table > thead > tr > td.success, .table > tbody > tr > td.success,
    .table > tfoot > tr > td.success, .table > thead > tr > th.success,
    .table > tbody > tr > th.success, .table > tfoot > tr > th.success,
    .table > thead > tr.success > td, .table > tbody > tr.success > td,
    .table > tfoot > tr.success > td, .table > thead > tr.success > th,
    .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
        background-color: #dff0d8;
    }

    .table > thead > tr > td.info, .table > tbody > tr > td.info,
    .table > tfoot > tr > td.info, .table > thead > tr > th.info,
    .table > tbody > tr > th.info, .table > tfoot > tr > th.info,
    .table > thead > tr.info > td, .table > tbody > tr.info > td,
    .table > tfoot > tr.info > td, .table > thead > tr.info > th,
    .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
        background-color: #d9edf7;
    }

    .table > thead > tr > td.warning, .table > tbody > tr > td.warning,
    .table > tfoot > tr > td.warning, .table > thead > tr > th.warning,
    .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning,
    .table > thead > tr.warning > td, .table > tbody > tr.warning > td,
    .table > tfoot > tr.warning > td, .table > thead > tr.warning > th,
    .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
        background-color: #fcf8e3;
    }

    .table > thead > tr > td.danger, .table > tbody > tr > td.danger,
    .table > tfoot > tr > td.danger, .table > thead > tr > th.danger,
    .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger,
    .table > thead > tr.danger > td, .table > tbody > tr.danger > td,
    .table > tfoot > tr.danger > td, .table > thead > tr.danger > th,
    .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
        background-color: #f2dede;
    }


/* ============================================================
   16. DROPDOWNS & DROPDOWN MENU
   ============================================================ */

.dropup, .dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333333;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            color: #262626;
            text-decoration: none;
            background-color: #f5f5f5;
        }

    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: #337ab7;
        outline: 0;
    }

    .dropdown-menu > .disabled > a,
    .dropdown-menu > .disabled > a:hover,
    .dropdown-menu > .disabled > a:focus {
        color: #777777;
        cursor: not-allowed;
        background-color: transparent;
        background-image: none;
        filter: none;
    }

    .dropdown-menu.show {
        display: block;
    }

.dropdown-header {
    display: block;
    padding: 1rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #8c98a4;
    white-space: nowrap;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e7eaf3;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.375rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #67747c;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: #3b444f;
        text-decoration: none;
        background-color: transparent;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #8c98a4;
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-item-text {
    display: block;
    padding: 0.375rem 1.5rem;
    color: #67747c;
}

/* Directional dropdown menus */
.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto;
}

/* Responsive dropdown alignment */
@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1480px) {
    .dropdown-menu-wd-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-wd-right {
        right: 0;
        left: auto;
    }
}


/* ============================================================
   17. LABELS & BADGES
   ============================================================ */

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777777;
    border-radius: 10px;
}

    .badge:empty {
        display: none;
    }

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff;
}

.nav-pills > li > a > .badge {
    margin-left: 3px;
}


/* ============================================================
   18. VISIBILITY HELPERS
   ============================================================ */

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

/* Flex helpers (Travel Assistant) */
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.position-relative {
    position: relative !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .pl-md-5, .px-md-5 {
        padding-left: 2rem !important;
    }
}

.pl-3, .px-3 {
    padding-left: 0.5rem !important;
    margin-left: -10px;
}

.vertical-align-nav-form, .py-2 {
    padding-bottom: 0.5rem !important;
}

@media (min-width: 768px) {
    .nav-icons-bar-padding, .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
}

@media (min-width: 992px) {
    .nav-with-form-wrapper, .my-lg-n16 {
        margin-bottom: -8rem !important;
    }
}

.travel-font-weight-medium {
    font-weight: 500 !important;
}


/* ============================================================
   19. PRINT STYLES
   ============================================================ */

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *, *:before, *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td, .table th {
            background-color: #fff !important;
        }

    .hidden-print {
        display: none !important;
    }
}


/* ============================================================
   20. GRIDVIEW / DATA TABLES
   ============================================================ */

.gridview_default {
    font-size: 15px !important;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: solid 1px #4882B3;
    border-collapse: separate !important;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-collapse: collapse;
}

    /* Header styling */
    .gridview_default th {
        padding: 10px;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 200px;
        border-right: 0.2px solid #4682b432;
    }

    /* Cell styling */
    .gridview_default td {
        padding: 10px;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        border-right: 0.2px solid #4682b432;
    }

        /* Action columns (View/Edit/Delete) fixed at 90px */
        .gridview_default td.action-column,
        .gridview_default th.action-column {
            width: 90px !important;
            min-width: 90px !important;
            max-width: 90px !important;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            border-bottom: 1px solid #4882B380;
        }

        /* Non-action columns auto-width */
        .gridview_default td:not(.action-column),
        .gridview_default th:not(.action-column) {
            width: auto !important;
            border-bottom: 1px solid #4882B380;
        }

/* Pager row */
.gridPager td:not(.action-column) {
    position: relative;
    background: #FAFAFC;
    border: none;
    border-right: 1px solid #4882B380;
}

    .gridPager td:not(.action-column):last-child {
        border-right: none;
    }

tr.gridPager {
    display: flex;
}

/* Table column headers */
.columnheaderdefault {
    width: 150px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    vertical-align: top;
    padding: 10px;
    color: #FAFAFC !important;
}

.columnheadernowidth {
    height: 20px;
    font-size: 13px;
    font-weight: bold;
    align-content: center;
    align-items: center;
    text-align: center;
}

.columnheader_small {
    width: 150px;
    height: 20px;
    align-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.columndefault {
    width: 150px;
    height: 30px;
    align-content: center;
    align-items: center;
    text-align: center;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13.5px;
}

/* Table data cells */
.tabledata_default_left {
    font-size: 16px;
    font-family: inherit;
    width: 50%;
    height: 55px;
    text-align: right;
    padding-right: 10px;
    align-content: center;
    font-weight: 700;
    color: #204059;
}

.tabledata_default_right {
    width: 50%;
    height: 25px;
    font-size: 15px;
    font-family: inherit;
    text-align: left;
    text-indent: 50px !important;
    align-content: center;
}

.tabledata-text-left {
    height: 25px;
    font-size: 15px;
    font-family: inherit;
    text-align: left;
    align-content: center;
}

.tabledata_default_left .tabledata_default_left_bolder {
    font-weight: bolder;
}

.tabledata_default_bold {
    width: 50%;
    height: 25px;
    font-size: 16px;
    font-family: 'Arial', Arial, serif;
    font-weight: bold;
}

/* Table rows */
.table_row_20 {
    height: 20px;
    padding-top: 20px !important;
}

.table_row_default {
    height: 40px;
}

.table_row_60 {
    height: 60px;
}

.table_row_image {
    height: 80px;
}

/* Table misc */
.narrow-table td {
    padding: 2px 6px;
    white-space: nowrap;
}

.img-rounded {
    border-radius: 6px;
}

.img-rounded-10 {
    border-radius: 10px;
}

.img-rounded-15 {
    border-radius: 15px;
}

.img-circle {
    border-radius: 50%;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ============================================================
   21. SCROLLABLE PANEL
   ============================================================ */

.scrollable-panel {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    max-height: 2000px;
    padding-bottom: 5px;
    scrollbar-width: thick;
    scrollbar-color: #4682b4 #FAFAFC;
    padding-right: 0px;
    padding-left: 0px;
}

#MainContent_pFuelManagerEvents.scrollable-panel {
    padding-left: 0px;
}

.scrollable-panel::-webkit-scrollbar {
    height: 80px;
}

.scrollable-panel::-webkit-scrollbar-track {
    background: #b0c4de;
    border-radius: 40px;
    margin-top: 20px;
}

.scrollable-panel::-webkit-scrollbar-thumb {
    background: #4682b4;
    border-radius: 40px;
}

    .scrollable-panel::-webkit-scrollbar-thumb:hover {
        background: #36648b;
    }


/* ============================================================
   22. SPACERS, PADDING & WIDTH UTILITIES
   ============================================================ */

.spacer_5 {
    height: 5px;
}

.spacer_10 {
    height: 10px;
}

.spacer_20 {
    height: 20px;
}

.spacer_30 {
    height: 30px;
}

.spacer_40 {
    height: 40px;
}

.spacer_50 {
    height: 50px;
}

.padding_10 {
    padding: 10px;
    margin-top: 0;
}

@media (max-width: 1178px) {
    .padding_10 {
        margin-top: 0 !important;
    }
}

.padding_20 {
    padding: 20px;
}

.padding_30 {
    padding: 30px;
}

.padding_40 {
    padding: 40px;
}

.padding_50 {
    padding: 50px;
}

.padleft_10 {
    padding-left: 10px;
}

.padleft_20 {
    padding-left: 20px;
}

.padleft_40 {
    padding-left: 40px;
}

.padleft_50 {
    padding-left: 50px;
}

.padTop_20 {
    padding-top: 20px;
}

.padTop_40 {
    padding-top: 40px;
}

.padTop_50 {
    padding-top: 50px;
}

.margin_auto {
    margin: 0 auto;
}

.margin_10 {
    margin: 10px;
}

.autocenter {
    margin: 0 auto;
    text-align: center;
}

.text_center {
    text-align: center;
}

.width_100 {
    width: 100%;
}

.hidden_ {
    visibility: hidden;
}

.visible_ {
    visibility: visible;
}

.displaynone {
    display: none;
}


/* ============================================================
   23. IMAGE & PROFILE UTILITIES
   ============================================================ */

#profile_pic_wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border: none;
}

    #profile_pic_wrapper a {
        position: absolute;
        display: none;
        top: 30;
        right: 0;
        margin-top: -30px;
        line-height: 20px;
        padding: 5px;
        color: #fff;
        background-color: #333;
        width: 110px;
        text-align: center;
        z-index: 100;
        text-decoration: none;
        font-family: Arial;
        font-size: 10px;
    }

    #profile_pic_wrapper:hover a {
        position: absolute;
        margin: 90px 0px 0px 0px;
        display: block;
        text-decoration: none;
        font-family: Arial;
        font-size: 10px;
    }

        #profile_pic_wrapper:hover a:hover {
            text-decoration: none;
            font-family: Arial;
            font-size: 10px;
        }

.profile_pic {
    width: 120px;
    height: 120px;
}

/* Image select widget */
.image-select {
    position: relative;
    display: inline-block;
}

.image-select__img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

/* Image buttons (icon-style) */
.image-button {
    width: 50px;
    height: 50px;
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
}

.icon-button {
    width: 55px;
    height: auto;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1), 0px 0px 5px rgba(225, 225, 225, 0.1);
    margin-right: 22px;
}

    .icon-button:hover {
        opacity: 0.8;
    }

@media (max-width: 440px) {
    .icon-button {
        margin: 5px;
    }
}

@media (max-width: 340px) {
    .icon-button {
        margin: 4px;
    }
}


/* ============================================================
   24. CAMERA / VIDEO
   ============================================================ */

/* Flip video (mirror view) */
video {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-top: 5px;
}

/* Flip canvas image (mirror view) */
#canvas {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}


/* ============================================================
   25. ALARM BUTTONS & ALARM ROWS
   ============================================================ */

/* Alarm bar (top-right of page) */
.alarm-bar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0px;
    margin-top: -30px;
}

.alarm-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Shared alarm button wrapper */
.image-button-wrapper-red-alarm,
.image-button-wrapper-orange-alarm,
.image-button-wrapper-green-alarm {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button-wrapper-red-alarm {
    background-image: url('../Images/RedAlarmStatic.png');
}

    .image-button-wrapper-red-alarm[alert] {
        background-image: url('../Images/RedAlarmActive.gif');
    }

.image-button-wrapper-orange-alarm {
    background-image: url('../Images/OrangeAlarmStatic.png');
}

    .image-button-wrapper-orange-alarm[warning] {
        background-image: url('../Images/OrangeAlarmActive.gif');
    }

.image-button-wrapper-green-alarm {
    background-image: url('../Images/GreenAlarmStatic.png');
}

    .image-button-wrapper-green-alarm[busy] {
        background-image: url('../Images/GreenAlarmActive.gif');
    }

/* Alarm GIF overlay */
.alarm-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 40%;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 0px;
    margin-top: 0px;
}

/* Alarm row colours in gridview */
.gridview-row {
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.green-alarm-line {
    background-color: #2F855A;
    color: #E5E5E5;
}

    .green-alarm-line a {
        color: #E5E5E5 !important;
    }

        .green-alarm-line a:hover {
            color: #d1d1d1 !important;
        }

.orange-alarm-line {
    background-color: #F28C28;
    color: #FAFAFC;
}

    .orange-alarm-line a {
        color: #FAFAFC !important;
    }

        .orange-alarm-line a:hover {
            color: #DDDDDD !important;
        }

.red-alarm-line {
    background-color: #C53030;
    color: #edebeb;
}

    .red-alarm-line a {
        color: #edebeb !important;
    }

        .red-alarm-line a:hover {
            color: #cccaca !important;
        }

.closed-alarm-line {
    background-color: #C8C8CC;
    color: #878787;
}

    .closed-alarm-line a {
        color: #878787 !important;
    }

        .closed-alarm-line a:hover {
            color: #787878 !important;
        }


/* ============================================================
   26. TOOLBAR (Print/Save/Auth/Filter Groups)
   ============================================================ */

/* Print button */
#btnUserPrint {
    background-image: url('../Images/print-blue.png');
}

#btnUserSavePage {
    background-image: url('../Images/SavePage.png');
}

#btnUserSaveAll {
    background-image: url('../Images/SaveAll.png');
}

#btnUserPrint:hover {
    background-image: url('../Images/print-blue-hover.png');
}

#btnUserSavePage:hover {
    background-image: url('../Images/SavePageHover.png');
}

#btnUserSaveAll:hover {
    background-image: url('../Images/SaveAllHover.png');
}

.image-button-wrapper-print {
    background-image: url('../Images/print-blue.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 10px;
}

    .image-button-wrapper-print:hover {
        background-image: url('../Images/print-blue-hover.png');
        margin: 10px;
    }

@media (max-width: 768px) {
    .image-button-wrapper-print {
        margin-left: -3px;
    }

        .image-button-wrapper-print:hover {
            margin-left: -3px;
        }
}

.image-button-wrapper-save {
    background-image: url('../Images/SavePage.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 10px;
}

    .image-button-wrapper-save:hover {
        background-image: url('../Images/SavePageHover.png');
        margin: 10px;
    }

.image-button-wrapper-save-all {
    background-image: url('../Images/SaveAll.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

    .image-button-wrapper-save-all:hover {
        background-image: url('../Images/SaveAllHover.png');
    }

/* Invisible clickable overlay for image buttons */
.invisible-image-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 0px;
    margin-top: 0px;
}

/* Toolbar grouping wrappers */
.tool-groups-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 20px;
}

.toolbar-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.toolbar-section {
    display: inline-block;
    vertical-align: top;
}

.filters-section {
    flex: 1 1 auto;
    min-width: 200px;
}

@media (max-width: 639px) {
    .auth-button-container {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 0px;
    }
}

@media (min-width: 640px) {
    .auth-button-container {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 16px;
    }
}

@media (max-width: 668px) {
    .start-end-button-container {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 0px;
        align-items: center;
    }
}

@media (min-width: 668px) {
    .start-end-button-container {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 16px;
        align-items: center;
    }
}

.print-save-group {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin-left: 10px;
    list-style: none;
}

@media (max-width: 550px) {
    .tool-groups-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .print-save-group {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (min-width: 829px) {
    .toolbar-wrapper {
        margin-right: 20px;
        margin-top: -10px;
    }
}

@media (min-width: 500px) and (max-width: 828px) {
    .preview-section {
        order: 1;
    }

    .print-section {
        order: 2;
    }

    .filters-section {
        order: 3;
        margin-left: 20px !important;
    }

    .toolbar-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-right: 20px;
        margin-left: -20px;
        margin-top: -15px;
    }

    .filters-container {
        margin-top: 0px;
        margin-left: 2px;
        margin-right: 2px;
    }
}

@media (max-width: 500px) {
    .toolbar-wrapper {
        flex-direction: column;
        align-items: stretch;
        
    }

    .preview-section {
        order: 2;
        margin-top: -20px;
        margin-left: -3px;
    }

    .print-section {
        order: 1;
        margin-left: 15px !important;
    }

    .filters-section {
        order: 3;
        margin-left: -0px !important;
    }

    .toolbar-section {
        width: 100%;
    }

    .filters-container {
        margin-top: 0px;
        margin-right: 2px;
    }
}

@media (min-width: 500px) and (max-width: 619px) {
    .toolbar-wrapper {
        margin-top: -4px;
    }

    .filters-container {
        margin-top: 0px;
    }
}


@media (min-width: 619px) and (max-width: 828px) {
    .toolbar-wrapper {
        margin-top: -4px;
    }

    .filters-container {
        margin-top: 0px;
    }
}

@media (max-width: 410px) {
    .search-filters-button.toggle-filters-display {
        margin-top: 0px !important;
    }

    .filters-container-tag-usage {
        margin-top: 185px !important;
    }

    .toolbar-section.filters-section {
        min-width: 300px !important;
    }
}

@media (min-width: 411px) and (max-width: 828px) {
    .toolbar-section.filters-section {
        min-width: 400px !important;
    }
}

/* SARS Reports */
.start-date-saerch {
    padding-right: 20px;
}

.previewreport {
    margin-right: 0px;
}

.size-date-search {
    width: 140px;
}


/* ============================================================
   27. SEARCH TOOLBAR & FILTER PANEL
   ============================================================ */

.search-toolbar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    min-width: 0;
    margin-top: 0px;
}

    .search-toolbar-container input[type="image"],
    .search-toolbar-container input[type="text"] {
        display: inline-block;
        vertical-align: middle;
        height: 33px !important;
        line-height: 1;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        margin-bottom: 0px;
    }

    .search-toolbar-container input[type="text"] {
        padding: 4px 8px;
        font-size: 14px;
        width: 200px;
        min-width: 100px;
        height: 33px !important;
    }

.add-button {
    height: 30px !important;
    width: 30px !important;
    margin-right: 15px !important;
}

.search-icon {
    height: 40px !important;
    width: auto !important;
}

/* Override: search-icon for main searchbar area */
.search-icon {
    height: 50px;
}

.search-box {
    height: 40px !important;
}

#btnTankAdd {
    height: 48px !important;
    width: 48px !important;
    vertical-align: middle;
}

.search-filter-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    list-style: none;
}

.search-filters-button {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    margin-top: 22px !important;
    cursor: pointer !important;
    padding-bottom: 10px !important;
    display: inline-flex !important;
    border-radius: 4px;
    transition: background 0.2s;
}

.search-filter-arrow {
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -6px;
    left: -10px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

    .search-filter-arrow.rotate {
        transform: rotate(90deg);
    }

.filters-panel.collapse {
    display: none;
}

.filters-container {
    background: #fff;
    border: 1px solid #c8cacd;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(6, 5, 24, 0.06);
    overflow: hidden;
}

.advanced-filters-title {
    font-family: "lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111827;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.collapsable-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.collapsable-filters-checkboxes-wrapper {
    padding: 16px 20px 20px 20px;
}

.collapsable-filters-default-form-wrapper {
    padding: 8px 0 20px 20px;
}

.location-pin {
    cursor: pointer;
    margin-top: 15px;
    transition: filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(5%) sepia(20%) saturate(5000%) hue-rotate(205deg) brightness(50%) contrast(110%);
}

    .location-pin:hover {
        filter: brightness(0) saturate(100%) invert(53%) sepia(12%) saturate(1494%) hue-rotate(162deg) brightness(94%) contrast(91%);
    }

.location-home {
    cursor: pointer;
    margin-left: -20px;
    margin-top: 14px;
    transition: filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(5%) sepia(20%) saturate(5000%) hue-rotate(205deg) brightness(50%) contrast(110%);
}

    .location-home:hover {
        filter: brightness(0) saturate(100%) invert(53%) sepia(12%) saturate(1494%) hue-rotate(162deg) brightness(94%) contrast(91%);
    }


/* ============================================================
   28. FUEL MANAGEMENT
   ============================================================ */

#MainContent_pTanksImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 15px;
    margin-bottom: 30px;
}

#gmpFuelOverviewMap {
    border-radius: 10px;
    overflow: hidden;
    width: 100px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 3px rgba(225, 225, 225, 0.3);
}

#MainContent_pOverviewMap .padding_10 {
    margin-top: 0px !important;
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    margin-bottom: 10px;
}

#MainContent_pTanks,
#MainContent_pPump,
#MainContent_pNozzle,
#MainContent_pTanksMobile,
#MainContent_pOverviewMap {
    margin-top: 0px !important;
    padding-top: 0px;
}

#MainContent_pOverviewMap {
    padding: 10px;
}

#pFuelManagerEvents {
    width: 100%;
    height: 500px;
    background-color: #BCBCBC;
}

@media (max-width: 1178px) {
    #MainContent_btnTankAdd,
    #MainContent_btnTanksMobileAdd,
    #MainContent_btnPumpAdd,
    #MainContent_btnAddNozzle {
        margin-left: 0px !important;
        margin-top: 0px;
    }
}

@media (min-width: 1179px) {
    #MainContent_btnTankAdd,
    #MainContent_btnTanksMobileAdd,
    #MainContent_btnPumpAdd,
    #MainContent_btnAddNozzle {
        margin-left: 0px !important;
    }
}

#MainContent_btnTankAdd,
#MainContent_btnTanksMobileAdd,
#MainContent_btnPumpAdd,
#MainContent_btnAddNozzle,
#MainContent_btnAutoStopAdd,
#MainContent_btnUserFuelTask {
    padding: 0px;
    margin-right: 10px;
}


/* ============================================================
   29. TANK / PUMP / NOZZLE CARDS
   ============================================================ */

#MainContent_pTanksMobileImages,
#MainContent_pPumpsImages,
#MainContent_pTanksImages,
#MainContent_pNozzlesImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-bottom: 15px;
    padding: 30px 25px;
}

    #MainContent_pTanksMobileImages > div,
    #MainContent_pPumpsImages > div,
    #MainContent_pTanksImages > div,
    #MainContent_pNozzlesImages > div {
        flex: 0 1 auto;
        background-color: cornflowerblue;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 3px rgba(225, 225, 225, 0.3);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 180px;
        max-width: 220px;
    }

@media (max-width: 595px) {
    #MainContent_pTanksMobileImages > div,
    #MainContent_pPumpsImages > div,
    #MainContent_pTanksImages > div,
    #MainContent_pNozzlesImages > div {
        max-width: 100%;
        min-width: 100%;
    }

    #MainContent_pTanksMobileImages,
    #MainContent_pPumpsImages,
    #MainContent_pTanksImages,
    #MainContent_pNozzlesImages {
        padding: 30px 10px;
    }
}

/* Blue box info text */
.blue-box-info {
    text-align: left;
    font-size: 11px;
    font-weight: 900;
    padding-top: 10px;
    line-height: 10px;
    width: 100%;
    border-radius: 20px;
    padding-left: 11px;
}

@media (max-width: 595px) {
    .blue-box-info {
        padding-left: 25%;
    }
}

/* Fuel details text inside card */
.fuel-details {
    border-radius: 20px;
    text-align: left;
    font-size: 11px;
    line-height: 10px;
    padding-top: 10px;
    padding-left: 11px;
    font-weight: 900;
}

@media (max-width: 595px) {
    .fuel-details {
        padding-left: 25%;
    }
}

/* Tank section card */
.tank-section {
    width: 200px;
    height: 180px;
    border-radius: 10px;
    padding: 10px;
    font-size: 8px;
    font-weight: bold;
    background-color: cornflowerblue;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .tank-section table {
        width: 100%;
        height: 100%;
    }

    .tank-section .tank-image {
        height: 80px;
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tank-section .details {
        border-radius: 20px;
        text-align: left;
        font-size: 10px;
        padding-left: 10px;
        font-weight: bolder;
    }


/* ============================================================
   30. OVERVIEW TANK
   ============================================================ */

.overview-tank {
    height: 215px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
    font-size: 8px;
    font-weight: bold;
    background-color: cornflowerblue;
    border-width: thin;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 3px rgba(225, 225, 225, 0.3);
}

.summary-header {
    text-align: center;
}

.summary-text {
    font-size: 14px;
    font-weight: 800;
}

.image-container {
    height: 80px;
    padding: 10px;
    text-align: center !important;
}

.tank-image {
    width: 180px;
    height: 60px;
}


/* ============================================================
   31. LOGIN FORM
   ============================================================ */

/* (Login form input styles are in section 12 under #loginForm) */


/* ============================================================
   32. TRAVEL ASSISTANT & BOOKING FORM
   ============================================================ */

.travel-assistant-nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 10px;
    list-style: none;
    background-color: white;
    padding-top: 20px;
}

@media (max-width: 1479.98px) {
    .tab-nav {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.tab-nav-rounded .travel-nav-link {
    padding: 0px;
}

.travel-nav-link {
    display: block;
    padding: 0.438rem 1rem;
    text-decoration: none;
}

    .travel-nav-link:hover {
        text-decoration: none !important;
    }

    .travel-nav-link.active,
    .travel-nav-link.collapsible:hover {
        background-color: transparent !important;
    }

/* Tab icons */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
    border-bottom: 0.5px solid #dddcd6;
    /* Bleed out of parent padding */
    width: calc(100% + 40px); /* double the container's horizontal padding */
    margin-left: -20px; /* match container's padding-left */
    margin-right: -20px; /* match container's padding-right */
    margin-top: -20px; /* match container's padding-right */
}

    /* Ensure the flight-timeline-outer fills the tabs flex container */
    .tabs > .flight-timeline-outer {
        width: 100%;
        flex: 1;
    }

    /* Ensure the flight-timeline-wrapper inside .tabs fills its container */
    .tabs .flight-timeline-outer > .flight-timeline-wrapper {
        width: 100%;
    }

    /* The travel-assistant-nav inside .tabs/.flight-timeline-wrapper:
   centre the icons as a group using flex justify-content */
    .tabs .flight-timeline-wrapper > .travel-assistant-nav,
    .tabs .flight-timeline-wrapper .travel-assistant-nav {
        justify-content: center;
        margin: 0 auto;
    }

/* ── Tab circle icons (new style matching site design) ── */

.tab-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 8px 12px 10px;
    cursor: pointer;
}

.tab-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ebebf3;
    transition: background 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

.tab-circle i {
    font-size: 19px;
    color: #4a4878;
    transition: color 0.15s;
    line-height: 1;
}

/* Hover state */
.travel-nav-link:not(.active):hover .tab-circle {
    background: #dddcef;
}

.travel-nav-link:not(.active):hover .tab-circle i {
    color: #2a2d5a;
}

/* Active / selected state */
.tab-circle--active {
    background: #2a2d5a !important;
}

.tab-circle--active i {
    color: #ffffff !important;
}

.tabtext {
    font-size: 12px;
    text-align: center;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.travel-nav-link.active .tabtext {
    color: #2a2d5a;
    font-weight: 600;
}

.travel-nav-link:not(.active):hover .tabtext {
    color: #2a2d5a;
}

/* Legacy .tab-icon kept for any other pages that still use it */
.tab-icon {
    font-size: 25px;
    color: #fafafc;
    cursor: pointer;
    transition: color 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

    .tab-icon.selected {
    }

    .tab-icon:hover {
        color: #42387d;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    }

/* Booking form wrapper */
.booking-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    margin-top: -60px;
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.booking-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-right: -90px;
    height: 67px;
}

.form-row {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    justify-content: space-between;
}

.booking-input, .booking-select {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #757575;
}

.input-icon {
    position: absolute;
    left: 1px;
    color: #555;
}

.booking-search-btn {
    background-color: #4882B3;
    color: #fff;
    padding: 2px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .booking-search-btn:hover {
        background-color: #0056b3;
    }

/* ═══════════════════════════════════════════════════════════════════
   VX SEARCH BAR PILL  — unified filter bar for all booking tabs
   Matches the CANParameterLink vx-card / vx-field design language
   ═══════════════════════════════════════════════════════════════════ */

.vx-searchbar-pill {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #c8cacd;
    border-radius: 12px;
    overflow: visible; /* allow dropdowns to escape */
    box-shadow: 0 2px 12px rgba(72, 130, 179, 0.10);
    width: 1250px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Each field segment */
.vx-sbp-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 16px 9px;
    flex: 1;
    min-width: 90px;
    cursor: text;
    transition: background 0.13s;
    position: relative;
}

.vx-sbp-field:hover {
    background: #f0f6fc;
}

.vx-sbp-field--date  { min-width: 140px; flex: 1.2; }
.vx-sbp-field--narrow { flex: 0 0 auto; min-width: 64px; max-width: 84px; }
.vx-sbp-field--dest  { flex: 1.6; }

/* Label row — same uppercase style as vx-field__label in CANParameterLink */
.vx-sbp-label {
    font-family: "lato", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4882B3;
    margin-bottom: 3px;
    white-space: nowrap;
    user-select: none;
}

/* Input value — matches vx-field inputs in CANParameterLink */
.vx-sbp-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1B2A7B;
    width: 100%;
    line-height: 1.4;
}

.vx-sbp-input::placeholder { color: #a0aec0; font-weight: 400; }
.vx-sbp-input[type="date"] { min-width: 110px; }
.vx-sbp-input[type="number"] { -moz-appearance: textfield; }
.vx-sbp-input[type="number"]::-webkit-inner-spin-button,
.vx-sbp-input[type="number"]::-webkit-outer-spin-button { opacity: 0.4; }

/* Select inside pill */
.vx-sbp-select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* Thin vertical divider between fields */
.vx-sbp-divider {
    width: 1px;
    background: #d8e4ef;
    align-self: stretch;
    margin: 9px 0;
    flex-shrink: 0;
}

/* Swap arrow icon between Origin and Destination */
.vx-sbp-swap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    flex-shrink: 0;
    color: #4882B3;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
}

.vx-sbp-swap:hover {
    background: #e3eef8;
    color: #1B2A7B;
}

/* Search button — keeps existing vx-btn-search look, flush on right edge */
.vx-sbp-search-btn {
    border-radius: 0 10px 10px 0 !important;
    width: 50px !important;
    height: auto !important;
    align-self: stretch !important;
    margin: 0 !important;
    flex-shrink: 0;
}

/* Dropdown list positioned correctly inside pill */
.vx-sbp-field--dest .dropdown-list {
    top: 100%;
    left: 0;
    z-index: 999;
}

/* Responsive */
@media (max-width: 720px) {
    .vx-searchbar-pill {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }
    .vx-sbp-divider { width: auto; height: 1px; margin: 0 12px; }
    .vx-sbp-swap    { width: auto; padding: 6px 16px; justify-content: flex-start; }
    .vx-sbp-field--narrow,
    .vx-sbp-field--dest { max-width: 100%; flex: 1; }
    .vx-sbp-search-btn {
        border-radius: 0 0 10px 10px !important;
        width: 100% !important;
        height: 50px !important;
    }
}
/* ══════════════════════════════════════════════════════════════════ */

.destination-dropdown {
    position: relative;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

    .dropdown-list div {
        padding: 10px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .dropdown-list div:hover {
            background-color: #f1f1f1;
        }

/* Booking result / map / filter containers */
.booking-result-container {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    background-color: #FAFAFC;
    border: 1px solid #bfbfbf;
    box-shadow: none;
    height: 150px;
    margin-top: 8px;
}

.booking-map-container {
    display: flex;
    border-radius: 10px;
    height: 215px;
    width: 250px;
    overflow: hidden;
    margin: 20px;
    margin-bottom: 0px;
    margin-left: 17px;
    margin-right: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #FAFAFC;
    min-width: 310px;
}

.booking-filters-container {
    display: block;
    border-radius: 10px;
    height: auto;
    width: 250px;
    overflow: hidden;
    margin: 20px;
    margin-top: 33px !important;
    margin-left: 17px;
    margin-right: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    min-width: 310px;
    padding-bottom: 31px;
}

/* Travel image card */
.travel-image-container {
    border-top-left-radius: 10px;
    overflow: hidden;
    height: fit-content;
    margin-right: 20px;
    outline: 1px auto #ededed;
    width: auto;
}

.travel-image {
    border-top-left-radius: 10px;
    overflow: hidden;
    height: 150px;
    width: 150px;
    padding: 20px;
}

.travel-image-small {
    border-top-left-radius: 10px;
    overflow: hidden;
    height: 50px;
    width: 50px;
    padding: 5px;
}

/* Travel property info */
#travel-container-property-type {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    padding-top: 10px;
    margin: 0px;
}

#travel-container-property-cost {
    color: #4882B3;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
    margin-left: 0px;
    padding-bottom: 0px;
    margin-top: -20px;
    margin-bottom: -20px;
}

#travel-container-property-size {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
}

/* Plus icon */
.plus-icon-bottom-travel {
    width: 25px;
    height: 25px;
    padding-left: 2px;
    margin-right: 21px;
    margin-top: -5px;
}

/* Flights page layout */
.travel-bookings-page-wrapper { /* flex row container for flights + filter panel */
}

.flights-filters-panel { /* right-side filter panel */
}

/* Booking form responsive */
@media (max-width: 1000px) {
    .booking-wrapper {
        position: relative;
        z-index: 1;
        background: white;
        width: 100%;
        max-width: 100% !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
    }

    .booking-form {
        background: white;
        width: 100% !important;
        box-sizing: border-box;
        height: auto !important;
        margin-right: 0 !important;
    }

    .travel-bookings-page-wrapper {
        flex-direction: column !important;
    }

    .flights-filters-panel,
    .vehicles-filters-panel,
    .accomodation-filters-panel,
    .shuttle-filters-panel {
        width: 100% !important;
        margin-right: 0 !important;
        margin-top: 20px !important;
    }

        .flights-filters-panel iframe,
        .vehicles-filters-panel iframe,
        .accomodation-filters-panel iframe,
        .shuttle-filters-panel iframe {
            width: 100% !important;
        }

    .booking-form .form-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        max-width: 100% !important;
        gap: 8px;
        padding: 10px;
    }

    .booking-form .form-group {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    .booking-form .form-row > div:last-child {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .travel-bookings-page-wrapper {
        flex-direction: column !important;
    }

    .flights-filters-panel,
    .vehicles-filters-panel,
    .accomodation-filters-panel,
    .shuttle-filters-panel {
        width: 100% !important;
        margin-right: 0 !important;
        margin-top: 20px !important;
    }

    .booking-form .form-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        max-width: 100% !important;
        gap: 8px;
        padding: 10px;
    }

    .booking-form .form-group {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    .booking-form .form-row > div:last-child {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Travel nav mobile scroll */
@media (max-width: 1250px) {
    .tabs .flight-timeline-outer {
        width: 100%;
    }

    .tabs .flight-timeline-wrapper {
        width: 100%;
        min-width: 0;
        cursor: default;
    }

        .tabs .flight-timeline-wrapper .travel-assistant-nav {
            flex-wrap: nowrap !important;
            width: max-content !important;
            min-width: max-content !important;
            margin-bottom: 0 !important;
            padding-bottom: 8px;
        }

        .tabs .flight-timeline-wrapper ul {
            min-width: max-content;
            display: flex;
            flex-wrap: nowrap;
            margin: 0;
        }
}

@media (max-width: 768px) {
    .tabs .flight-timeline-outer::after {
        display: block;
    }

    .tabs .flight-timeline-outer.scrolled-left::before {
        display: block;
    }

    .tabs .flight-timeline-wrapper ul {
        min-width: max-content;
        display: flex;
        flex-wrap: nowrap;
    }
}

.tabs .flight-timeline-wrapper {
    cursor: default;
}

.tabs .flight-timeline-outer::after,
.tabs .flight-timeline-outer::before {
    display: none;
}

.tabs .flight-timeline-wrapper .travel-nav-item,
.tabs .flight-timeline-wrapper .travel-nav-link,
.tabs .flight-timeline-wrapper .travel-nav-link * {
    user-select: none !important;
    -webkit-user-drag: none !important;
}

/* Booking form – flight scoped grid */
.booking-form--flight .booking-row {
    display: grid;
    align-items: end;
    gap: 14px 18px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.booking-form--flight .booking-action {
    width: 56px;
    justify-self: end;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-left: auto;
}

.booking-form--flight .booking-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

    .booking-form--flight .booking-group label {
        display: block;
        margin: 0;
        white-space: nowrap;
    }

    .booking-form--flight .booking-group input[type="text"],
    .booking-form--flight .booking-group input[type="number"],
    .booking-form--flight .booking-group input[type="date"],
    .booking-form--flight .booking-group textarea,
    .booking-form--flight .booking-group select {
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        padding: 10px 12px;
        line-height: 18px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: #fafafa;
        transition: all 0.2s ease-in-out;
    }

        .booking-form--flight .booking-group input:focus,
        .booking-form--flight .booking-group select:focus,
        .booking-form--flight .booking-group textarea:focus {
            outline: none;
            border-color: #007bff;
            background-color: #fff;
            box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
        }

.booking-form--flight .booking-action input.search-icon {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 8px;
}

.booking-form--flight .booking-row {
    display: grid !important;
    column-gap: 16px !important;
    row-gap: 12px !important;
}

@media (max-width: 992px) {
    .booking-form--flight .booking-row {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 767px) {
    .booking-form--flight .booking-row {
        grid-template-columns: 1fr;
    }

    .booking-form--flight .booking-action {
        width: 100%;
        justify-self: stretch;
    }

        .booking-form--flight .booking-action input.search-icon {
            width: 100% !important;
        }
}


/* ============================================================
   33. FLIGHT CARDS & TIMELINE
   ============================================================ */

/* Flight card responsive */
@media (max-width: 900px) {
    .flight-card-header h3 {
        font-size: 15px !important;
    }

    .flight-card-header p {
        font-size: 12px !important;
    }
}

@media (max-width: 600px) {
    .flight-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

        .flight-card-header h3 {
            font-size: 13px !important;
            padding-left: 5px !important;
            margin-top: 8px !important;
        }

        .flight-card-header p {
            font-size: 11px !important;
            padding-left: 5px !important;
        }

    .flight-card-actions {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .flight-card {
        position: relative;
    }
}

.travel-repeater-box {
    background-color: #FFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px;

}

/* Flight timeline outer */
.flight-timeline-outer {
    position: relative;
}

    .flight-timeline-outer::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 100%;
        background: linear-gradient(to right, transparent, #FAFAFC);
        pointer-events: none;
        z-index: 2;
    }

    .flight-timeline-outer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 100%;
        background: linear-gradient(to left, transparent, #FAFAFC);
        pointer-events: none;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .flight-timeline-outer.scrolled-left::before {
        opacity: 1;
    }

.no-fade::before,
.no-fade::after {
    background: none !important;
}

.flight-timeline-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

    .flight-timeline-wrapper::-webkit-scrollbar {
        display: none;
    }

/* Flight timeline track */
.flight-timeline {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    padding: 26px 26px 50px 26px;
    position: relative;
    min-width: max-content;
    justify-content: space-around;
}

    .flight-timeline::before {
        content: '';
        position: absolute;
        top: 170px;
        left: 0;
        right: 0;
        height: 2px;
        background: #D0D0D0;
        z-index: 0;
    }

/* Segment nodes */
.flight-segment-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 0 0 30px;
}

.flight-segment-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.flight-airline-name {
    font-size: 0.78em;
    color: #4A90D9;
    margin-top: 4px;
    margin-bottom: 10px;
    text-align: center;
}

.timeline-circle-blue {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4A90D9;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #4A90D9;
    flex-shrink: 0;
}

.timeline-circle-green {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4CAF50;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #4CAF50;
    flex-shrink: 0;
}

.segment-info {
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
}

.segment-route {
    font-weight: bold;
    font-size: 0.95em;
}

.segment-detail {
    color: #555;
    font-size: 0.82em;
    margin-top: 3px;
}

/* Connectors */
.flight-plane-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 4px;
}

.flight-duration-label {
    height: 110px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6px;
    font-size: 0.82em;
    color: #555;
    white-space: nowrap;
}

.plane-icon {
    font-size: 22px;
    color: #a6a5a5;
    height: 16px;
    display: flex;
    align-items: center;
}

.flight-layover-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 4px;
}

.hourglass-spacer {
    height: 110px;
}

.hourglass-icon {
    font-size: 14px;
    height: 16px;
    display: flex;
    align-items: center;
}

.layover-box {
    margin-top: 10px;
    background: #FFF8E1;
    border: 1px solid #FF9800;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.78em;
    color: #888;
    text-align: center;
    white-space: nowrap;
}

/* Destination node */
.flight-destination-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.destination-spacer {
    height: 110px;
}


/* ============================================================
   34. POS (POINT OF SALE)
   ============================================================ */

/* Categories */
.categories-container {
    margin: 12px;
}

.category-container {
    border-style: outset;
    border-radius: 13px;
    background-color: #FAFAFC;
    width: 100px;
    height: 115px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05), 0px 0px 3px rgba(225, 225, 225, 0.3);
    margin: 10px;
    display: inline-block;
    flex-direction: row;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.category-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px !important;
    height: 60px !important;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 20px;
}

.pos-category-image {
    width: 50px !important;
    height: 50px !important;
    display: block;
    margin-left: auto;
    margin-right: 12px;
    margin-bottom: 25px;
}

.pos-category-header a {
    display: block;
    text-align: center;
    font-size: 12.5px;
    font-weight: 800;
    color: inherit;
    padding: 0px;
}

/* Items */
.items-container {
    margin: 12px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.item-container {
    border-style: outset;
    border-radius: 13px;
    background-color: #FAFAFC;
    width: 150px;
    height: 220px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05), 0px 0px 3px rgba(225, 225, 225, 0.3);
    margin: 10px;
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 640px) {
    .item-container {
        max-width: 96%;
        min-width: 96%;
    }
}

.item-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
}

/* pos-item-image: first definition (compact) then overridden below */
.pos-item-image {
    height: 100px !important;
    object-fit: cover;
    margin-top: 10px !important;
}

/* Override: full card image */
.pos-item-image {
    width: 100%;
    max-width: 230px;
    height: 170px;
    object-fit: cover;
    background-color: darkslateblue;
    border-radius: 10px;
    margin-top: 15px;
}

.pos-item-header {
    display: block;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    padding-left: 6px;
    padding-top: 15px;
}

.item-description-container {
    display: block;
    text-align: left;
    font-size: 12.5px;
    line-height: 0.5;
    padding: 15px;
    padding-left: 7px;
}

@media (max-width: 640px) {
    .pos-item-header {
        padding-left: 25px;
    }

    .item-description-container {
        padding-left: 25px;
    }
}

/* Cart area */
.my-cart-area {
    display: flex;
    justify-content: flex-end;
    align-items: center !important;
    height: 50px;
    margin-bottom: -20px;
    margin-top: 0px;
}

#MainContent_btnBasket {
    width: 48px;
}

    #MainContent_btnBasket:hover {
        filter: brightness(1.2);
    }

        #MainContent_btnBasket:hover svg {
            filter: brightness(1.2) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
        }

.basket-count {
    border-color: #337ab7;
    background-color: #ececec;
    border: solid;
    border-width: 1.5px !important;
    border-radius: 5px;
    display: inline-block;
    height: 22px !important;
    min-height: 22px;
    width: 23px !important;
    min-width: 23px;
    text-align: center;
    line-height: 1.2;
    padding: 2px;
    padding-top: 2px;
    font-size: 13.5px !important;
    font-weight: bold;
}

.basket-subtotal {
    margin-left: 30px;
}

#pToolbars {
    Height: 80px;
    Width: 100%;
}

/* Item hover overlay */
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.item-container:hover .item-overlay {
    opacity: 1;
}

.plus-icon {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    user-select: none;
    pointer-events: none;
}

/* Add to cart bottom bar */
.add-to-cart-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4882B3;
    color: #FAFAFC;
    font-weight: 800;
    font-size: 14px;
    border-top: 1px solid #ccc;
    padding: 5.5px 12px;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: -4px;
}

    .add-to-cart-bottom:hover {
        background-color: #5B94C0;
        color: #FAFAFC;
        text-decoration: none;
    }

.plus-icon-bottom {
    width: 18px;
    height: 18px;
    font-size: 13px;
    font-weight: 600;
    color: #060518;
    padding-left: 2px;
}

/* Contracts */
.contract-items-container {
    margin: 12px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.contract-item-container {
    border-radius: 10px;
    background-color: #FAFAFC;
    width: 150px;
    height: 220px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05), 0px 0px 3px rgba(225, 225, 225, 0.3);
    margin: 10px;
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.contract-item-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
}

.contract-item-description-container {
    display: block;
    text-align: left;
    font-size: 12.5px;
    line-height: 0.5;
    padding: 15px;
}

/* Product panel */
.product_panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 5px;
    margin: 15px 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 10px;
    height: 80px;
}

    .product_panel > input[type="image"] {
        box-sizing: border-box;
        border-radius: 10px !important;
        padding: 0px;
    }

    .product_panel label {
        display: inline-block;
        width: 100px;
        height: 20px;
        line-height: 20px;
    }


/* ============================================================
   35. QUICK POS
   ============================================================ */

.my-cart-area-quick-pos {
    display: flex;
    justify-content: flex-end;
    align-items: center !important;
    height: 80px;
    margin-bottom: -20px;
}

ul.basket-items {
    width: 98.2%;
    margin-bottom: 20px;
    margin-top: -4px;
    padding-inline-start: 20px;
}

#MainContent_choose_details {
    margin-left: -12px;
}

span#MainContent_lbChange {
    text-align: left;
}

input#MainContent_btnAccept,
input#MainContent_btnStartSession,
input#MainContent_btnOpen,
input#MainContent_btnComplete {
    margin-right: 3px;
    padding-bottom: 5px;
}

.cash-up-icon-holder {
    display: flex;
    justify-content: flex-start;
    align-items: center !important;
    height: 50px;
    margin-bottom: -20px;
    padding-left: 10px;
    padding-top: 30px;
}

#MainContent_lbThanksNote {
    font-size: 12px;
}

.receipt-totals-left {
    text-align: left;
    padding-left: 23px;
}

.receipt-totals-right {
    text-align: right;
    padding-right: 23px;
}

.cashbox {
    border: 2px solid #333;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

#MainContent_btnOpenDrawer {
    margin-left: -3px;
}


/* ============================================================
   36. BAY GRID (Cargo Contract Form)
   ============================================================ */

.bay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 2px;
    align-items: center;
    margin: 0px;
    margin-left: -5px !important;
}

    .bay-grid .checkbox-cell {
        display: flex;
        align-items: center;
        justify-content: left;
        height: 30px;
        margin: 0px;
    }

    .bay-grid label {
        margin: 0 !important;
    }

    .bay-grid input[type="checkbox"] {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }


/* ============================================================
   37. STATE INDICATOR PANELS (Vehicle Monitor / Telematics)
   ============================================================ */

.current-state-global {
    width: 50px;
    height: 50px;
    border-radius: 10px 10px;
    gap: 0px;
    background-color: white !important;
}

.current-state {
    width: 50px;
    height: 50px;
    border-radius: 10px 10px;
    gap: 0px;
    background: white;
    padding: 12px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: -50px;
    border: solid 2px #06051896;
}

@media (min-width: 1381px) {
    .current-state {
        margin-left: -50px;
    }
}

@media (max-width: 1380px) {
    .current-state {
        margin-left: 0px !important;
        z-index: 1;
    }

    .vertical-line {
        display: none;
    }
}

/* State indicator main panel */
@media (min-width: 1381px) {
    .state-indicator-panel {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        align-items: center;
        justify-content: center;
        background-color: white;
        color: #FAFAFC;
        border-radius: 10px 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 14px;
        margin-left: 20px;
        margin-right: 10px;
        height: 70px;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    }
}

@media (max-width: 1380px) {
    .state-indicator-panel {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
        align-items: center;
        justify-content: center;
        background-color: white;
        color: #FAFAFC;
        border-radius: 10px 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 14px;
        margin-left: 10px;
        margin-right: 10px;
        height: auto;
        padding-bottom: 10px;
        justify-items: center;
        gap: 10px;
        overflow: hidden;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    }

        .state-indicator-panel > :first-child {
            grid-column: 1 / -1;
            justify-self: stretch;
        }
}

/* State indicator main image */
.state-indicator-main-image {
    background-color: steelblue;
    width: 70px;
    height: 100%;
    margin-left: -10px;
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;
}

@media (min-width: 1381px) {
    .state-indicator-main-image {
        width: 70px;
        height: 100%;
        margin-left: -10px;
        border-top-left-radius: 20%;
        border-bottom-left-radius: 20%;
    }
}

@media (max-width: 1380px) {
    .state-indicator-main-image {
        background-color: steelblue;
        width: 100%;
        height: 100%;
        margin-left: 0px;
        border-top-left-radius: 0%;
        border-bottom-left-radius: 0%;
    }
}

/* Vehicle image on mobile */
@media (max-width: 1178px) {
    img#img_vehicle {
        width: 100px;
        height: 100px;
        background: none;
        padding: 0px;
        margin: -10px !important;
        margin-bottom: -18px !important;
    }
}


/* ============================================================
   38. MAP COMPONENTS
   ============================================================ */

#map {
    position: relative;
}

/* Map state indicator panel */
/* map-state-indicator-panel: always 3 columns — main image | separator | icon grid.
   The HTML always has exactly 3 children:
     1. .map-main-cell        (steelblue image column)
     2. .map-separator-cell   (thin vertical line)
     3. .map-icon-grid        (icon cells) */
.map-state-indicator-panel {
    display: grid;
    grid-template-columns: 52px 6px 1fr;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    height: 88px;
    margin-bottom: 25px;
    overflow: hidden;
}

@media (min-width: 824px) {
    .map-state-indicator-panel {
        /* Keep 3-column structure — only adjust sizes */
        grid-template-columns: 52px 6px 1fr;
        height: 100px;
        margin-top: 0px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}

@media (max-width: 823px) {
    .map-state-indicator-panel {
        /* Narrow screens: shrink main column slightly, keep separator */
        grid-template-columns: 40px 6px 1fr;
        height: auto;
        padding-bottom: 10px;
        margin-top: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}

/* Map sidebar */
.map-sidebar-left > img:first-child {
    margin-right: 20px;
}

/* Map main cell */
.map-main-cell {
    position: relative;
    height: 100%;
}

/* Map state indicator main image */
.map-state-indicator-main-image {
    background-color: steelblue;
    width: 48px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-left: 0px;
}

@media (min-width: 1179px) {
    .map-state-indicator-main-image {
        width: 48px;
        height: 100%;
        margin-left: 0px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}

@media (max-width: 1178px) {
    .map-state-indicator-main-image {
        background-color: steelblue;
        width: 100%;
        height: 100%;
        margin-left: 0px;
        border-top-left-radius: 0%;
        border-bottom-left-radius: 0%;
    }
}

/* Map current state icon */
.map-current-state-global {
    width: 38px;
    border-radius: 10px;
    background: white !important;
    padding: 0;
    margin: 5px;
    height: 87px;
    gap: 0px;
    background-color: white !important;
}

.map-current-state {
    width: 32px;
    height: 32px;
    padding: 5px;
    border-radius: 10px;
    background: white;
    margin: 0;
    gap: 0px;
    border: solid 1px #06051896;
}

/* Map separator */
.map-separator-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-vertical-line {
    width: 2px;
    height: 60px;
    background-color: #bfc0c2;
    border-radius: 10px;
}

/* Icon grid */
.map-icon-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    padding-top: 1px;
    padding-left: 5px;
    align-content: flex-start;
}

.icon-cell {
    position: relative;
    width: 32px;
    height: 32px;
    margin: 2.5px;
}

.icon-visual {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 10px;
    border: 1px solid #06051896;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Clickable overlay (hitarea) */
.map-hitarea, .icon-hitarea {
    position: absolute;
    inset: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    display: block;
    z-index: 10;
    text-decoration: none;
    color: transparent;
}

a.icon-hitarea, a.map-hitarea {
    text-decoration: none !important;
}

/* Zoom in cell */
.map-zoom-in-cell {
    position: relative;
    right: 0.5px;
    width: 22px;
    height: 22px;
    z-index: 9999;
}

.map-zoom-in-icon-visual {
    width: 23px;
    height: 23px;
    background: white;
    border-radius: 10px;
    border: 1px solid #06051896;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-in-current-state {
    width: 23px;
    height: 23px;
    padding: 5.5px;
    border-radius: 10px;
    background: white;
    margin: 0;
}

.map-zoom-icon-hitarea {
    position: absolute;
    inset: 0;
    background: transparent !important;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    z-index: 10000;
    text-decoration: none;
    color: transparent;
}

    .map-zoom-icon-hitarea:hover {
        border: 0.05px solid !important;
        border-color: #767676;
        width: 23px;
        height: 23px;
        border-radius: 10px;
    }

.map-zoom-wrapper {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    height: 49px;
    gap: 2px;
    padding: 1.3px;
}


/* ============================================================
   39. TELEMATICS
   ============================================================ */

.telematics-identification-panel {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}


/* ============================================================
   40. CCTV
   ============================================================ */

.auto-width-cctv {
    max-width: 600px !important;
    min-width: 100px;
    height: auto;
    margin-top: 30px;
    margin-left: 0px;
}

#MainContent_vLiveCamera1 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 3px rgba(225, 225, 225, 0.3);
}


/* ============================================================
   41. VISITOR ACCESS FORM
   ============================================================ */

.visitor-access-form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

@media (min-width: 1027px) {
    .visitor-access-form-fields {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 827px) {
    .visitor-access-form-fields {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        padding-right: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 698px) {
    .visitor-access-form-fields {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding-right: 5px;
        margin-right: 0px;
    }
}

@media (max-width: 609px) {
    .visitor-access-form-fields {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        padding-right: 5px;
        margin-right: 0px;
    }
}

@media (min-width: 828px) {
    .visitor-access-ticket-buttons {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 0px;
        align-items: center;
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 827px) {
    .visitor-access-ticket-buttons {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        align-items: center;
        gap: 0px;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .visitor-access-ticket-buttons {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: max-content;
        gap: 0px;
        align-items: center;
        justify-content: center;
    }
}

.qr-and-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 490px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 530px) {
    .qr-and-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 250px;
        text-align: center;
        margin: 0 auto;
        padding: 20px;
        padding-bottom: 0px;
    }

    .info-alongside-qr {
        padding: 20px;
        padding-bottom: 0px;
    }
}


/* ============================================================
   42. INVOICE UPLOAD ANIMATION
   ============================================================ */

.invoice-upload-label {
    cursor: pointer;
    height: 38px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

    .invoice-upload-label:hover {
        background-color: #1CB26C;
        color: white;
    }

.invoice-loading-anim {
    display: inline-block;
    width: 180px;
    height: 32px;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #e8f5e9;
    vertical-align: middle;
}

    .invoice-loading-anim span {
        display: block;
        height: 100%;
        width: 40%;
        background: linear-gradient(90deg, #4CAF50, #81C784);
        border-radius: 4px;
        position: absolute;
        animation: invoiceSweep 1.2s ease-in-out infinite;
    }

@keyframes invoiceSweep {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* Reading label dots */
.reading-label {
    font-size: 13px;
    color: #4682b4;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 4px;
}

.reading-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4682b4;
    margin: 0 2px;
    vertical-align: middle;
    animation: readingBounce 1s ease-in-out infinite;
}

    .reading-dot:nth-child(2) {
        animation-delay: 0s;
    }

    .reading-dot:nth-child(3) {
        animation-delay: 0.2s;
    }

    .reading-dot:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes readingBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}


/* ============================================================
   43. DASHBOARD SIDEBAR
   ============================================================ */



.dashboard-sidebar-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: rgba(237, 236, 236, 0.95);
    border: 1px solid #d9d6d6;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    padding: 16px;
    z-index: 15;
    transition: transform 0.3s ease-in-out;
}

.hidden-dashboard-sidebar-right {
    transform: translateX(450px);
}

.dashboard-sidebar-collapse-button-right {
    position: absolute;
    top: 0;
    right: 410px;
    z-index: 20;
    border: 1px solid #ccc !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: right 0.3s ease, right 0.3s ease-in-out;
}


/* ============================================================
   44. MISCELLANEOUS SITE-SPECIFIC
   ============================================================ */

/* Collapsed menu link (aspNetDisabled) */
a.level1.aspNetDisabled.static,
a.level1.aspNetDisabled.static.highlighted {
    margin-top: -20px !important;
    padding: 0px !important;
    visibility: collapse;
}

/* Fuel management main buttons */
#MainContent_btnTankAdd,
#MainContent_btnTanksMobileAdd,
#MainContent_btnPumpAdd,
#MainContent_btnAddNozzle,
#MainContent_btnAutoStopAdd,
#MainContent_btnUserFuelTask {
    padding: 0px;
    margin-right: 10px;
}

/* Legacy override: dl-horizontal term wrap */
.dl-horizontal dt {
    white-space: normal;
}


/* ============================================================
   45. NAVBAR LOWER / ICON BAR
   ============================================================ */

.navbar-right-lower {
    height: 63px !important;
}

/* Navbar default (used by Bootstrap sub-menu) */
.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

    .navbar-default .navbar-brand {
        color: #777;
    }

        .navbar-default .navbar-brand:hover,
        .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
            background-color: transparent;
        }

    .navbar-default .navbar-text {
        color: #777;
    }

    .navbar-default .navbar-nav > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .disabled > a,
    .navbar-default .navbar-nav > .disabled > a:hover,
    .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-toggle {
    border-color: #ddd;
}

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #ddd;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #888;
    }

span.icon-bar {
    height: 2px !important;
    padding: 1.2px !important;
    background-color: #F2F2F2 !important;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

.navbar-default .navbar-link {
    color: #777;
}

    .navbar-default .navbar-link:hover {
        color: #333;
    }

.navbar-default .btn-link {
    color: #777;
}

    .navbar-default .btn-link:hover,
    .navbar-default .btn-link:focus {
        color: #333;
    }

    .navbar-default .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-default .btn-link:hover,
    .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc;
    }

.navbar-blue {
    background-color: #4882B3;
    border-style: none;
}


/* ============================================================
   46. BREADCRUMB & PAGINATION (used by gridviews)
   ============================================================ */

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            padding: 0 5px;
            color: #ccc;
            content: "/\00a0";
        }

    .breadcrumb > .active {
        color: #777777;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

            .pagination > li > a:hover,
            .pagination > li > span:hover,
            .pagination > li > a:focus,
            .pagination > li > span:focus {
                z-index: 2;
                color: #23527c;
                background-color: #eeeeee;
                border-color: #ddd;
            }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}


/* ============================================================
   47. TRAVEL ASSISTANT — CARD, ROW, ANIMATIONS, FLATICON
   ============================================================ */

:root {
    --blue: #377dff;
    --purple: #8023df;
    --red: #de4437;
    --yellow: #ffc107;
    --teal: #00c9a7;
    --cyan: #00dffc;
    --gray: #8c98a4;
    --gray-dark: #343a40;
    --primary: #297cbb;
    --secondary: #77838f;
    --success: #00c9a7;
    --info: #00dffc;
    --warning: #ffc107;
    --danger: #de4437;
    --light: #f8f9fa;
    --dark: #3b444f;
    --white: #fff;
    --indigo: #2d1582;
    --gray: #ebf0f7;
    --violet: #532184;
    --violet-1: #a864a8;
    --violet-light: #6f13cd;
    --brown-light: #ceac61;
    --brown: #f8bd5b;
    --maroon: #c72f74;
    --indigo-light: #080e7b;
    --red-light-2: #ff3c4e;
    --blue-dark-1: #045cff;
    --gray-1: #67747c;
    --gray-2: #f7f8f9;
    --gray-3: #3b444f;
    --gray-4: #eceff3;
    --blue: #43c5db;
    --blue-1: #297cbb;
    --gray-5: #18181b;
    --gray-6: #18181a;
    --gray-7: #5c6770;
    --gray-8: #c5cdd8;
    --gray-9: #9fa9b8;
    --gray-10: #c1c1c1;
    --gray-11: #484848;
    --gray-23: #f4f4f4;
    --gray-33: #ebf0f7;
    --sea-green: #1d508d;
    --dark-1: #1e2022;
    --navy: #0057ff;
    --pink: #ffe5ee;
    --dark-2: #1a2b49;
    --yellow-lighter-2: #f7bc5a;
    --orange: #f05700;
    --green: #28871c;
    --pink-1: #ff0045;
    --purple-1: #232753;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-wd: 1480px;
    --font-family-sans-serif: "Rubik", Helvetica, Arial, sans-serif;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.d-flex {
    flex-direction: column !important;
    width: 95px;
}

    .d-flex.flex-column.flex-md-row.position-relative.text-white.align-items-center {
        display: flex;
    }


.d-block {
    display: block !important;
}

@media (min-width: 768px) {
    .mr-md-3, .mx-md-3 {
        margin-bottom: 5px !important;
    }

    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }

    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

.align-items-end {
    align-items: flex-end !important;
}

.flex-column {
    flex-direction: column !important;
}

.travel-font-size-3 {
    font-size: 2rem;
}

.travel-container-description {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12.5px;
    margin-left: 0px;
    padding-right: 20px;
    margin-top: -18px;
    text-align: justify !important;
    height: 20px;
    overflow: clip;
}

/* Tab content system */
.tab-content {
    display: block !important;
}

.tab-pane {
    display: block !important;
}

.tab-content > .active {
    display: block;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-shadow {
    box-shadow: 0px 14px 50px 0px rgba(32, 32, 32, 0.15);
}

.border-0 {
    border: 0 !important;
}

/* Card component */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e7eaf3;
    border-radius: 0.3125rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}

/* Flaticon font support */
[class^="flaticon-"], [class*=" flaticon-"] {
    font-style: normal;
}

.flaticon-hotel:before, .flaticon-global-1:before, .flaticon-climbing:before,
.flaticon-home:before, .flaticon-sedan:before, .flaticon-yatch:before,
.flaticon-aeroplane:before {
    content: "\f104";
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
}

/* Icon circle styles (Travel nav active state) */
.tab-nav-rounded .travel-nav-link.active .icon::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -33px;
    left: 24px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

/* Travel nav item spacing */
.travel-assistant-nav .travel-nav-item:not(:last-child) {
    margin-right: .25rem;
    width: 100px;
}

.travel-assistant-nav .travel-nav-item:not(:first-child) {
    margin-left: .25rem;
}

/* Font Awesome icon colours for booking tabs */
.fa-calendar-alt, .fa-calendar-days {
    color: inherit;
}

.fa-map-marker-alt, .fa-location-dot {
    color: inherit;
}

.fa-user-friends, .fa-user-group {
    color: inherit;
}

.form-row > .fa-calendar-alt, .form-row > .fa-calendar-days,
.form-row > .fa-location-dot, .form-row > .fa-map-marker-alt,
.form-row > .fa-user-friends, .form-row > .fa-user-group {
    padding-left: 20px;
}

/* col grid helpers used in travel */
@media (min-width: 1200px) {
    .col-xl-3gdot5 {
        flex: 0 0 29.16667%;
        max-width: 29.16667%;
    }
}

[class*="gdot"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Animations */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 25%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Fade */
.fade {
    transition: opacity 0.15s linear;
}


/* ============================================================
   48. BOOKING FORM — FILTERS, COUNTERS, STARS, SLIDER
   ============================================================ */

/* noUiSlider (price slider) */
.noUi-tooltip {
    display: none !important;
}

.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.noUi-base, .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect, .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transform-origin: 0 0;
    transform-style: flat;
}

.noUi-handle {
    backface-visibility: hidden;
    position: absolute;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    transition: transform .3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

.noUi-horizontal {
    height: 4px !important;
}

.noUi-vertical {
    width: 18px;
}

.noUi-target {
    background: #B0B0B0 !important;
    border-radius: 4px !important;
    border: 0px !important;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB !important;
    position: relative;
}

.noUi-connects {
    border-radius: 3px;
}

.noUi-connect {
    background: #4882B3;
}

.noUi-draggable {
    cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}

.noUi-handle {
    border: 0px solid !important;
    border-radius: 50px !important;
    background: #FFF !important;
    cursor: default !important;
    box-shadow: none !important;
}

.noUi-horizontal .noUi-handle {
    width: 15px !important;
    height: 15px !important;
    right: -8px !important;
    top: -5px !important;
    border-radius: 50px !important;
    background-color: #4882B3 !important;
}

.noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

.noUi-pips, .noUi-pips * {
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: #999;
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}

.noUi-marker {
    position: absolute;
    background: #CCC;
}

.noUi-marker-sub {
    background: #AAA;
}

.noUi-marker-large {
    background: #AAA;
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}

.noUi-value-horizontal {
    transform: translate(-50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}

.noUi-value-vertical {
    transform: translate(0, -50%);
    padding-left: 25px;
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: -165%;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    background-color: #333;
    color: white;
    position: absolute;
    white-space: nowrap;
}

    .noUi-horizontal .noUi-tooltip::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #333 transparent;
    }

.noUi-vertical .noUi-tooltip {
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}

/* Price Slider */
.price-slider-container {
    padding: 10px 0;
    padding-bottom: 2px;
    padding-top: 5px;
    margin: 15px;
}

#price-slider {
    margin: 4px 0;
    padding-left: 5px;
    padding-right: 5px;
}

.price-output {
    margin-top: -10px !important;
    margin-bottom: 12px !important;
    font-weight: normal;
    text-align: left;
    font-size: 11px;
}

/* Rating stars */
.star-icon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(958%) hue-rotate(1deg) brightness(97%) contrast(97%);
    margin-top: -3px;
    cursor: default !important;
    margin-right: -2.5px;
}

/* Review score fill bars */
.review-score-container {
    max-width: 300px;
    font-family: sans-serif;
    margin-top: 18px;
}

.review-score {
    margin-bottom: 10px;
}

.review-label {
    color: #204059;
    font-style: normal;
    font-weight: 500;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 12.5px;
}

.bar {
    background-color: #eee;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.fill {
    height: 100%;
    background-color: #F28C28;
    width: 0;
    transition: width 0.4s ease;
}

/* Booking filters panel */
.bookings-filters-title {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 17px;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 10px;
    margin-bottom: -10px;
}

.bookings-filters-hotel {
    color: #204059;
    font-style: normal;
    font-weight: 800;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 20px;
    margin-bottom: -10px;
    font-size: 12.5px;
}

.bookings-filters-hotel-options-subheading {
    color: #204059;
    font-style: normal;
    font-weight: 500;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 10px;
    margin-bottom: -10px;
    font-size: 11px !important;
}

.bookings-filters-hotel-options {
    color: #204059;
    font-style: normal;
    font-weight: 500;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 12.5px;
}

    .bookings-filters-hotel-options input[type="checkbox"] {
        margin-top: -1px;
        vertical-align: middle;
    }

.bookings-filters-flight-options {
    color: #204059;
    font-style: normal;
    font-weight: 500;
    margin-left: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 12.5px;
}

/* Traveler counter */
.counter-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;
    padding-right: 20px;
}

.counter {
    display: flex;
    align-items: center;
    border: 0.1px solid #204059;
    border-radius: 10px;
    margin-left: 10px;
    width: auto;
    justify-content: space-between;
    padding: 0px;
    height: 30px;
}

    .counter button {
        background: none;
        border: none;
        font-size: 18px;
        color: #0073e6;
        cursor: pointer;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .counter span {
        font-size: 14px;
        font-weight: bold;
        min-width: 20px;
        text-align: center;
        line-height: 1;
    }

.counter-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #204059;
    min-width: 80px;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0px;
}

/* Litepicker calendar */
.litepicker {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8em;
    display: none;
    margin-top: 5px;
    margin-left: 10px;
}

    .litepicker .container__days .day-item.is-today {
        color: #F28C28 !important;
    }

.booking-form input[type="text"] {
    margin-right: 0px;
    padding-right: 10px;
    width: 100%;
}

.booking-filters-container > hr {
    margin-top: 29px !important;
}

/* Travel vehicle/accom info containers */
#vehicle-container-vehicle-class,
#vehicle-container-vehicle-description,
#vehicle-container-vehicle-doors,
#vehicle-container-vehicle-rental-company,
#vehicle-container-shuttle-rental-company,
#vehicle-container-shuttle-registration,
.container-additional-expenses,
.container-vouchers {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 13px;
    margin-left: 0px;
    padding-top: 5px;
    margin: 0px;
}

#vehicle-container-vehicle-class,
#vehicle-container-vehicle-colour,
#vehicle-container-vehicle-description {
    margin-bottom: -6px;
}

#travel-container-property-area {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 12.5px;
    margin-left: 0px;
    margin-top: -15px;
}

div#travel-container-property-distance {
    width: 15px;
    height: 15px;
    margin-top: -16px;
}

#travel-container-property-distance-from {
    display: flex;
    color: #97b1c4;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 13px;
    margin-left: 0px;
    padding-top: 5px;
    margin-top: -18px;
    flex-direction: row !important;
}

#travel-container-price {
    color: #4882B3;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
    margin-left: 0px;
    padding-bottom: 0px;
    margin-top: -20px;
    margin-bottom: -20px;
}

/* Flight container info */
div#flight-container-flight-duration {
    width: 15px;
    height: 15px;
    margin-top: -16px;
}

#flight-container-flight-destination {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 12.5px;
    margin-left: 0px;
    padding-right: 20px;
    margin-top: -18px;
    text-align: justify !important;
}

#flight-container-flight-departure-location {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 12.5px;
    margin-left: 0px;
    margin-top: -15px;
}

#flight-container-flight-class {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    margin-left: 0px;
    padding-top: 5px;
    margin: 0px;
}

#flight-container-flight-number {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    margin-left: 0px;
    padding-top: 10px;
    margin: 0px;
}

#vehicle-container-vehicle-number {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    margin-left: 0px;
    padding-top: 10px;
    margin: 0px;
}

#vehicle-container-vehicle-rental-company {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    margin-left: 0px;
    margin: 0px;
}


/* ============================================================
   49. GRAPHS / DASHBOARD WIDGETS (TravelManager, Telematics)
   ============================================================ */

.graphs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .graphs-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}

.defaultform .graphs-grid > .graph-card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-top: 3px solid #4882B3 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06) !important;
    padding: 16px 14px 12px !important;
    min-width: 0;
    margin: 0px;
}

.graph-card {
    border: 1px solid #e5e7eb;
    border-top: 3px solid #4882B3;
    padding: 16px 14px 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: box-shadow 0.18s ease;
}

.graph-card:hover {
    box-shadow: 0 6px 20px rgba(72,130,179,.12);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px;
}

.graph-title {
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #060518;
    margin-bottom: 2px;
    margin-top: 0;
}

.graph-subtitle {
    font-family: "lato", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #B0B0B0;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 1px;
    margin-bottom: 0;
}

.graph-host {
    width: 100%;
    min-height: 140px !important;
    margin-top: 0 !important;
}

.gauge-host {
    width: 100%;
    aspect-ratio: 2 / 1;
    min-height: 240px;
    max-width: 620px;
    margin-inline: auto;
}

.graph-card .gauge-host {
    font-size: 16px;
}

#myFillBar {
    width: 300px;
    height: 120px;
    margin: 0px;
}

/* Time range dropdown on graphs */
.time-range {
    width: 100px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 10px !important;
    padding: 5px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
}

option {
    font-weight: normal;
    display: block;
    padding-block-start: 0px;
    padding-block-end: 1px;
    min-block-size: 1.2em;
    padding-inline: 2px;
    white-space: nowrap;
    border-radius: 20px !important;
}

/* Custom time-range dropdown widget */
.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100px;
    margin-right: 13px;
}

.dropdown-btn {
    width: 100%;
    height: 30px;
    border-radius: 7px;
    border: 1.5px solid #d1d5db;
    background: #f9fafb;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "lato", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    padding: 0 10px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.dropdown-btn:hover {
    border-color: #4882B3;
    background: #fff;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 10px;
    right: 0px;
    width: 100px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    display: none;
    z-index: 10;
    padding-bottom: 20px;
}

    .dropdown-options li {
        padding: 5px 8px;
        cursor: pointer;
    }

        .dropdown-options li:first-child {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .dropdown-options li:last-child {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .dropdown-options li:hover {
            background-color: rgba(72,130,179,.08);
            color: #4882B3;
        }

        .dropdown-options li.selected {
            font-weight: 700;
            color: #484293;
            background-color: rgba(72,66,147,.06);
        }


/* ============================================================
   50. ICON CONTAINER & BADGE (Telematics / TravelManager)
   ============================================================ */

.icon-container {
    position: relative;
    display: inline-block;
}

.map-icon-container {
    position: relative;
    display: inline-block;
}

.icon-badge {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #DD0000;
    font-weight: bold;
    z-index: 10;
    background: white;
    padding: 0.01px 3px;
}

.map-icon-badge {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #DD0000;
    font-weight: bold;
    z-index: 10;
    background: white;
    padding: 0.01px 3px;
}

@media (min-width: 1381px) {
    .icon-badge {
        margin-left: -25px;
    }

    .map-icon-badge {
        margin-left: -25px;
    }
}

.icon-badge-unit-page {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #DD0000;
    font-weight: bold;
    z-index: 10;
    background: white;
    padding: 0.01px 3px;
}

@media (min-width: 1179px) {
    .icon-badge-unit-page {
        margin-left: -60px !important;
    }
}

/* State indicator image overrides for mobile */
@media (max-width: 1380px) {
    .state-indicator-main-image {
        position: relative;
        background-color: steelblue;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .state-indicator-main-image::after {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background-color: white;
            border-radius: 10px;
            z-index: 0;
        }

    .current-state-global {
        position: relative;
        z-index: 1;
    }
}


/* ============================================================
   51. MAP SIDEBARS & DASHBOARD SIDEBARS (Telematics/Travel)
   ============================================================ */

.telematics-map {
    width: auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    margin: 0px;
    margin-top: 20px;
    height: 1000px;
    overflow-x: hidden !important;
    position: relative;
}

.travel-map {
    width: auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    margin: 0px;
    height: 1000px;
    overflow-x: hidden !important;
    position: relative;
}

.dashboard-container-limits {
    width: auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    height: auto;
    min-height: 930px;
    overflow-x: hidden !important;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    position: relative;
}

#dashboard-sidebar-container {
    width: 100%;
    height: auto;
    position: relative;
}

/* Left sidebar */
.map-sidebar-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 98%;
    background: rgba(237, 236, 236, .9);
    border-right: 1px solid #ccc;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    padding: 16px;
    z-index: 10;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.dashboard-sidebar-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    min-height: 300px;
    background: rgba(237, 236, 236, .95);
    border: 1px solid #d9d6d6;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    padding: 16px;
    z-index: 15;
    border-radius: 10px;
    margin: 0px;
    margin-top: 0px;
    transition: transform 0.3s ease-in-out;
}

.hidden-dashboard-sidebar-left {
    transform: translateX(-402px);
    transition: transform 0.3s ease-in-out;
}

/* Right sidebar */
.map-sidebar-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 10;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

    .map-sidebar-right .map-sidebar-panel {
        background: rgba(255,255,255,0.9);
        border: 1px solid #ccc;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        border-radius: 10px;
        padding: 0px;
        flex: 0 0 auto;
    }

/* Sidebar panel headings */
.map-sidebar-panel > h3,
.map-sidebar-panel > p {
    padding-left: 16px;
    padding-top: 0px;
}

.map-sidebar-left > h3 {
    padding-left: 0px;
    margin-top: 0px;
}

.map-sidebar-left > h3,
.map-sidebar-panel > h3 {
    padding-top: 0px;
    font-size: 16px;
}

.map-sidebar-left > h5,
.map-sidebar-panel > h5 {
    padding-left: 16px;
}

/* Side panel images */
.map-unit-side-panel-image {
    padding: 15px;
    margin-top: -60px;
    margin-bottom: -70px;
    margin-left: -20px;
    margin-right: -15px;
}

.map-flight-side-panel-image {
    padding: 50px;
    padding-bottom: 75px;
    width: 220px;
    margin-top: -60px;
    margin-bottom: -70px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}

/* Hidden states */
.hidden-sidebar {
    transform: translateX(262px);
}

.hidden-sidebar-left {
    transform: translateX(-450px);
}

/* Sidebar collapse buttons */
.sidebar-collapse-button {
    position: absolute;
    top: 10px;
    right: 260px;
    z-index: 20;
    border: 1px solid #ccc !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: right 0.3s ease;
    background: rgba(255,255,255,0.9);
    line-height: 1;
    font-size: 10px;
    width: auto;
    height: auto;
}

.sidebar-collapse-button-left {
    position: absolute;
    top: 10px;
    left: 420px;
    z-index: 20;
    border: 1px solid #ccc !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: left 0.3s ease;
    background: rgba(255,255,255,0.9);
    line-height: 1;
    font-size: 10px;
    width: auto;
    height: auto;
}

.dashboard-sidebar-collapse-button-left {
    position: absolute;
    top: 0px;
    left: 410px;
    z-index: 20;
    border: 1px solid #ccc !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: left 0.3s ease;
    background-color: white;
}

.sidebar-collapsed-btn {
    right: -2px;
}

.sidebar-collapsed-btn-left {
    left: 0;
}

/* Button arrow labels */
.sidebar-right-button-arrows {
    margin: 2px;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -1px;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.sidebar-left-button-arrows {
    margin: 2px;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -1px;
    padding-left: 2px !important;
    padding-right: 4px !important;
}

/* Vertical separator line */
@media (min-width: 1381px) {
    .vertical-line {
        width: 0.5px;
        height: 40px;
        background-color: dimgray;
        border: none;
        margin: 0px;
    }
}


/* ============================================================
   52. FORM GRID & BACK-CONTROL (FlightForm, TelematicsUnit)
   ============================================================ */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group-forms {
    display: flex;
    flex-direction: column;
}

    .form-group-forms label {
        margin-left: 2px;
    }

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea,
.form-group select,
.form-group .aspNetDisabled {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fafafa;
    transition: all 0.2s ease-in-out;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #007bff;
        background-color: #fff;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
    }

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.defaultform.lower-main-container.form-grid {
    align-content: start;
}

/* Back-control form styling */
.back-top-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 12px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.back-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    padding: 12px;
}

    .back-card > label {
        display: block;
        font-weight: 700;
        color: #111827;
        font-size: 17px;
        margin-bottom: 6px;
        margin-left: 18px;
    }

.back-control {
    width: 90% !important;
    max-width: 95%;
    min-width: 95%;
    box-sizing: border-box;
    height: 36px;
    padding: 6px 10px;
}

.back-control-forms {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    height: 36px;
    padding: 6px 10px;
    margin-left: 0px;
}

.back-control-forms-label {
    font-weight: 700;
}

/* Collapsable filter grid */
.collapsable-filters-checkboxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 10px;
}


/* ============================================================
   53. TELEMATICS SPECIFIC STYLES
   ============================================================ */

.UnitBarTextLeft {
    font-weight: 700;
}

.lb-negative-margin {
    margin-top: -48px;
}

input#MainContent_btnUnitLogPreview,
input#MainContent_btnEmail2SMSPreview,
input#MainContent_btnTagUsagePreview {
    height: 50px;
    margin-top: 5px;
}

/* Telematics reports sub-menu */
@media (max-width: 619px) {
    div#MainContent_Menu_TelematicsReports {
        background: none;
    }
}

#MainContent_Menu_TelematicsReports a.static,
#MainContent_Menu_TelematicsUnit a.static {
    color: #4882B3;
    margin-left: -5px;
    font-weight: 700;
    margin-top:-2px;
}

@media (max-width: 619px) {
    #MainContent_Menu_TelematicsReports a.static,
    #MainContent_Menu_TelematicsUnit a.static {
        margin-left: 5px !important;
    }
}

#MainContent_Menu_TelematicsReports a.static:hover,
#MainContent_Menu_TelematicsUnit a.static:hover {
    color: #548fbf;
    margin-left: -5px;
    font-weight: 700;
}

@media (max-width: 619px) {
    #MainContent_Menu_TelematicsReports a.static:hover,
    #MainContent_Menu_TelematicsUnit a.static:hover {
        margin-left: 5px !important;
    }
}

#MainContent_Menu_TelematicsReports a.static.selected, #MainContent_Menu_TelematicsUnit a.static.selected {
    background-color: #EDECEC !important;
    color: #484293 !important;
    border-radius: 50px !important;
    height: 30px;
    margin-top: 5px;
    padding-top: 5px !important;
    border: solid 0.5px #48429370;
}

/* Item image shadow */
#MainContent_imgItemImage {
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
}

span#MainContent_lbDescription {
    font-size: 16px;
    font-family: inherit;
    width: 50%;
    height: 55px;
    text-align: right;
    padding-right: 0px;
    align-content: center;
    font-weight: 700;
}

/* Airline image */
.imgAirline {
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Add user array template */
.add-user-array-template {
    width: 100%;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #fafafc;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    padding: 30px;
}


/* ============================================================
   54. FIXES — MISSING & INCORRECT ITEMS
   ============================================================ */

/* Fix: Site.Master uses form#form_sitemaster not form1 */
form#form_sitemaster {
    position: relative;
    z-index: 2;
}

/* Remove the top gap by zeroing body padding-top */
body {
    padding-top: 0px;
}

/* ============================================================
   55. TOOLBAR PANEL (TelematicsManager, TelematicsUnit)
   ============================================================ */

/* toolbar-panel: the outer asp:Panel holding the toolbar-wrapper */
.toolbar-panel {
    width: 100%;
}

/* toolbar-wrapper-one-filter: used when only one filter button (no preview section) */
.toolbar-wrapper-one-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

/* pp-chart: placeholder panel for graph widget before JS renders it */
.pp-chart {
    width: 100%;
    min-height: 140px;
}

/* time-range-wrapper: wraps the custom time dropdown on graphs */
.time-range-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
}

/* filter-input: date inputs and textboxes inside filter panels */
.filter-input {
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 10px !important;
    padding: 5px 10px;
    background-color: #fff;
    font-size: 14px;
    width: auto;
    min-width: 140px;
}

/* dashboard-sidebar-content: the inner scrollable content of the right sidebar */
.dashboard-sidebar-content {
    overflow-y: auto;
    flex: 1;
}

/* dropdown-text: text label inside the custom dropdown button */
.dropdown-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

/* ============================================================
   56. FILTER CONTAINERS — COLUMN/DISPLAY/OPTIONS/UNITS VARIANTS
   ============================================================ */

/* These are filter container/panel variants that share the
   same base as .filters-container but are toggled separately */
.filters-container-columns,
.filters-container-display,
.filters-container-options,
.filters-container-units {
    background: #fff;
    border: 1px solid #c8cacd;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(6, 5, 24, 0.06);
    overflow: hidden;
}

/* toggle-filters variants — same style as toggle-filters */
.toggle-filters-columns,
.toggle-filters-units {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    padding-left: 8px !important;
    margin-top: 22px !important;
    cursor: pointer !important;
    padding-bottom: 10px !important;
    display: inline-flex !important;
    border-radius: 4px;
    transition: background 0.2s;
}


/* ============================================================
   57. TOOLTIP HOST (ExcelInvoiceImportForm)
   ============================================================ */

/* tooltip-host: wraps an image button + sidebar-tooltip span */
.tooltip-host {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    /* Show the tooltip on hover of the host */
    .tooltip-host:hover .sidebar-tooltip {
        visibility: visible;
        opacity: 1;
    }

/* li wrappers around tooltip-host buttons in ExcelInvoiceImportForm toolbar */
li#MainContent_li2,
li#MainContent_li1,
li#MainContent_li3,
li#li4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   58. BOOKING FORM — MISSING UTILITY CLASSES
   ============================================================ */

/* mt-2 / mt-md-0: Bootstrap spacing used on tab text spans in BookingForm */
.mt-2 {
    margin-top: 0.5rem !important;
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }
}

/* pb-md-4: bottom padding on the travel-assistant-nav in BookingForm */
@media (min-width: 768px) {
    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }
}

/* date-range-input: date picker input in BookingForm filters */
.date-range-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fafafa;
    font-size: 14px;
    box-sizing: border-box;
}

/* landmark-select: select dropdown in BookingForm accommodation */
.landmark-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fafafa;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('../Images/arrow.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
    box-sizing: border-box;
}

/* container-CompanyName, container-Documents etc. — booking result label containers */
.container-CompanyName,
.container-Documents,
.container-additional-expenses,
.container-invoices,
.container-vouchers {
    color: #204059;
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 13px;
    padding-top: 5px;
    margin: 0px;
}

/* booking-result-container: add top margin for Vehicle Rental repeater rows */
.booking-result-container + .booking-result-container {
    margin-top: 8px;
}

/* ============================================================
   59. VISITOR DISPLAY FORM — MOBILE FIXES
   ============================================================ */

/* VisitorDisplayForm uses visitor-access-form-fields + qr-and-info together. */
.visitor-access-form-fields.qr-and-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 490px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 530px) {
    .visitor-access-form-fields.qr-and-info {
        grid-template-columns: 1fr;
        width: auto;
        max-width: 300px;
        text-align: center;
        padding: 15px;
        padding-bottom: 0px;
    }

    .info-alongside-qr {
        padding: 15px;
        padding-bottom: 0px;
        text-align: left;
    }

    .visitor-access-form-fields.qr-and-info .form-group-forms {
        align-items: center;
    }
}

@media (max-width: 400px) {
    .visitor-access-form-fields.qr-and-info {
        max-width: 260px;
        padding: 10px;
    }
}

/* icon-button spacing on mobile for VisitorDisplayForm */
@media (max-width: 480px) {
    .icon-button {
        margin: 4px !important;
    }
}


/* ============================================================
   60. EXCEL INVOICE IMPORT — SEARCH/ACTION TOOLBAR
   ============================================================ */

/* The ExcelInvoiceImportForm uses .search-toolbar-container + .tooltip-host buttons. */
.nav.navbar-nav .tooltip-host {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ============================================================
   61. TELEMATICS LEFT SIDEBAR — ADDITIONAL FIXES
   ============================================================ */

/* The left sidebar in TelematicsManager overlays the map. */
.dashboard-sidebar-left {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

    .dashboard-sidebar-left h3 {
        padding-left: 0px;
        margin-top: 0px;
        font-size: 16px;
        padding-top: 0px;
    }

/* The right sidebar also needs scrolling */
.dashboard-sidebar-right {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Sidebar icons inside dashboard-sidebar-left */
.dashboard-sidebar-left .icon-container,
.dashboard-sidebar-left .map-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   62.  NAV FULL SYSTEM
   ============================================================ */

/* Core nav link rules — needed for ALL nav menus including hamburger */
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 5px;
}

    .nav > li > a:hover {
        position: relative;
        display: block;
        padding: 10px 5px;
    }

    .nav > li > a:hover,
    .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee;
    }

.nav > li.disabled > a {
    color: #777777;
}

    .nav > li.disabled > a:hover,
    .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent;
    }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7;
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.nav > li > a > img {
    max-width: none;
}

/* Nav tabs */
.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #eeeeee #eeeeee #ddd;
            }

        .nav-tabs > li.active > a,
        .nav-tabs > li.active > a:hover,
        .nav-tabs > li.active > a:focus {
            color: #555555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
        }

/* Nav pills */
.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 4px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #337ab7;
    }

/* Nav stacked */
.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

/* ul.nav.navbar-nav — remove default left padding */
ul.nav.navbar-nav {
    padding-left: 0px;
}

/* Navbar brand */
.navbar-brand {
    float: left;
    height: 50px;
    padding: 13px 15px;
    font-size: 18px;
    line-height: 20px;
    color: #9d9d9d;
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }

    .navbar-brand > img {
        display: block;
    }

/* Navbar toggle focus */
.navbar-toggle:focus {
    outline: 0;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

/* Navbar floating helpers — CRITICAL for hamburger layout */
.navbar-right {
    float: right !important;
    margin-right: 0px;
}

.navbar-left {
    float: left !important;
}

@media (min-width: 654px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0;
    }
}

/* .search class used on search ul in navheight containers */
.search {
    float: left !important;
}

/* Navbar text */
.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

/* Navbar btn */
.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

/* Navbar form */
.navbar-form {
    padding: 10px 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        box-shadow: none;
    }

        .navbar-form .form-group {
            display: inline-block;
            margin-bottom: 0;
            vertical-align: middle;
        }

        .navbar-form .form-control {
            display: inline-block;
            width: auto;
            vertical-align: middle;
        }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

        .navbar-form .form-group:last-child {
            margin-bottom: 0;
        }

    /* Mobile: open dropdown inside navbar goes static */
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

/* Dropdown nav */
.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* Navbar fixed positions */
.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 340px;
    }

@media (min-width: 768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

/* ============================================================
   63. BOOKINGFORM — TAB ICON CIRCLE (active state)
   ============================================================ */

/* The circle is formed by:
   - .fas { padding: 15px; border-radius: 50%; }  ← from Font Awesome rule
   - .selected { background-color: #484293 !important; }  ← from .selected rule
   - i.fas.tab-icon.selected { width/height/padding }  ← sizes the circle
   The .tab-icon.selected itself is intentionally empty in the original. */

/* i.fas.tab-icon.selected — legacy, kept for non-BookingForm pages */
i.fas.tab-icon.selected {
    width: 55px;
    height: 55px;
    padding-left: 25%;
    padding-right: 25%;
}

/* BookingForm circle active state overrides any legacy .selected rule */
.tab-circle--active i.fas {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    color: #fff !important;
    text-shadow: none !important;
}

/* The circle style in tab-nav-rounded active state */
.tab-nav-rounded .travel-nav-link.active .icon::before {
    border: 1px solid #297cbb;
    border-radius: 50%;
    padding: 14px;
    background-color: #297cbb;
}

/* ============================================================
   64. NAVHEIGHT CONTAINER — search + print/save layout
   ============================================================ */

.defaultform.nav.navbar-nav.padding_10.navheight {
    overflow: hidden; /* clearfix — contains the floated children */
}

    /* The inner asp:Panel / div that wraps both ul lists also needs to clear floats */
    .defaultform.nav.navbar-nav.padding_10.navheight > div {
        overflow: hidden;
        width: 100%;
    }

/* ============================================================
   65. ExcelInvoiceImportForm — tooltip host in navheight
   ============================================================ */

#MainContent_pInvoiceImporter {
    overflow: visible !important;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    padding-top: 20px;
}

@media (max-width: 1258px) {
    #MainContent_pInvoiceImporter {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (max-width: 928px) {
    #MainContent_pInvoiceImporter {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tooltip hover trigger — show the span on parent hover */
.tooltip-host:hover > .sidebar-tooltip {
    visibility: visible !important;
    opacity: 1 !important;
}

/* LEFT: Back + search pill + search icon */
.eii-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

/* RIGHT: icon buttons */
.eii-right {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}


    /* li server-visibility wrappers inside eii-right */
    .eii-right li {
        list-style: none;
        display: inline-flex;
        align-items: center;
    }


/* Force-stop — red variant not in Site.css */
.eii-btn-stop {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #FEF2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #DC2626;
    border: 1px solid #dc262685;
    transition: background 0.15s ease;
}

    .eii-btn-stop:hover {
        background: #fecaca;
        color: #991b1b;
    }

/* Tablet <=860px: search+buttons row 1, upload full-width row 2 */
@media (max-width: 860px) {
    .eii-toolbar {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .eii-left {
        grid-column: 1;
        grid-row: 1;
    }

    .eii-right {
        grid-column: 2;
        grid-row: 1;
    }

    .eii-center {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }
}



/* ── Upload label ─────────────────────────────────────────── */
.invoice-upload-label {
    cursor: pointer;
}

.invoice-loading-anim {
    display: inline-block;
    width: 180px;
    height: 32px;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #e8f5e9;
    vertical-align: middle;
}

    .invoice-loading-anim span {
        display: block;
        height: 100%;
        width: 40%;
        background: linear-gradient(90deg, #4CAF50, #81C784);
        border-radius: 4px;
        position: absolute;
        animation: invoiceSweep 1.2s ease-in-out infinite;
    }

@keyframes invoiceSweep {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

.reading-label {
    font-size: 13px;
    color: #4682b4;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 4px;
}

.reading-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4682b4;
    margin: 0 2px;
    vertical-align: middle;
    animation: readingBounce 1s ease-in-out infinite;
}

    .reading-dot:nth-child(2) {
        animation-delay: 0s;
    }

    .reading-dot:nth-child(3) {
        animation-delay: 0.2s;
    }

    .reading-dot:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes readingBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}
/* ============================================================
   66. HAMBURGER — ensure .collapse.show / .collapse.in works for main nav
   ============================================================ */

    /* When Bootstrap JS adds .in (open state on BS3) */
    .navbar-collapse.collapse.in {
        display: block !important;
        height: auto !important;
    }

    /* When Bootstrap JS adds .show (BS4+ compatibility) */
    .navbar-collapse.show,
    .navbar-collapse.collapse.show {
        display: block !important;
        height: auto !important;
    }

/* The filter-container empty state (was using generic .collapse) */
.filter-container:empty {
    height: 0;
    display: none;
}

/* ============================================================
   67. PULL-LEFT / PULL-RIGHT / CENTER-BLOCK helpers
   ============================================================ */

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.clearfix::after {
    display: table;
    content: " ";
    clear: both;
}

/* ============================================================
   68. BODY PADDING — correct value
   ============================================================ */

/* The logobar (brand) is in the flow (not fixed), so no top gap needed.
   The header div adds its own margin-bottom:19px.
   Override the 15px top padding that was for a fixed navbar. */
body {
    padding-top: 0 !important;
}

ul.nav.navbar-nav.navbar-right.navbar-right-lower {
    display: flex;
    justify-content: flex-end !important;
}

/* ============================================================
   68. TRAVEL MANAGER — MODERN STYLED COMPONENTS
   ============================================================ */
/* ============================================================
   68. TRAVEL MANAGER — MODERN STYLED COMPONENTS
   ============================================================ */
/* ============================================================
   68. TRAVEL MANAGER — MODERN STYLED COMPONENTS
   ============================================================ */

.tm-page {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
}

.tm-content-area {
    background-color: #fff;
    flex: 1;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Section headings ────────────────────────────────────── */
.tm-section-heading {
    font-family: "neo-sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin: 16px 12px 6px;
    padding: 0;
}

/* ── Alert bar ───────────────────────────────────────────── */
.tm-alert-bar {
    margin: 10px 10px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    overflow: hidden;
}

.tm-alert-bar .state-indicator-panel {
    margin-bottom: 0;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    background: #fff;
}

/* ── New vx-alert-bar ────────────────────────────────────── */
.vx-alert-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 10px;
    margin-top: 14px;
    box-shadow: 0 2px 8px rgba(6,5,24,0.06);
}

.vx-alert-globe {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    background: #484293;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

    .vx-alert-globe:hover {
        background: #3c3589;
        text-decoration: none;
    }

    .vx-alert-globe svg {
        width: 24px;
        height: 24px;
    }

.vx-alert-globe-count {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.vx-alert-divider {
    width: 0.5px;
    height: 44px;
    background: #e5e7eb;
    flex-shrink: 0;
}

.vx-alert-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

    .vx-alert-scroll::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }

    .vx-alert-scroll.is-dragging {
        cursor: grabbing;
    }

.vx-alert-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1.5px solid;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 56px;
    height: 60px;
    transition: border-color 0.15s, background 0.15s;
    text-decoration: none !important;
}

    .vx-alert-tile:hover,
    .vx-alert-tile *:hover {
        text-decoration: none !important;
    }

    .vx-alert-tile * {
        text-decoration: none !important;
    }

    .vx-alert-tile svg {
        width: 22px;
        height: 22px;
    }

.vx-tile-count {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

.vx-tile-label {
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

/* Normal state — grey */
.vx-tile-normal {
    background: #f9fafb;
    border-color: #e5e7eb;
    width: 70px;
    height: 60px;
}

    .vx-tile-normal svg {
        stroke: #6b7280;
    }

    .vx-tile-normal .vx-tile-count,
    .vx-tile-normal .vx-tile-label {
        color: #6b7280;
    }

    .vx-tile-normal:hover {
        background: #f0f2f5;
        border-color: #c8cacd;
    }

/* Alert state — red */
.vx-tile-alert {
    background: #fcebeb;
    border-color: #e24b4a;
}

    .vx-tile-alert svg {
        stroke: #e24b4a;
    }

    .vx-tile-alert .vx-tile-count,
    .vx-tile-alert .vx-tile-label {
        color: #a32d2d;
    }

    .vx-tile-alert:hover {
        background: #f7d5d5;
        border-color: #c73a39;
    }


.vx-alert-scroll a:hover,
.vx-alert-scroll a:focus,
.vx-alert-globe:hover,
.vx-alert-globe:focus {
    text-decoration: none !important;
    color: inherit !important;
}

.vx-alert-globe--map {
    width: 30px;
    height: 68px;
}

.vx-alert-tile.vx-tile-normal.vx-map-tile {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.vx-alert-wrap--map {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    flex-wrap: wrap;
}

.vx-map-tile svg {
    width: 17px;
}

.vx-tile-label--map {
    display: none;
}

/* Active filter state — blue selected tile */
.vx-tile-active {
    background: #eff6ff !important;
    border-color: #4882B3 !important;
    border-width: 2px !important;
}

.vx-tile-active svg {
    stroke: #185fa5 !important;
}

.vx-tile-active .vx-tile-count,
.vx-tile-active .vx-tile-label {
    color: #185fa5 !important;
}

/* Filter chip shown in page header when a filter is active */
.vx-filter-chip {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #185fa5;
    background: #eff6ff;
    border: 1.5px solid #4882B3;
    border-radius: 20px;
    padding: 3px 10px;
    line-height: 1.4;
}

/* ── Graph cards ─────────────────────────────────────────── */
.tm-page .graph-card {
    border: 1px solid #e5e7eb;
    border-top: 3px solid #4882B3;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    padding: 16px 14px 12px;
    background: #fff;
    transition: box-shadow 0.18s ease;
}

    .tm-page .graph-card:hover {
        box-shadow: 0 6px 20px rgba(72,130,179,.12);
    }

.tm-page .graph-title {
    font-family: "neo-sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #060518;
    margin: 0;
}

.tm-page .graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 0;
}

.tm-page .graphs-grid {
    margin: 0 10px 16px;
}

/* ── Map ─────────────────────────────────────────────────── */
.tm-page .travel-map {
    margin: 0 10px 10px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

/* ── Toolbar — no border, no shadow, just white bar ──────── */
.tm-content-area .defaultform.nav.navbar-nav.padding_10.navheight {
    background: #fff;
    border-radius: 0;
    margin: 12px 10px 0;
    border: none;
    padding: 0 10px !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    overflow: visible;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.tm-content-area .defaultform.nav.navbar-nav.padding_10.navheight > span,
.tm-content-area .defaultform.nav.navbar-nav.padding_10.navheight > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* ── Grid card — no border, shadow sits on the table itself ─ */
.tm-grid-card {
    margin: 0px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

/* Shadow and radius on the actual table, not the wrapper */
.tm-grid-card .gridview_default {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: none;
}

.tm-grid-card .headerRow {
    background-color: #6863af !important;
    color: #fff !important;
    font-family: "lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .tm-grid-card .columnheaderdefault {
        background-color: #6863af !important;
        color: #fff !important;
        padding: 10px !important;
    }

.tm-grid-card .oddRow  { background-color: #fafafc !important; }
.tm-grid-card .evenRow { background-color: #eef0f8 !important; }

.tm-grid-card .columndefault {
    font-family: "lato", sans-serif;
    font-size: 13.5px;
    color: #204059;
    padding: 8px 10px !important;
}

/* Row hover — no transition (prevents sticky colour bug) */
.tm-grid-card .gridview_default tr.oddRow:hover,
.tm-grid-card .gridview_default tr.evenRow:hover {
    background-color: #e8eaf6 !important;
    cursor: pointer;
}

.tm-grid-card .gridview_default tr.oddRow:hover td,
.tm-grid-card .gridview_default tr.evenRow:hover td {
    background-color: #e8eaf6 !important;
    color: #484293 !important;
}

/* Scrollable panel */
.tm-grid-card .scrollable-panel {
    border: none !important;
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
}

/* ── TOOLBAR: Add button + search pill ───────────────────── */

.tm-content-area .search-toolbar-container {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

/* Gap only between Add button and the search pill — not between pill and textbox */
.tm-content-area .search-toolbar-container > ul.nav.navbar-nav {
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    flex-shrink: 0;
}

.tm-content-area .search-toolbar-container > ul.nav.navbar-nav > li {
    list-style: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f0f1f8;
    border: none;
    border-radius: 8px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tm-content-area .search-toolbar-container > ul.nav.navbar-nav > li::before {
    content: "\f067";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
    font-weight: 900;
    font-size: 13px;
    color: #484293;
    pointer-events: none;
    transition: color 0.2s ease;
}

.tm-content-area .search-toolbar-container > ul.nav.navbar-nav > li:hover {
    background: #484293;
    box-shadow: 0 2px 8px rgba(72,66,147,.3);
}

.tm-content-area .search-toolbar-container > ul.nav.navbar-nav > li:hover::before {
    color: #fff;
}

/* Add image input — invisible overlay */
.tm-content-area .search-toolbar-container > ul.nav.navbar-nav > li input[type="image"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Search pill: purple button fused to textbox ─────────── */

/* The search ImageButton: purple left half of pill.
   The ImageUrl points to blank.png so no src image shows.
   We draw a white magnifier via background-image SVG. */
.tm-content-area .tm-search-btn,
.tm-content-area .search-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
    background-color: #484293 !important;
    border-radius: 20px 0 0 20px !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    /* hide any src image the browser tries to render */
    color: transparent !important;
    font-size: 0 !important;
    text-indent: -9999px !important;
    /* white magnifier SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 15px 15px !important;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.tm-content-area .tm-search-btn:hover,
.tm-content-area .search-icon:hover {
    background-color: #3a3478 !important;
}

/* Textbox — right half of pill, zero gap between it and the button */
.tm-content-area .searchbar-textbox {
    display: inline-flex !important;
    margin: 0 !important;
    border: 1.5px solid #d1d5db !important;
    border-left: none !important;
    border-radius: 0 20px 20px 0 !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    height: 36px !important;
    background: #f9fafb !important;
    color: #204059 !important;
    min-width: 180px;
    box-sizing: border-box;
    flex-shrink: 0;
    vertical-align: middle;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tm-content-area .searchbar-textbox:focus {
    border-color: #4882B3 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(72,130,179,0.12) !important;
    outline: none !important;
}

/* ── Print / Save buttons ────────────────────────────────── */
.tm-content-area .image-button-wrapper-print,
.tm-content-area .image-button-wrapper-save,
.tm-content-area .image-button-wrapper-save-all {
    background-image: none !important;
    background-color: #f0f1f8 !important;
    border: none !important;
    border-radius: 9px !important;
    width: 38px !important;
    height: 38px !important;
    margin: 4px 3px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.tm-content-area .image-button-wrapper-print:hover,
.tm-content-area .image-button-wrapper-save:hover,
.tm-content-area .image-button-wrapper-save-all:hover {
    background-color: #484293 !important;
    box-shadow: 0 3px 10px rgba(72,66,147,.3) !important;
}

.tm-content-area .image-button-wrapper-print::before {
    content: "\f02f";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
    font-weight: 900; font-size: 15px; color: #484293;
    pointer-events: none; transition: color 0.2s ease;
}
.tm-content-area .image-button-wrapper-save::before {
    content: "\f0c7";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
    font-weight: 900; font-size: 15px; color: #484293;
    pointer-events: none; transition: color 0.2s ease;
}
.tm-content-area .image-button-wrapper-save-all::before {
    content: "\f019";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
    font-weight: 900; font-size: 15px; color: #484293;
    pointer-events: none; transition: color 0.2s ease;
}
.tm-content-area .image-button-wrapper-print:hover::before,
.tm-content-area .image-button-wrapper-save:hover::before,
.tm-content-area .image-button-wrapper-save-all:hover::before {
    color: #fff;
}

.tm-content-area .invisible-image-button {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tm-content-area .inlinebutton {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.tm-content-area .navbar-right-lower {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}


/* ============================================================
   69. SIDEBAR LAYOUT — vx-root / vx-sidebar / vx-topbar
   ============================================================ */

/* Hidden server control tree — ViewState safe, invisible to users */
.vx-server-controls-hidden {
    display: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

/* ── Variables ───────────────────────────────────────────── */
:root {
    --vx-sidebar-w:    240px;
    --vx-sidebar-icon-w: 56px;  /* icon-only width on desktop collapsed */
    --vx-topbar-h:     52px;
    --vx-sidebar-bg:   #2d2b5e;
    --vx-sidebar-active: #484293;
    --vx-sidebar-hover:  rgba(255,255,255,0.08);
    --vx-topbar-bg:    #484293;
}

/* ── Root flex container ─────────────────────────────────── */
.vx-root {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.vx-sidebar {
    width: var(--vx-sidebar-w);
    background: var(--vx-sidebar-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
    /* Mobile: hidden off-screen by default */
    transform: translateX(calc(-1 * var(--vx-sidebar-w)));
    transition: transform 0.22s ease;
}

    .vx-sidebar::-webkit-scrollbar { width: 4px; }
    .vx-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* Desktop: icons always visible — sidebar starts as icon-only strip */
@media (min-width: 768px) {
    .vx-sidebar {
        transform: translateX(0);          /* always on screen */
        width: var(--vx-sidebar-icon-w);   /* icon-only by default */
        transition: width 0.22s ease;
    }

    /* When open on desktop, expand to full width */
    .vx-sidebar--open {
        width: var(--vx-sidebar-w);
    }

    /* Hide text labels, chevrons and subnav when icon-only */
    .vx-sidebar:not(.vx-sidebar--open) .vx-nav__link span,
    .vx-sidebar:not(.vx-sidebar--open) .vx-sidebar__footer span {
        display: none;
    }

    .vx-sidebar:not(.vx-sidebar--open) .vx-nav__chevron {
        display: none;
    }

    .vx-sidebar:not(.vx-sidebar--open) .vx-subnav {
        display: none !important;
    }

    /* Centre icons when collapsed — use full strip width */
    .vx-sidebar:not(.vx-sidebar--open) .vx-nav__item {
        margin: 0;
        border-radius: 0;
        position: relative;
    }
    .vx-sidebar:not(.vx-sidebar--open) .vx-nav__link {
        justify-content: center;
        padding: 7px 0;
        border-radius: 0;
    }
}

/* Mobile: slide in from left */
@media (max-width: 767px) {
    .vx-sidebar--open {
        transform: translateX(0);
    }
}

/* Nav list */
.vx-nav {
    list-style: none;
    margin: 8px 0;
    padding: 0;
    flex: 1;
}

.vx-nav__item {
    margin: 0px 6px 0;
    border-radius: 7px;
}

.vx-nav__link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 12px;
    color: rgba(255,255,255,0.78) !important;
    text-decoration: none !important;
    font-family: "lato", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

    .vx-nav__link i {
        display: flex;
        justify-content: center;
        width: 20px;
        font-size: 14px;
        flex-shrink: 0;
        text-align: center;
        opacity: 0.85;
        padding: 6px;
    }

    .vx-nav__link:hover {
        background: var(--vx-sidebar-hover) !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .vx-nav__link:hover i { opacity: 1; }

.vx-nav__item--active > .vx-nav__link {
    background: var(--vx-sidebar-active) !important;
    color: #fff !important;
}

    .vx-nav__item--active > .vx-nav__link i { opacity: 1; }

/* Logout */
.vx-nav__link--logout {
    color: rgba(255,255,255,0.55) !important;
    gap: 12px;
    padding: 10px 12px;
}

    .vx-nav__link--logout:hover {
        color: #ff8080 !important;
        background: rgba(255,100,100,0.1) !important;
    }

/* Sidebar footer */
.vx-sidebar__footer {
    flex-shrink: 0;
    padding: 12px 6px 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* .vx-sidebar__username removed — element no longer used */

/* ═══════════════════════════════════════════════════════════
   BODY — shifts right when sidebar open on desktop
   ═══════════════════════════════════════════════════════════ */
.vx-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    transition: margin-left 0.22s ease, width 0.22s ease;
    margin-left: 0;
}

/* Desktop: always offset by icon strip width */
@media (min-width: 768px) {
    .vx-body {
        margin-left: var(--vx-sidebar-icon-w);
        width: calc(100% - var(--vx-sidebar-icon-w));
    }

    .vx-body--sidebar-open {
        margin-left: var(--vx-sidebar-w);
        width: calc(100% - var(--vx-sidebar-w));
    }
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.vx-topbar {
    height: var(--vx-topbar-h);
    min-height: var(--vx-topbar-h);
    background: var(--vx-topbar-bg);
    display: flex !important;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

/* Hamburger — SVG based, clean lines */
/* Topbar hamburger hidden — moved to sidebar header */
.vx-topbar__hamburger {
    display: none;
}

/* Sidebar hamburger button */
.vx-sidebar__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    flex-shrink: 0;
    color: rgba(255,255,255,0.6);
    transition: background 0.15s ease, color 0.15s ease;
    padding: 0;
    margin: 0;
}

    .vx-sidebar__hamburger:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

/* Sidebar header row: hamburger + Navigation label side by side */
.vx-sidebar__header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: -2px;
    margin-top: 2px;
}

/* Logo in topbar */
.vx-topbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none !important;
}

.vx-topbar__logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
    padding-left: 10px;
}

/* Breadcrumb */
.vx-breadcrumb {
    flex: 1;
    font-family: "neo-sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 57%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 35px;
}

/* Breadcrumb separator and sub-item */
.vx-breadcrumb__sep {
    margin: 0 6px;
    opacity: 0.5;
}

.vx-breadcrumb__sub {
    opacity: 0.85;
}

/* Right actions */
.vx-topbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

/* Back button */
.vx-topbar__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .vx-topbar__back:hover { background: rgba(255,255,255,0.22); }

/* Username */
.vx-topbar__username {
    font-family: "lato", sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}

/* ── Suppress old header/nav that is now hidden ───────────── */
.app__container { display: contents; }
.app { min-height: unset; }


/* ── Sub-nav items injected below active parent ───────────── */
.vx-subnav {
    list-style: none;
    margin: 2px 0 4px 0;
    padding: 0;
}

.vx-subnav__item {
    margin: 0;
}

.vx-subnav__link {
    display: flex;
    align-items: center;
    padding: 7px 14px 7px 40px; /* indent under parent icon */
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    font-family: "lato", sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    border-radius: 6px;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    position: relative;
}

    .vx-subnav__link::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transition: background 0.15s ease;
    }

    .vx-subnav__link:hover {
        background: rgba(255,255,255,0.08) !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .vx-subnav__link:hover::before {
        background: rgba(255,255,255,0.7);
    }

/* Active sub-item highlight */
.vx-subnav__item--active > .vx-subnav__link {
    background: var(--vx-sidebar-active) !important;
    color: #fff !important;
    font-weight: 600;
}

    .vx-subnav__item--active > .vx-subnav__link::before {
        background: #fff;
    }


/* Hide horizontal sub-menus — sidebar has them now */
/* .menu-container / .menu-container-lower hidden via JS only when injected into sidebar */


/* ── Collapsible sub-nav chevron ─────────────────────────── */
.vx-nav__chevron {
    margin-left: auto;
    font-size: 9px !important;
    opacity: 0.45;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* When has children, parent link cursor is pointer for toggle */
.vx-nav__item--has-children > a.vx-nav__link {
    cursor: pointer;
}

/* vx-subnav hidden by default — JS toggles display */
.vx-subnav {
    display: none;
}

/* ── Sidebar collapse toggle button (Salesforce-style) ───── */
/* Sits at the bottom of the sidebar, always visible */
.vx-sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
    margin: 0 auto 16px;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.22s ease;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

    .vx-sidebar__toggle:hover {
        background: rgba(255,255,255,0.22);
        color: #fff;
    }

/* Arrow points LEFT when open (click to close), RIGHT when closed (click to open) */
.vx-sidebar__toggle i {
    transform: rotate(180deg); /* default: points right = expand */
    transition: transform 0.22s ease;
}
.vx-sidebar--open .vx-sidebar__toggle i {
    transform: rotate(0deg); /* when open: points left = collapse */
}

/* On mobile — the toggle button is inside the sidebar footer
   and the hamburger in the topbar handles open */
@media (max-width: 767px) {
    .vx-sidebar__toggle {
        display: none;
    }
}


/* Topbar logout button */
.vx-topbar__logout {
    display: flex;
    align-items: center;
    height: 28px;
    border-radius: 7px;
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.15s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.vx-topbar__logout-label {
    font-family: "lato", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: inherit;
}

    .vx-topbar__logout:hover {
        background: rgba(255,255,255,0.22);
        color: #fff !important;
        text-decoration: none !important;
    }

    .vx-topbar__logout i {
        font-size: 13px;
    }


/* ── Sidebar header: NAVIGATION title + divider ─────────── */
.vx-sidebar__header {
    padding: 8px 14px 0px;
    flex-shrink: 0;
}

.vx-sidebar__nav-title {

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    overflow: hidden;
    display: none; /* shown via ::after */
}

.vx-sidebar__hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 10px 0 2px;
    height: 0;
    padding: 0;
}

/* Sidebar nav title — "Navigation" when open, hidden when collapsed */
@media (min-width: 768px) {
    .vx-sidebar--open .vx-sidebar__nav-title {
        display: block;
    }
    .vx-sidebar--open .vx-sidebar__nav-title::after {
        content: 'Navigation';
    }
    .vx-sidebar:not(.vx-sidebar--open) .vx-sidebar__header {
        padding: 8px 6px 4px;
    }
    .vx-sidebar:not(.vx-sidebar--open) .vx-sidebar__header-row {
        justify-content: center;
    }
}


/* ── Breadcrumb navigable parent link ───────────────────── */
.vx-breadcrumb__link {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}

    .vx-breadcrumb__link:hover {
        color: #fff !important;
        text-decoration: underline !important;
    }

.vx-breadcrumb__sep {
    color: rgba(255,255,255,0.35);
    margin: 0 3px;
    font-size: 13px;
}

.vx-breadcrumb__sub {
    color: rgba(255,255,255,0.7);
}

.vx-breadcrumb__current {
    color: #fff;
    font-weight: 500;
}

/* ── Back / Print / Save action buttons ─────────────────── */
.vx-action-btn {
    display: inline-flex;
    align-items: center;
    height: 35px;
    padding: 19px 15px;
    padding-left: 5px;
    border: 2px solid #b8b8b9;
    border-radius: 7px;
    color: #374151;
    font-family: "neo-sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    flex-shrink: 0;
    text-decoration: none !important;
    margin-right: 0px;
    background: transparent;
}

    .vx-action-btn:hover {
        background: #f9fafb;
        border-color: #9ca3af;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        color: #111827;
    }

    .vx-action-btn i {
        font-size: 12px;
        color: #6b7280;
    }

    .vx-action-btn:hover i {
        color: #374151;
    }


/* ── Save button at bottom of form ──────────────────────── */
.vx-save-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px 0px;
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
}

/* ============================================================
   71. GLOBAL PAGE & FORM MODERNISATION
   ============================================================ */

/* Page content background */
.app__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fafafc;
    min-height: 100%;
    padding: 0;
    width: 100%;
    background-color: #fafafc;
}

/* ── Page header area (title + subtitle + action buttons) ─── */
.vx-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px;
}

.vx-page-header__left {}

.vx-page-header__title {
    font-family: "neo-sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0px;
    padding: 10px 0px;
    line-height: 1.2;
}

.vx-page-header__subtitle {
    font-family: "lato", sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.vx-page-header__actions {
    display: flex;
    align-items: center;

    flex-shrink: 0;
    padding-top: 4px;
}

/* ── Page header responsive behaviour ────────────────────── */
@media (max-width: 600px) {
    .vx-page-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .vx-page-header__left {
        flex: 1 1 100%; /* title takes the full first row */
    }

    .vx-page-header__actions {
        flex: 1 1 100%; /* buttons drop to a second row */
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 0;
        margin-left: -10px;
    }
}

@media (max-width: 380px) {
    .vx-page-header__actions {
        flex-direction: column; /* each button stacks vertically */
        align-items: stretch;
        margin-left:0px;
    }

    .vx-action-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0px;
    }
}

/* ── Form cards ───────────────────────────────────────────── */
.vx-card {
    background: #fff;
    border: 1px solid #c8cacd;
    border-radius: 10px;
    overflow: hidden;
}

.vx-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.vx-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.vx-card__icon--blue  { background: #eff6ff; color: #3b82f6; }
.vx-card__icon--amber { background: #fffbeb; color: #f59e0b; }
.vx-card__icon--green { background: #f0fdf4; color: #22c55e; }
.vx-card__icon--purple{ background: #f5f3ff; color: #8b5cf6; }

.vx-card__title {
    font-family: "lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111827;
}

.vx-card__subtitle {
    font-family: "lato", sans-serif;
    font-size: 12px;
    color: #79808b;
    margin-top: -2px;
}

.vx-card__body {
    padding: 20px;
}

/* ── Form field labels above inputs ───────────────────────── */
.vx-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.vx-field__label {
    font-family: "lato", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: -11px;
    margin-left: 3px;
}

.vx-field__hint {
    font-family: "lato", sans-serif;
    font-size: 11px;
    color: #79808b;
    margin-top: -9px;
    margin-left: 3px;
}

/* ── Add / primary action button (brand green-teal outlined) */
.vx-btn-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 7px;
    color: #484293;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    flex-shrink: 0;
    text-decoration: none !important;
    margin-bottom: 11px;
}

    .vx-btn-add:hover {
        background: #f5f3ff;
        color: #484293;
        text-decoration: none !important;
    }

/* Green variant — use wherever the add action relates to a "positive/new" context */
.vx-btn-add--green {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #E8F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
    color: #2F855A;
    border: #2f855a75 solid 1px;
    margin-bottom: 0px;
}

    .vx-btn-add--green:hover {
        background: #d0eddf;
        color: #2F855A;
    }

/* Toggle/collapse arrow — same shape as vx-btn-add--green but neutral grey */
.vx-btn-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
    color: #6b7280;
    border: #cbd5e0 solid 1px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    user-select: none;
    margin-bottom: 0px;
}

    .vx-btn-toggle:hover {
        background: #f3f4f6;
        color: #374151;
        border-color: #9ca3af;
    }

    /* Rotate the chevron when the panel is open */
    .vx-btn-toggle.open {
        color: #374151;
        background: #f3f4f6;
    }

    .vx-btn-toggle.open svg {
        transform: rotate(180deg);
    }

    .vx-btn-toggle svg {
        transition: transform 0.2s ease;
    }

/* Blue bar + old button bar hidden by JS — no CSS override needed */
/* groupbox_data_left.buttons_default hidden since JS replaces it */
.groupbox_data_left.buttons_default {
    display: none !important;
}


/* ── Form field modernisation ─────────────────────────────── */
/* Labels above inputs — small uppercase */
.form-group-forms label,
.form-group-forms .control-label {
    font-family: "lato", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    color: #6b7280 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

/* Inputs in form-group-forms */
.form-group-forms .back-control-forms,
.form-group-forms input[type="text"],
.form-group-forms input[type="number"],
.form-group-forms input[type="email"],
.form-group-forms select,
.form-group-forms textarea {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 38px !important;
    padding: 8px 12px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 7px !important;
    background: #fff !important;
    font-family: "lato", sans-serif !important;
    font-size: 13.5px !important;
    color: #111827 !important;
    box-sizing: border-box !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
    margin-left: 0px;
}

.form-group-forms .back-control-forms:focus,
.form-group-forms input:focus,
.form-group-forms select:focus,
.form-group-forms textarea:focus {
    outline: none !important;
    border-color: #484293 !important;
    box-shadow: 0 0 0 3px rgba(72,66,147,0.1) !important;
}

/* ============================================================
   72. VX TAB TOOLBAR — manager pages (TravelManager, etc.)
   ============================================================ */

/* Tables Outer wrapper */
.vx-tab-toolbar {
    display: flex;
    align-items: center;
    padding: 28px 16px 10px 0px;
    background: transparent;
    gap: 12px;
}

/* Left side: Add button + search */
.vx-tab-toolbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* Right side: Print / Save action buttons */
.vx-tab-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Search wrapper inside toolbar — pill containing textbox only */
.vx-tab-toolbar__search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #b8b8b9;
    border-radius: 8px;
    height: 38px;
    padding: 0 10px;
    max-width: 320px;
}

/* Hidden original search ImageButton — keep for postback, invisible */
.vx-search-icon {
    display: none !important;
}

/* Text input inside search pill */
.vx-searchbar {
    border: none !important;
    outline: none !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "lato", sans-serif !important;
    font-size: 13px !important;
    color: #111827 !important;
    background: transparent !important;
    min-width: 180px;
    box-shadow: none !important;
    line-height: 38px !important;
}

.vx-searchbar::placeholder {
    color: #9ca3af !important;
    font-style: normal !important;
}

/* Search trigger button — styled like vx-btn-add--green but steel-blue brand colour */
.vx-btn-search {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #E8EEF6; /* light steel-blue tint — brand #4882B3 at ~10% */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #4882B3; /* Steel Blue — primary action colour */
    border: #4882b385 1px solid; /* Steel Blue — about 50% transparancy */
    transition: background 0.15s ease;
}

.vx-btn-search:hover {
    background: #d2e0f0;
    color: #295171;
}

/* Edit button — amber/orange tint, conveys "modify existing" */
.vx-btn-edit {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #FFF3E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #D97706;
    border: #d9770685 1px solid;
    transition: background 0.15s ease, color 0.15s ease;
}

.vx-btn-edit:hover {
    background: #fde6b6;
    color: #b45309;
}

/* Generate button — indigo tint, conveys "process / build" */
.vx-btn-generate {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #EDE9FE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #5B21B6;
    border: #5b21b685 1px solid;
    transition: background 0.15s ease, color 0.15s ease;
}

.vx-btn-generate:hover {
    background: #ddd6fe;
    color: #4c1d95;
}

/* Print variant — slightly blue tint on hover */
.vx-action-btn--print:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
}

.vx-action-btn--print:hover i {
    color: #1d4ed8;
}

/* Spacing between icon and label inside action buttons */
.vx-action-btn i {
    margin-right: 6px;
}

.ci-orange {
    background: #FEF5EC;
}

.card-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.line-indicator-chart-header {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px;
}

.line-indicator-time-status-line {
    display: flex;
    justify-content: space-between;
}

.line-indicator-chart-status-text {
    font-size: 12px;
    margin-top: 3px;
    margin-left: 240px;
    margin-bottom: -20px;
    opacity: 0.75;
    margin-left: auto;
    margin-right: 15px;
    text-align: right;
}

.line-indicator-chart-time {
    font-size: 12px;
    margin-top: 3px;
    margin-left: 10px;
    margin-bottom: -20px;
    opacity: 0.75;
}

.line-indicator-chart-title {
    padding-top: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    margin-left: -10px;
}

div#graphDataGrid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))!important;
}
