/* BridgeERP - sitewide appearance layer (canvas + floating control).
 * Pairs with bridge-dark.css (generated from the site's own selectors).
 * Hand-maintained. Loaded on every page via website.custom_code_head. */

/* ---------------------------------------------------------------- canvas ---
 * The generated layer restyles components; this sets the page itself and the
 * handful of structural surfaces Odoo paints outside our class families. */
html[data-theme="dark"] {
  color-scheme: dark;
  --be-dk-bg: #0b1014;
  --be-dk-surface: #111a21;
  --be-dk-surface-2: #162028;
  --be-dk-text: #f7f9fb;
  --be-dk-muted: #9fb2c0;
  --be-dk-line: #22303a;
  --be-dk-brand: #8fbed6;
  background-color: var(--be-dk-bg);
}
html[data-theme="dark"] body,
html[data-theme="dark"] #wrapwrap,
html[data-theme="dark"] main,
html[data-theme="dark"] .oe_website_login_container {
  background-color: var(--be-dk-bg);
  color: var(--be-dk-text);
}
html[data-theme="dark"] section,
html[data-theme="dark"] .container,
html[data-theme="dark"] .container-fluid { background-color: transparent; }

html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3,
html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6,
html[data-theme="dark"] .h1, html[data-theme="dark"] .h2, html[data-theme="dark"] .h3 {
  color: var(--be-dk-text);
}
html[data-theme="dark"] p, html[data-theme="dark"] li, html[data-theme="dark"] span,
html[data-theme="dark"] td, html[data-theme="dark"] th, html[data-theme="dark"] label,
html[data-theme="dark"] dd, html[data-theme="dark"] dt { color: inherit; }
html[data-theme="dark"] .text-muted, html[data-theme="dark"] small { color: var(--be-dk-muted) !important; }

/* Bootstrap utility surfaces that are not in our class families. */
html[data-theme="dark"] .bg-white, html[data-theme="dark"] .bg-light,
html[data-theme="dark"] .bg-body, html[data-theme="dark"] .bg-100,
html[data-theme="dark"] .bg-200 { background-color: var(--be-dk-surface) !important; }
html[data-theme="dark"] .card, html[data-theme="dark"] .dropdown-menu,
html[data-theme="dark"] .modal-content, html[data-theme="dark"] .list-group-item,
html[data-theme="dark"] .accordion-item, html[data-theme="dark"] .accordion-button {
  background-color: var(--be-dk-surface);
  color: var(--be-dk-text);
  border-color: var(--be-dk-line);
}
html[data-theme="dark"] .accordion-button:not(.collapsed) { background-color: var(--be-dk-surface-2); }
html[data-theme="dark"] hr, html[data-theme="dark"] .border,
html[data-theme="dark"] .border-top, html[data-theme="dark"] .border-bottom,
html[data-theme="dark"] .border-start, html[data-theme="dark"] .border-end { border-color: var(--be-dk-line) !important; }

/* Form controls: Odoo/Bootstrap leave these white otherwise. */
html[data-theme="dark"] .form-control, html[data-theme="dark"] .form-select,
html[data-theme="dark"] input[type="text"], html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="tel"], html[data-theme="dark"] input[type="search"],
html[data-theme="dark"] input[type="number"], html[data-theme="dark"] textarea, html[data-theme="dark"] select {
  background-color: var(--be-dk-surface-2);
  color: var(--be-dk-text);
  border-color: var(--be-dk-line);
}
html[data-theme="dark"] .form-control::placeholder { color: var(--be-dk-muted); }
html[data-theme="dark"] .table { --bs-table-color: var(--be-dk-text); --bs-table-bg: transparent; }

/* Bootstrap/Odoo chrome the site does not own, so it is not in the generated
 * layer: the mobile off-canvas menu, offcanvas backdrop and cookie bar. */
html[data-theme="dark"] .offcanvas,
html[data-theme="dark"] .offcanvas-end,
html[data-theme="dark"] .offcanvas-start,
html[data-theme="dark"] .offcanvas-body,
html[data-theme="dark"] .offcanvas-header {
  background-color: var(--be-dk-surface) !important;
  color: var(--be-dk-text);
  border-color: var(--be-dk-line);
}
html[data-theme="dark"] .offcanvas .nav-link,
html[data-theme="dark"] .offcanvas a { color: var(--be-dk-text); }
/* Bootstrap nav links read their colour from a CSS variable, so overriding
 * `.nav-link` alone loses. Remap the variables (measured 1.19:1 on dark). */
html[data-theme="dark"] {
  --bs-nav-link-color: #f7f9fb;
  --bs-nav-link-hover-color: #8fbed6;
  --bs-navbar-color: #f7f9fb;
  --bs-navbar-hover-color: #8fbed6;
  --bs-navbar-active-color: #ffffff;
  --bs-emphasis-color: #f7f9fb;
  --bs-body-color: #f7f9fb;
  --bs-secondary-color: #9fb2c0;
}
html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .o_nav_link_btn,
html[data-theme="dark"] .navbar-nav .nav-link,
html[data-theme="dark"] .nav-link > span { color: #f7f9fb !important; }
html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link:focus { color: var(--be-dk-brand) !important; }
html[data-theme="dark"] .btn-close { filter: invert(1) grayscale(1) brightness(1.8); }

/* Odoo's keyboard "skip to content" link: brand-filled, so it needs white
 * text in both themes (the generated layer cannot know its background). */
html[data-theme="dark"] .o_skip_to_content,
html[data-theme="dark"] a.o_skip_to_content.btn { color: #ffffff !important; }

/* Stragglers found by auditing computed styles page by page in a browser.
 * Each one is here because it is painted somewhere the generator cannot
 * reach (translucent utility fills, or colour set on the element itself). */
html[data-theme="dark"] .card-body,
html[data-theme="dark"] .card-header,
html[data-theme="dark"] .card-footer { background-color: var(--be-dk-surface); color: var(--be-dk-text); }
html[data-theme="dark"] .contactus-support-availability,
html[data-theme="dark"] [class*="-availability"],
html[data-theme="dark"] [class*="-subtitle"],
html[data-theme="dark"] [class*="-caption"] { color: var(--be-dk-muted); }

/* Media must not be dimmed; logos on light plates get a gentle plate instead. */
html[data-theme="dark"] img[src*="logo"], html[data-theme="dark"] .navbar-brand img {
  background: transparent;
}

/* ------------------------------------------- light-mode contrast fixes ---
 * Measured with real WCAG ratios against the resolved background, page by
 * page. Only genuine AA failures are corrected, each darkened along its own
 * hue so the brand still reads the same. White text over the dark navy hero
 * gradients measured ~8:1 and is deliberately left alone.
 * Scoped to light so the dark layer keeps its own (already-AA) values. */
/* DELIBERATELY NOT FIXED: the brand orange #e59e34 used as 16px text misses
 * AA on white (4.28:1 vs 4.5). Darkening it globally was tried and reverted -
 * the same `.text-o-color-2` class is also used on dark bands, where the
 * darkened orange measured 2.04:1, i.e. far worse than the problem it solved.
 * CSS cannot tell the two contexts apart, so this needs a per-instance
 * decision (or a second class for on-dark use). Flagged, not guessed at. */
html:not([data-theme="dark"]) .bridge-price-note,
html:not([data-theme="dark"]) .bridge-cta-note,
html:not([data-theme="dark"]) .bridge-pricing-note,
html:not([data-theme="dark"]) .bridge-section-subtitle,
html:not([data-theme="dark"]) .bridge-text-lighter {
  color: #6d7378;              /* was #80868b - 3.68:1 -> 4.8:1; still passes
                                  on the site's off-white section fills */
}
html:not([data-theme="dark"]) .bridge-toggle-badge,
html:not([data-theme="dark"]) .bridge-save-badge {
  color: #0d884c;              /* was #0f9d58 - 3.51:1 -> 4.52:1 */
}
/* the same greys reached through the site's own variables */
html:not([data-theme="dark"]) {
  --bridge-text-lighter: #6d7378;
  --bridge-text-light: #6d7378;
}

/* ------------------------------------------------------- appearance FAB ---
 * Bottom-LEFT on purpose: the live chat bubble and the contact dock both sit
 * bottom-right, so this never collides with them. */
.be-appearance { position: fixed; left: 20px; bottom: 20px; z-index: 2147483000;
  font-family: inherit; }
.be-appearance__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #114966 0%, #0d3a52 100%);
  box-shadow: 0 10px 28px -8px rgba(11, 16, 20, .55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.be-appearance__btn:hover { transform: scale(1.06); }
.be-appearance__btn:focus-visible { outline: 3px solid #f89d14; outline-offset: 3px; }
.be-appearance__btn svg { width: 22px; height: 22px; }

.be-appearance__panel {
  position: absolute; left: 0; bottom: 60px; width: 236px; padding: 14px;
  background: #fff; color: #0f172a; border: 1px solid #e2e8f0; border-radius: 16px;
  box-shadow: 0 24px 60px -24px rgba(11, 16, 20, .45);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.be-appearance.is-open .be-appearance__panel { opacity: 1; visibility: visible; transform: none; }
html[data-theme="dark"] .be-appearance__panel { background: #111a21; color: #f7f9fb; border-color: #22303a; }

.be-appearance__title { font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin: 0 0 10px; color: #64748b; }
html[data-theme="dark"] .be-appearance__title { color: #9fb2c0; }

.be-appearance__opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.be-appearance__opt {
  display: grid; place-items: center; gap: 4px; padding: 9px 4px; cursor: pointer;
  font-size: 12px; font-weight: 600; border-radius: 10px; background: transparent;
  border: 1px solid #e2e8f0; color: #0f172a; min-height: 56px;
}
html[data-theme="dark"] .be-appearance__opt { border-color: #22303a; color: #f7f9fb; }
.be-appearance__opt:hover { border-color: #114966; }
.be-appearance__opt.is-active { background: #114966; border-color: #114966; color: #fff; }
html[data-theme="dark"] .be-appearance__opt.is-active { background: #8fbed6; border-color: #8fbed6; color: #0b1014; }
.be-appearance__opt svg { width: 17px; height: 17px; }

@media (prefers-reduced-motion: reduce) {
  .be-appearance__btn, .be-appearance__panel { transition: none; }
}
@media print { .be-appearance { display: none; } }
/* Dark remap of the site's own CSS custom properties (461 discovered,
 * 233 remapped, 228 left alone as brand/shadow/ambiguous). */
html[data-theme="dark"]{
  --pink: #f7f9fb;
  --white: #111a21;
  --gray: #9fb2c0;
  --gray-dark: #f7f9fb;
  --header-sales_four: #111a21;
  --header-sales_three: #111a21;
  --header-sales_two: #f7f9fb;
  --header-sales_one: #111a21;
  --menu: #111a21;
  --gray-100: #162028;
  --gray-200: #162028;
  --gray-300: #162028;
  --gray-400: #9fb2c0;
  --gray-500: #9fb2c0;
  --gray-600: #9fb2c0;
  --gray-700: #f7f9fb;
  --gray-800: #f7f9fb;
  --gray-900: #f7f9fb;
  --gray-black: #9fb2c0;
  --gray-white: #111a21;
  --light: #111a21;
  --dark: #f7f9fb;
  --light-text-emphasis: #9fb2c0;
  --dark-text-emphasis: #f7f9fb;
  --primary-bg-subtle: #0e161c;
  --secondary-bg-subtle: #111a21;
  --success-bg-subtle: #111a21;
  --info-bg-subtle: #111a21;
  --warning-bg-subtle: #111a21;
  --danger-bg-subtle: #111a21;
  --light-bg-subtle: #111a21;
  --dark-bg-subtle: #0e161c;
  --light-border-subtle: #22303a;
  --dark-border-subtle: #22303a;
  --body-color: #f7f9fb;
  --body-bg: #111a21;
  --emphasis-color: #f7f9fb;
  --secondary-bg: #111a21;
  --tertiary-bg: #111a21;
  --link-color: #f7f9fb;
  --link-hover-color: #f7f9fb;
  --highlight-color: #f7f9fb;
  --highlight-bg: #111a21;
  --form-valid-border-color: #22303a;
  --form-invalid-border-color: #22303a;
  --border-color: #22303a;
  --table-color: #f7f9fb;
  --table-bg: #0e161c;
  --table-border-color: #22303a;
  --table-striped-color: #f7f9fb;
  --table-active-color: #f7f9fb;
  --table-hover-color: #f7f9fb;
  --form-check-bg: #111a21;
  --dropdown-bg: #111a21;
  --dropdown-link-active-color: #f7f9fb;
  --dropdown-color: #111a21;
  --dropdown-link-color: #f7f9fb;
  --dropdown-link-hover-color: #f7f9fb;
  --dropdown-link-disabled-color: #f7f9fb;
  --nav-pills-link-active-color: #f7f9fb;
  --nav-pills-link-active-bg: #0e161c;
  --card-bg: #111a21;
  --accordion-active-color: #f7f9fb;
  --accordion-active-bg: #111a21;
  --pagination-color: #f7f9fb;
  --pagination-bg: #111a21;
  --pagination-hover-color: #f7f9fb;
  --pagination-hover-bg: #111a21;
  --pagination-hover-border-color: #22303a;
  --pagination-focus-color: #f7f9fb;
  --pagination-focus-bg: #111a21;
  --pagination-active-color: #111a21;
  --pagination-active-bg: #0e161c;
  --pagination-active-border-color: #22303a;
  --pagination-disabled-bg: #111a21;
  --badge-color: #111a21;
  --progress-bar-color: #111a21;
  --progress-bar-bg: #0e161c;
  --list-group-bg: #111a21;
  --list-group-disabled-bg: #111a21;
  --list-group-active-color: #111a21;
  --list-group-active-bg: #0e161c;
  --list-group-active-border-color: #22303a;
  --btn-close-color: #f7f9fb;
  --modal-bg: #111a21;
  --backdrop-bg: #0e161c;
  --popover-bg: #111a21;
  --bg-light: #111a21;
  --color-light: #f7f9fb;
  --btn-color: #111a21;
  --btn-bg: #0e161c;
  --btn-border-color: #22303a;
  --btn-hover-color: #111a21;
  --btn-hover-bg: #0e161c;
  --btn-hover-border-color: #22303a;
  --btn-active-color: #111a21;
  --btn-active-bg: #0e161c;
  --btn-active-border-color: #22303a;
  --btn-disabled-bg: #0e161c;
  --btn-disabled-border-color: #22303a;
  --notebook-link-border-color-hover: #22303a;
  --black: #f7f9fb;
  --bg-solid: #0e161c;
  --bg-solid-contrast: #111a21;
  --bg-light-contrast: #0e161c;
  --Notification__background-color: #111a21;
  --LocationSelectorMarker-border-color: #22303a;
  --LocationSelectorMarker-background: #111a21;
  --LocationSelectorMarker-color: #f7f9fb;
  --wd-bg-dark: #0e161c;
  --wd-bg-light: #0e161c;
  --wd-text: #f7f9fb;
  --wd-text-muted: #9fb2c0;
  --wd-border: #22303a;
  --wd-assistant-msg: #f7f9fb;
  --NavBar-entry-color--active: #f7f9fb;
  --NavBar-entry-borderColor-active: #22303a;
  --NavBar-entry-backgroundColor--active: #111a21;
  --NavBar-entry-backgroundColor--hover: #111a21;
  --NavBar-entry-backgroundColor--focus: #111a21;
  --tabs-bg-color: #111a21;
  --tabs-link-color: #f7f9fb;
  --berp-white: #111a21;
  --berp-light: #111a21;
  --berp-gray: #9fb2c0;
  --berp-text: #f7f9fb;
  --berp-text-light: #9fb2c0;
  --bridge-light-bg: #111a21;
  --bridge-white: #111a21;
  --bridge-gray: #9fb2c0;
  --bridge-light-gray: #162028;
  --bridge-dark: #f7f9fb;
  --bridge-border: #22303a;
  --text-dark: #f7f9fb;
  --text-gray: #f7f9fb;
  --text-muted: #9fb2c0;
  --bg-white: #111a21;
  --border-light: #22303a;
  --bridge-text-light: #9fb2c0;
  --bridge-bg-primary: #111a21;
  --bridge-bg-secondary: #111a21;
  --bridge-bg-light: #111a21;
  --rpos-text-light: #9fb2c0;
  --rpos-bg-primary: #111a21;
  --rpos-bg-secondary: #111a21;
  --rpos-bg-alt: #111a21;
  --rpos-border: #22303a;
  --pos-text-dark: #f7f9fb;
  --pos-text-light: #9fb2c0;
  --pos-bg-light: #111a21;
  --pos-white: #111a21;
  --bridgeerp-gray-50: #162028;
  --bridgeerp-gray-200: #162028;
  --bridgeerp-gray-500: #9fb2c0;
  --bridgeerp-gray-600: #9fb2c0;
  --bridgeerp-white: #111a21;
  --sales-features-text-dark: #f7f9fb;
  --sales-features-text-light: #9fb2c0;
  --sales-features-bg-light: #111a21;
  --sales-features-white: #111a21;
  --sales-text-dark: #f7f9fb;
  --sales-text-light: #9fb2c0;
  --sales-bg-light: #111a21;
  --sales-white: #111a21;
  --bridge-spreadsheet-features-neutral-50: #162028;
  --bridge-spreadsheet-features-neutral-100: #162028;
  --bridge-spreadsheet-features-neutral-200: #162028;
  --bridge-spreadsheet-features-neutral-300: #162028;
  --bridge-spreadsheet-features-neutral-400: #9fb2c0;
  --bridge-spreadsheet-features-neutral-500: #9fb2c0;
  --bridge-spreadsheet-features-neutral-600: #9fb2c0;
  --bridge-spreadsheet-features-neutral-700: #f7f9fb;
  --bridge-spreadsheet-features-neutral-800: #f7f9fb;
  --bridge-spreadsheet-features-neutral-900: #f7f9fb;
  --bridge-spreadsheet-features-white: #111a21;
  --bridge-spreadsheet-neutral-50: #162028;
  --bridge-spreadsheet-neutral-100: #162028;
  --bridge-spreadsheet-neutral-200: #162028;
  --bridge-spreadsheet-neutral-300: #162028;
  --bridge-spreadsheet-neutral-400: #9fb2c0;
  --bridge-spreadsheet-neutral-500: #9fb2c0;
  --bridge-spreadsheet-neutral-600: #9fb2c0;
  --bridge-spreadsheet-neutral-700: #f7f9fb;
  --bridge-spreadsheet-neutral-800: #f7f9fb;
  --bridge-spreadsheet-neutral-900: #f7f9fb;
  --bridge-spreadsheet-white: #111a21;
  --bridge-neutral-50: #162028;
  --bridge-neutral-100: #162028;
  --bridge-neutral-200: #162028;
  --bridge-neutral-300: #162028;
  --bridge-neutral-400: #9fb2c0;
  --bridge-neutral-500: #9fb2c0;
  --bridge-neutral-600: #9fb2c0;
  --bridge-neutral-700: #f7f9fb;
  --bridge-neutral-800: #f7f9fb;
  --bridge-neutral-900: #f7f9fb;
  --neutral-50: #162028;
  --neutral-100: #162028;
  --neutral-200: #162028;
  --neutral-300: #162028;
  --neutral-400: #9fb2c0;
  --neutral-500: #9fb2c0;
  --neutral-600: #9fb2c0;
  --neutral-700: #f7f9fb;
  --neutral-800: #f7f9fb;
  --neutral-900: #f7f9fb;
  --bridge-features-background: #111a21;
  --bridge-features-surface: #111a21;
  --bridge-features-border: #22303a;
  --bridge-accounting-background: #111a21;
  --bridge-accounting-surface: #111a21;
  --bridge-accounting-border: #22303a;
  --bridge-text: #f7f9fb;
  --bridge-text-lighter: #9fb2c0;
  --bridge-bg: #111a21;
  --industries-gray-50: #162028;
  --industries-gray-100: #162028;
  --industries-gray-200: #162028;
  --industries-gray-300: #162028;
  --industries-gray-400: #9fb2c0;
  --industries-gray-500: #9fb2c0;
  --industries-gray-600: #9fb2c0;
  --industries-gray-700: #f7f9fb;
  --industries-gray-900: #f7f9fb;
  --bridgeerp-light-bg: #111a21;
  --bridgeerp-text-gray: #f7f9fb;
  --bridgeerp-light-gray: #162028;
  --website-text: #f7f9fb;
  --website-text-light: #9fb2c0;
  --website-text-lighter: #9fb2c0;
  --website-border: #22303a;
  --website-bg: #111a21;
  --website-bg-light: #111a21;
}
/* BridgeERP sitewide dark layer - GENERATED, do not hand-edit.
 * Source: live web.assets_frontend.min.css
 * 1136 rules generated from the site's own selectors.
 * Regenerate with build_dark_layer.py after any theme change. */
html[data-theme="dark"] .o-EmojiPicker-search input:not(:focus) + .oi-search{color:rgba(247, 249, 251, 0.7)}
html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item.active, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item.active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item.active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item.active, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item.active, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item.active, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item.active, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item.active, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item:active, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item:active, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item:active, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item:active, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item:active, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item:active, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item h6.active, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item h6.active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item h6.active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item h6.active, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item h6.active, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item h6.active, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item h6.active, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item h6.active, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item .active.h6, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item .active.h6, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item .active.h6, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item .active.h6, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item .active.h6, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item .active.h6, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item .active.h6, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item .active.h6, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item h6:active, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item h6:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item h6:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item h6:active, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item h6:active, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item h6:active, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item h6:active, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item h6:active, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item .h6:active, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item .h6:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item .h6:active, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item .h6:active, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item .h6:active, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item .h6:active, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item .h6:active, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item .h6:active, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item.active, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item:active, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item h6.active, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item h6:active{color:var(--dropdown-link-active-color, #f7f9fb)}
html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item .btn-link:disabled, html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item .btn-link.o_wysiwyg_loader, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item .btn-link:disabled{color:#9fb2c0}
html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item-text .text-muted a, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item-text .text-muted a, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item-text .text-muted a, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item-text .text-muted a{color:#8fbed6}
html[data-theme="dark"] .o_cc .dropdown-menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .o_cc .o_dropdown_menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .dropdown-menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .o_dropdown_menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .o_footer .dropdown-menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .o_footer .o_dropdown_menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .navbar-light .dropdown-menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .navbar-light .o_dropdown_menu .dropdown-item-text .text-muted a:hover, html[data-theme="dark"] .o_colored_level .o_cc .dropdown-menu .dropdown-item-text .text-muted a:hover{color:#f7f9fb}
html[data-theme="dark"] .o_cc1, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar, html[data-theme="dark"] .navbar-light{background-color:#111a21;color:#f7f9fb}
html[data-theme="dark"] .o_cc1 .text-muted, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .text-muted, html[data-theme="dark"] .navbar-light .text-muted, html[data-theme="dark"] .o_colored_level .o_cc1 .text-muted{color:rgba(247, 249, 251, 0.7)}
html[data-theme="dark"] .o_cc1 a:not(.btn), html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar a:not(.btn), html[data-theme="dark"] .navbar-light a:not(.btn), html[data-theme="dark"] .o_cc1 .btn-link, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-link, html[data-theme="dark"] .navbar-light .btn-link, html[data-theme="dark"] .o_colored_level .o_cc1 a:not(.btn), html[data-theme="dark"] .o_colored_level .o_cc1 .btn-link{color:#8fbed6}
html[data-theme="dark"] .o_cc1 a:not(.btn):hover, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar a:not(.btn):hover, html[data-theme="dark"] .navbar-light a:not(.btn):hover, html[data-theme="dark"] .o_cc1 .btn-link:hover, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-link:hover, html[data-theme="dark"] .navbar-light .btn-link:hover, html[data-theme="dark"] .o_colored_level .o_cc1 a:not(.btn):hover, html[data-theme="dark"] .o_colored_level .o_cc1 .btn-link:hover{color:#f7f9fb}
html[data-theme="dark"] .o_cc1 .btn-outline-primary, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-outline-primary, html[data-theme="dark"] .navbar-light .btn-outline-primary, html[data-theme="dark"] .o_colored_level .o_cc1 .btn-outline-primary{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .o_cc1 .btn-fill-secondary, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-fill-secondary, html[data-theme="dark"] .navbar-light .btn-fill-secondary, html[data-theme="dark"] .o_cc1 .btn-secondary, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-secondary, html[data-theme="dark"] .navbar-light .btn-secondary, html[data-theme="dark"] .o_colored_level .o_cc1 .btn-fill-secondary{color:#f7f9fb;color:#f7f9fb;color:#f7f9fb;color:#f7f9fb}
html[data-theme="dark"] .o_cc1 .btn-outline-secondary, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar .btn-outline-secondary, html[data-theme="dark"] .navbar-light .btn-outline-secondary, html[data-theme="dark"] .o_colored_level .o_cc1 .btn-outline-secondary{color:#9fb2c0;color:#f7f9fb;color:#f7f9fb;color:#9fb2c0}
html[data-theme="dark"] .o_cc1 a.list-group-item, html[data-theme="dark"] #wrapwrap.o_header_overlay > header:not(.o_header_affixed):not(.o_header_sidebar):not(.o_top_menu_collapse_shown) > .navbar a.list-group-item, html[data-theme="dark"] .navbar-light a.list-group-item, html[data-theme="dark"] .o_colored_level .o_cc1 a.list-group-item{color:#8fbed6}
html[data-theme="dark"] .o_cc2{background-color:#111a21;color:#f7f9fb}
html[data-theme="dark"] .o_cc2 .text-muted, html[data-theme="dark"] .o_colored_level .o_cc2 .text-muted{color:rgba(247, 249, 251, 0.7)}
html[data-theme="dark"] .o_cc2 h1, html[data-theme="dark"] .o_cc2 .h1, html[data-theme="dark"] .o_cc2 h2, html[data-theme="dark"] .o_cc2 .h2, html[data-theme="dark"] .o_cc2 h3, html[data-theme="dark"] .o_cc2 .h3, html[data-theme="dark"] .o_cc2 h4, html[data-theme="dark"] .o_cc2 .h4, html[data-theme="dark"] .o_cc2 h5, html[data-theme="dark"] .o_cc2 .h5, html[data-theme="dark"] .o_cc2 h6, html[data-theme="dark"] .o_cc2 .h6, html[data-theme="dark"] .o_colored_level .o_cc2 h1, html[data-theme="dark"] .o_colored_level .o_cc2 h2, html[data-theme="dark"] .o_colored_level .o_cc2 h3, html[data-theme="dark"] .o_colored_level .o_cc2 h4, html[data-theme="dark"] .o_colored_level .o_cc2 h5, html[data-theme="dark"] .o_colored_level .o_cc2 h6{color:#f7f9fb}
html[data-theme="dark"] .o_cc2 a:not(.btn), html[data-theme="dark"] .o_cc2 .btn-link, html[data-theme="dark"] .o_colored_level .o_cc2 a:not(.btn), html[data-theme="dark"] .o_colored_level .o_cc2 .btn-link{color:#8fbed6}
html[data-theme="dark"] .o_cc2 a:not(.btn):hover, html[data-theme="dark"] .o_cc2 .btn-link:hover, html[data-theme="dark"] .o_colored_level .o_cc2 a:not(.btn):hover, html[data-theme="dark"] .o_colored_level .o_cc2 .btn-link:hover{color:#f7f9fb}
html[data-theme="dark"] .o_cc2 .btn-outline-primary, html[data-theme="dark"] .o_colored_level .o_cc2 .btn-outline-primary{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .o_cc2 .btn-fill-secondary, html[data-theme="dark"] .o_cc2 .btn-secondary, html[data-theme="dark"] .o_colored_level .o_cc2 .btn-fill-secondary{color:#f7f9fb;color:#f7f9fb;color:#f7f9fb;color:#f7f9fb}
html[data-theme="dark"] .o_cc2 .btn-outline-secondary, html[data-theme="dark"] .o_colored_level .o_cc2 .btn-outline-secondary{color:#9fb2c0;color:#f7f9fb;color:#f7f9fb;color:#9fb2c0}
html[data-theme="dark"] .o_cc2 a.list-group-item, html[data-theme="dark"] .o_colored_level .o_cc2 a.list-group-item{color:#8fbed6}
html[data-theme="dark"] .o_cc3 .text-muted, html[data-theme="dark"] .o_colored_level .o_cc3 .text-muted{color:rgba(247, 249, 251, 0.7)}
html[data-theme="dark"] .o_cc3 a:not(.btn), html[data-theme="dark"] .o_cc3 .btn-link, html[data-theme="dark"] .o_colored_level .o_cc3 a:not(.btn), html[data-theme="dark"] .o_colored_level .o_cc3 .btn-link{color:#f7f9fb}
html[data-theme="dark"] .o_cc3 a:not(.btn):hover, html[data-theme="dark"] .o_cc3 .btn-link:hover, html[data-theme="dark"] .o_colored_level .o_cc3 a:not(.btn):hover, html[data-theme="dark"] .o_colored_level .o_cc3 .btn-link:hover{color:#f7f9fb}
html[data-theme="dark"] .o_cc3 .btn-outline-primary, html[data-theme="dark"] .o_colored_level .o_cc3 .btn-outline-primary{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .o_cc3 .btn-fill-secondary, html[data-theme="dark"] .o_cc3 .btn-secondary, html[data-theme="dark"] .o_colored_level .o_cc3 .btn-fill-secondary{color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a}
html[data-theme="dark"] .o_cc3 .btn-outline-secondary, html[data-theme="dark"] .o_colored_level .o_cc3 .btn-outline-secondary{border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;border-color:#22303a}
html[data-theme="dark"] .o_cc3 a.list-group-item, html[data-theme="dark"] .o_colored_level .o_cc3 a.list-group-item{color:#8fbed6}
html[data-theme="dark"] .o_cc4 .btn-fill-primary, html[data-theme="dark"] .o_footer .btn-fill-primary, html[data-theme="dark"] .o_cc4 .btn-primary, html[data-theme="dark"] .o_footer .btn-primary, html[data-theme="dark"] .o_colored_level .o_cc4 .btn-fill-primary{color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a}
html[data-theme="dark"] .o_cc4 .btn-outline-primary, html[data-theme="dark"] .o_footer .btn-outline-primary, html[data-theme="dark"] .o_colored_level .o_cc4 .btn-outline-primary{border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;border-color:#22303a}
html[data-theme="dark"] .o_cc4 .btn-fill-secondary, html[data-theme="dark"] .o_footer .btn-fill-secondary, html[data-theme="dark"] .o_cc4 .btn-secondary, html[data-theme="dark"] .o_footer .btn-secondary, html[data-theme="dark"] .o_colored_level .o_cc4 .btn-fill-secondary{color:#f7f9fb;color:#f7f9fb;color:#f7f9fb;color:#f7f9fb}
html[data-theme="dark"] .o_cc4 .btn-outline-secondary, html[data-theme="dark"] .o_footer .btn-outline-secondary, html[data-theme="dark"] .o_colored_level .o_cc4 .btn-outline-secondary{color:#9fb2c0;color:#f7f9fb;color:#f7f9fb;color:#9fb2c0}
html[data-theme="dark"] .o_cc4 .nav-pills .nav-link.active, html[data-theme="dark"] .o_footer .nav-pills .nav-link.active, html[data-theme="dark"] .o_cc4 .nav-pills .show > .nav-link, html[data-theme="dark"] .o_footer .nav-pills .show > .nav-link, html[data-theme="dark"] .o_colored_level .o_cc4 .nav-pills .nav-link.active, html[data-theme="dark"] .o_colored_level .o_cc4 .nav-pills .show > .nav-link{background-color:#111a21;color:#f7f9fb}
html[data-theme="dark"] .o_cc4 a.list-group-item.active, html[data-theme="dark"] .o_footer a.list-group-item.active, html[data-theme="dark"] .o_colored_level .o_cc4 a.list-group-item.active{background-color:#111a21;color:#f7f9fb;border-color:#22303a}
html[data-theme="dark"] .o_cc5 .btn-fill-primary, html[data-theme="dark"] .o_cc5 .btn-primary, html[data-theme="dark"] .o_colored_level .o_cc5 .btn-fill-primary{color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a}
html[data-theme="dark"] .o_cc5 .btn-outline-primary, html[data-theme="dark"] .o_colored_level .o_cc5 .btn-outline-primary{border-color:#22303a;color:#f7f9fb;border-color:#22303a;color:#f7f9fb;border-color:#22303a;border-color:#22303a}
html[data-theme="dark"] .o_cc5 .btn-fill-secondary, html[data-theme="dark"] .o_cc5 .btn-secondary, html[data-theme="dark"] .o_colored_level .o_cc5 .btn-fill-secondary{color:#f7f9fb;color:#f7f9fb;color:#f7f9fb;color:#f7f9fb}
html[data-theme="dark"] .o_cc5 .btn-outline-secondary, html[data-theme="dark"] .o_colored_level .o_cc5 .btn-outline-secondary{color:#9fb2c0;color:#f7f9fb;color:#f7f9fb;color:#9fb2c0}
html[data-theme="dark"] .o_cc5 .nav-pills .nav-link.active, html[data-theme="dark"] .o_cc5 .nav-pills .show > .nav-link, html[data-theme="dark"] .o_colored_level .o_cc5 .nav-pills .nav-link.active, html[data-theme="dark"] .o_colored_level .o_cc5 .nav-pills .show > .nav-link{background-color:#111a21;color:#f7f9fb}
html[data-theme="dark"] .o_cc5 a.list-group-item.active, html[data-theme="dark"] .o_colored_level .o_cc5 a.list-group-item.active{background-color:#111a21;color:#f7f9fb;border-color:#22303a}
html[data-theme="dark"] .variant_attribute .radio_input_value.o_variant_pills_input_value .badge{color:#9fb2c0;background:#111a21}
html[data-theme="dark"] .variant_attribute .o_variant_pills:not(.active){color:#9fb2c0;background-color:#111a21}
html[data-theme="dark"] .variant_attribute .radio_input_value .sign_badge_price_extra, html[data-theme="dark"] .variant_attribute select .sign_badge_price_extra, html[data-theme="dark"] .variant_attribute label .sign_badge_price_extra{color:#8fbed6;background:#111a21}
html[data-theme="dark"] .o_attachment_preview > .o-mail-Attachment .arrow.disabled{color:#9fb2c0}
html[data-theme="dark"] .o-mail-PopoutAttachmentView > .o-mail-Attachment .arrow.disabled{color:#9fb2c0}
html[data-theme="dark"] .bridge-btn-free-trial{color:#8fbed6}
html[data-theme="dark"] .bridge-btn-free-trial:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bsp_error{background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .bridge-constitution-body{background-color:#111a21}
html[data-theme="dark"] .bridge-constitution-body{color:#e8eef3;background-color:#111a21}
html[data-theme="dark"] .page.bridge-constitution-page{background:#111a21}
html[data-theme="dark"] .bridge-handbook-body{background-color:#111a21}
html[data-theme="dark"] .page.bridge-process-page{background:#111a21}
html[data-theme="dark"] .bridge-handbook-body{color:#e8eef3;background-color:#111a21}
html[data-theme="dark"] .bridge-handbook-page{background:#111a21}
html[data-theme="dark"] .bridge-handbook-section{background-color:#111a21}
html[data-theme="dark"] .bridge-subsection{background:#111a21}
html[data-theme="dark"] .bridge-policy-item{background-color:#111a21}
html[data-theme="dark"] .bridge-documents-section{background-color:#111a21}
html[data-theme="dark"] .bridge-contact-info{background:#111a21}
html[data-theme="dark"] .bridge-contact-info > p{color:#f7f9fb}
html[data-theme="dark"] .bridge-handbook-body{background:#111a21}
html[data-theme="dark"] .bridge-internship-body{color:#e8eef3;background-color:#111a21}
html[data-theme="dark"] .bridge-page{background:#111a21}
html[data-theme="dark"] .bridge-company-details{color:#f7f9fb}
html[data-theme="dark"] .bridge-contract-header{background-color:#111a21}
html[data-theme="dark"] .bridge-clause{background-color:#111a21}
html[data-theme="dark"] .bridge-important-clause{background-color:#111a21}
html[data-theme="dark"] .bridge-warning-clause{background-color:#111a21}
html[data-theme="dark"] .bridge-signature-section{background-color:#111a21}
html[data-theme="dark"] .bridge-party{background-color:#111a21}
html[data-theme="dark"] .bridge-progress-container{background:#111a21}
html[data-theme="dark"] .bridge-progress-bar{background:#162028}
html[data-theme="dark"] .bridge-step-circle{background:#111a21;color:#8fa3b2;border:2px solid #22303a}
html[data-theme="dark"] .bridge-step-label{color:#9fb2c0}
html[data-theme="dark"] .bridge-step-indicator.active .bridge-step-label{color:#8fbed6}
html[data-theme="dark"] .bridge-step-indicator.completed .bridge-step-label{color:#f7f9fb}
html[data-theme="dark"] .bridge-form-section{background:#111a21}
html[data-theme="dark"] .bridge-form-header{border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge-form-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-form-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-step-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-step-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-form-label{color:#f7f9fb}
html[data-theme="dark"] .bridge-required{color:#9fb2c0}
html[data-theme="dark"] .bridge-form-input{border:1px solid #22303a;color:#f7f9fb;background:#111a21}
html[data-theme="dark"] .bridge-form-input::placeholder{color:#8fa3b2}
html[data-theme="dark"] .bridge-offer-details-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-offer-header{border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge-offer-header h3, html[data-theme="dark"] .bridge-offer-header .h3{color:#f7f9fb}
html[data-theme="dark"] .bridge-offer-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-offer-item:hover{border-color:#22303a}
html[data-theme="dark"] .bridge-offer-content h4, html[data-theme="dark"] .bridge-offer-content .h4{color:#9fb2c0}
html[data-theme="dark"] .bridge-offer-value{color:#f7f9fb}
html[data-theme="dark"] .bridge-offer-content small, html[data-theme="dark"] .bridge-offer-content .small{color:#8fa3b2}
html[data-theme="dark"] .bridge-terms-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-terms-card h3, html[data-theme="dark"] .bridge-terms-card .h3{color:#f7f9fb}
html[data-theme="dark"] .bridge-term-item{color:#f7f9fb}
html[data-theme="dark"] .bridge-term-item i{color:#8fbed6}
html[data-theme="dark"] .bridge-acceptance-box{background:#111a21}
html[data-theme="dark"] .bridge-checkbox{color:#8fbed6}
html[data-theme="dark"] .bridge-checkbox-text{color:#f7f9fb}
html[data-theme="dark"] .bridge-btn-secondary{background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .bridge-btn-secondary:hover{background:#162028}
html[data-theme="dark"] .bridge-btn:disabled, html[data-theme="dark"] .bridge-btn.o_wysiwyg_loader{background:#162028;color:#8fa3b2}
html[data-theme="dark"] .bridge-celebration-section{background:#111a21}
html[data-theme="dark"] .bridge-celebration-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-celebration-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-detail-badge{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-badge-label{color:#8fa3b2}
html[data-theme="dark"] .bridge-badge-value{color:#f7f9fb}
html[data-theme="dark"] .bridge-next-steps-section{background:#111a21}
html[data-theme="dark"] .bridge-section-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-next-step-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-next-step-card:hover{border-color:#22303a}
html[data-theme="dark"] .bridge-next-step-card h3, html[data-theme="dark"] .bridge-next-step-card .h3{color:#f7f9fb}
html[data-theme="dark"] .bridge-next-step-card p{color:#9fb2c0}
html[data-theme="dark"] .bridge-documents-section{background:#111a21}
html[data-theme="dark"] .bridge-contact-info h3, html[data-theme="dark"] .bridge-contact-info .h3{color:#f7f9fb}
html[data-theme="dark"] .bridge-contact-info > p{color:#9fb2c0}
html[data-theme="dark"] .bridge-contact-item{background:#111a21;color:#f7f9fb;border:1px solid #22303a}
html[data-theme="dark"] .bridge-contact-item:hover{border-color:#22303a;background:#111a21}
html[data-theme="dark"] .bridge-contact-item a{color:#8fbed6}
html[data-theme="dark"] .bridge-contact-item a:hover{color:#8fbed6}
html[data-theme="dark"] .bridge-form-input:disabled, html[data-theme="dark"] .bridge-form-input.o_wysiwyg_loader{background:#111a21;color:#8fa3b2}
html[data-theme="dark"] .bridge-btn.bridge-btn-secondary{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge-celebration-section{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .mybridgeerp-modal-content{background:#111a21}
html[data-theme="dark"] .mybridgeerp-close-btn{background:rgba(17, 26, 33, 0.2)}
html[data-theme="dark"] .mybridgeerp-search-container i{color:#f7f9fb}
html[data-theme="dark"] #mybridgeerp-language-search{border:2px solid #22303a}
html[data-theme="dark"] .mybridgeerp-country-item{background:#111a21}
html[data-theme="dark"] .mybridgeerp-languages{color:#f7f9fb}
html[data-theme="dark"] .mybridgeerp-country-item:hover .mybridgeerp-lang-option:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .mybridgeerp-modal-body::-webkit-scrollbar-track{background:#111a21}
html[data-theme="dark"] .helpdesk-form-wrapper h2, html[data-theme="dark"] .helpdesk-form-wrapper .h2{border-bottom:3px solid #22303a}
html[data-theme="dark"] .bridgeerp_apps_unique_mega_menu{background:#111a21}
html[data-theme="dark"] .bridgeerp_apps_unique_category_title{color:#e8eef3}
html[data-theme="dark"] .bridgeerp_apps_unique_mega_link{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_apps_unique_btn_demo{background:#111a21;color:#8fbed6;border-color:#22303a}
html[data-theme="dark"] .bridgeerp_apps_unique_btn_demo:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_apps_unique_btn_buy:hover{background:#111a21;border-color:#22303a}
html[data-theme="dark"] .event-planning-industries-app-card h6, html[data-theme="dark"] .event-planning-industries-app-card .h6{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_container_main{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 50%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_finance_hero_title_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_subtitle_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_stat_item_unique{background:rgba(17, 26, 33, 0.8)}
html[data-theme="dark"] .bridgeerp_finance_stat_number_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_stat_label_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_hero_form_container_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_finance_hero_form_header_unique h2, html[data-theme="dark"] .bridgeerp_finance_hero_form_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_form_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_hero_trust_item_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_form_label_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_form_input_unique, html[data-theme="dark"] .bridgeerp_finance_hero_form_select_unique, html[data-theme="dark"] .bridgeerp_finance_hero_form_textarea_unique{border:2px solid #22303a;background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_hero_form_input_unique:hover:not(:focus), html[data-theme="dark"] .bridgeerp_finance_hero_form_select_unique:hover:not(:focus), html[data-theme="dark"] .bridgeerp_finance_hero_form_textarea_unique:hover:not(:focus){border-color:#22303a}
html[data-theme="dark"] .bridgeerp_finance_hero_checkbox_label_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_hero_btn_shine_unique{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .bridgeerp_finance_hero_form_security_note_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_challenges_section_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_finance_section_header_unique h2, html[data-theme="dark"] .bridgeerp_finance_section_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_section_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_challenge_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_finance_challenge_card_unique:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_finance_icon_red_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_icon_blue_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_icon_green_unique{background:linear-gradient(135deg, #111a21 0%, #162028 100%)}
html[data-theme="dark"] .bridgeerp_finance_challenge_card_unique h3, html[data-theme="dark"] .bridgeerp_finance_challenge_card_unique .h3{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_challenge_card_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_solution_preview_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_finance_solution_preview_unique strong{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_services_showcase_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_finance_service_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_finance_service_card_unique:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_finance_service_card_unique h3, html[data-theme="dark"] .bridgeerp_finance_service_card_unique .h3{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_service_card_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_service_features_unique li{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_features_showcase_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_finance_feature_item_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_finance_feature_item_unique:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_finance_feature_icon_wrapper_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_finance_feature_item_unique h3, html[data-theme="dark"] .bridgeerp_finance_feature_item_unique .h3{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_feature_list_unique li{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_finance_testimonial_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_finance_testimonial_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_finance_testimonial_quote_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_author_name_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_finance_author_title_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_container_main{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 50%, #111a21 100%)}
html[data-theme="dark"] .edubridge_education_hero_title_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_subtitle_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_dev_content_unique h3, html[data-theme="dark"] .edubridge_education_dev_content_unique .h3{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_dev_content_unique p{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_stat_item_unique{background:rgba(17, 26, 33, 0.8)}
html[data-theme="dark"] .edubridge_education_stat_number_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_stat_label_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_hero_form_container_unique{background:#111a21}
html[data-theme="dark"] .edubridge_education_hero_form_header_unique h2, html[data-theme="dark"] .edubridge_education_hero_form_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_form_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_progress_text_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_hero_trust_item_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_form_label_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_form_input_unique, html[data-theme="dark"] .edubridge_education_hero_form_select_unique, html[data-theme="dark"] .edubridge_education_hero_form_textarea_unique{border:2px solid #22303a;background:#111a21;color:#8fbed6}
html[data-theme="dark"] .edubridge_education_hero_form_input_unique:hover:not(:focus), html[data-theme="dark"] .edubridge_education_hero_form_select_unique:hover:not(:focus), html[data-theme="dark"] .edubridge_education_hero_form_textarea_unique:hover:not(:focus){border-color:#22303a}
html[data-theme="dark"] .edubridge_education_hero_checkbox_unique{border:2px solid #22303a}
html[data-theme="dark"] .edubridge_education_hero_checkbox_label_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_hero_btn_shine_unique{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .edubridge_education_hero_form_security_note_unique{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_challenges_section_unique{background:#111a21}
html[data-theme="dark"] .edubridge_education_section_header_unique h2, html[data-theme="dark"] .edubridge_education_section_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_section_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_challenge_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .edubridge_education_challenge_card_unique:hover{border-color:#22303a}
html[data-theme="dark"] .edubridge_education_icon_red_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_icon_blue_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#8fbed6}
html[data-theme="dark"] .edubridge_education_icon_green_unique{background:linear-gradient(135deg, #111a21 0%, #162028 100%)}
html[data-theme="dark"] .edubridge_education_challenge_card_unique h3, html[data-theme="dark"] .edubridge_education_challenge_card_unique .h3{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_challenge_card_unique p{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_solution_preview_unique{background:#111a21}
html[data-theme="dark"] .edubridge_education_solution_preview_unique strong{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_features_showcase_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .edubridge_education_feature_item_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .edubridge_education_feature_item_unique:hover{border-color:#22303a}
html[data-theme="dark"] .edubridge_education_feature_icon_wrapper_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .edubridge_education_feature_item_unique h3, html[data-theme="dark"] .edubridge_education_feature_item_unique .h3{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_feature_list_unique li{color:#9fb2c0}
html[data-theme="dark"] .edubridge_education_development_card_unique{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .edubridge_education_progress_bar_unique{background:rgba(17, 26, 33, 0.2)}
html[data-theme="dark"] .edubridge_education_progress_fill_unique{background:linear-gradient(90deg, #f89d14 0%, #162028 100%)}
html[data-theme="dark"] .edubridge_education_progress_item_unique{background:rgba(17, 26, 33, 0.1)}
html[data-theme="dark"] .edubridge_education_testimonial_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .edubridge_education_testimonial_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .edubridge_education_testimonial_quote_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_author_name_unique{color:#8fbed6}
html[data-theme="dark"] .edubridge_education_author_title_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_container_main{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 50%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_hospital_hero_title_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_subtitle_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_stat_item_unique{background:rgba(17, 26, 33, 0.8)}
html[data-theme="dark"] .bridgeerp_hospital_stat_number_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_stat_label_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_container_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_header_unique h2, html[data-theme="dark"] .bridgeerp_hospital_hero_form_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_hero_trust_item_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_label_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_input_unique, html[data-theme="dark"] .bridgeerp_hospital_hero_form_select_unique, html[data-theme="dark"] .bridgeerp_hospital_hero_form_textarea_unique{border:2px solid #22303a;background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_input_unique:hover:not(:focus), html[data-theme="dark"] .bridgeerp_hospital_hero_form_select_unique:hover:not(:focus), html[data-theme="dark"] .bridgeerp_hospital_hero_form_textarea_unique:hover:not(:focus){border-color:#22303a}
html[data-theme="dark"] .bridgeerp_hospital_hero_checkbox_label_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_hero_btn_shine_unique{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .bridgeerp_hospital_hero_form_security_note_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_challenges_section_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_hospital_section_header_unique h2, html[data-theme="dark"] .bridgeerp_hospital_section_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_section_header_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_challenge_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_hospital_challenge_card_unique:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_hospital_icon_red_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_icon_blue_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_icon_green_unique{background:linear-gradient(135deg, #111a21 0%, #162028 100%)}
html[data-theme="dark"] .bridgeerp_hospital_challenge_card_unique h3, html[data-theme="dark"] .bridgeerp_hospital_challenge_card_unique .h3{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_challenge_card_unique p{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_solution_preview_unique{background:#111a21}
html[data-theme="dark"] .bridgeerp_hospital_solution_preview_unique strong{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_features_showcase_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_hospital_feature_item_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_hospital_feature_item_unique:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_hospital_feature_icon_wrapper_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_hospital_feature_item_unique h3, html[data-theme="dark"] .bridgeerp_hospital_feature_item_unique .h3{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_feature_list_unique li{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_hospital_testimonial_section_unique{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridgeerp_hospital_testimonial_card_unique{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridgeerp_hospital_testimonial_quote_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_author_name_unique{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_hospital_author_title_unique{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp_medical_hero_form_header_unique h2, html[data-theme="dark"] .bridgeerp_medical_hero_form_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_medical_section_header_unique h2, html[data-theme="dark"] .bridgeerp_medical_section_header_unique .h2{color:#8fbed6}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .contactus-stat-item:not(:last-child)::after{background:rgba(17, 26, 33, 0.2)}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-quick-actions-section{background:#111a21}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-section-title{color:#f7f9fb}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-action-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-action-card h3, html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-action-card .h3{color:#f7f9fb}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-action-card p{color:#9fb2c0}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-btn-outline{color:#8fbed6}
html[data-theme="dark"] #bridgeerp-contactus-page-unique-wrapper .bridgeerp-contactus-main-form-section{background:#111a21}
html[data-theme="dark"] .contactus-section-title{color:#8fbed6}
html[data-theme="dark"] .contactus-alt-bg{background:#111a21}
html[data-theme="dark"] .contactus-form-container{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .contactus-form-title{color:#8fbed6}
html[data-theme="dark"] .contactus-form-subtitle{color:#f7f9fb}
html[data-theme="dark"] .contactus-form-label{color:#8fbed6}
html[data-theme="dark"] .contactus-form-input{border:2px solid #22303a;background:#111a21}
html[data-theme="dark"] .contactus-info-container{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .contactus-info-title{color:#8fbed6}
html[data-theme="dark"] .contactus-info-item{border-bottom:1px solid #22303a}
html[data-theme="dark"] .contactus-info-icon{background:#111a21}
html[data-theme="dark"] .contactus-info-content h4, html[data-theme="dark"] .contactus-info-content .h4{color:#8fbed6}
html[data-theme="dark"] .contactus-info-content p{color:#f7f9fb}
html[data-theme="dark"] .contactus-quick-links{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .contactus-links-title{color:#8fbed6}
html[data-theme="dark"] .contactus-quick-link{color:#f7f9fb;border:1px solid #22303a;background:#111a21}
html[data-theme="dark"] .contactus-quick-link:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .contactus-support-section{background:#111a21}
html[data-theme="dark"] .contactus-support-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .contactus-support-icon{background:#111a21}
html[data-theme="dark"] .contactus-support-card h3, html[data-theme="dark"] .contactus-support-card .h3{color:#8fbed6}
html[data-theme="dark"] .contactus-support-card p{color:#f7f9fb}
html[data-theme="dark"] .contactus-faq-section{background:#111a21}
html[data-theme="dark"] .contactus-faq-item{background:#111a21}
html[data-theme="dark"] .contactus-faq-item h4, html[data-theme="dark"] .contactus-faq-item .h4{color:#8fbed6}
html[data-theme="dark"] .contactus-faq-item p{color:#f7f9fb}
html[data-theme="dark"] .fitnesscenter-equipment-text h2, html[data-theme="dark"] .fitnesscenter-equipment-text .h2{color:#8fbed6}
html[data-theme="dark"] .edubridge-feature-icon{background:#111a21}
html[data-theme="dark"] .edubridge-integration-icon{background:#111a21}
html[data-theme="dark"] .edubridge-navbar{background:#111a21;border-bottom:1px solid #22303a}
html[data-theme="dark"] .edubridge-brand-text{color:#8fbed6}
html[data-theme="dark"] .edubridge-nav-link{color:#f7f9fb}
html[data-theme="dark"] .edubridge-nav-link:hover, html[data-theme="dark"] .edubridge-nav-link.edubridge-active{color:#8fbed6}
html[data-theme="dark"] .edubridge-dropdown-menu{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .edubridge-dropdown-section h4, html[data-theme="dark"] .edubridge-dropdown-section .h4{color:#8fbed6}
html[data-theme="dark"] .edubridge-dropdown-section a{color:#f7f9fb}
html[data-theme="dark"] .edubridge-nav-login{color:#f7f9fb}
html[data-theme="dark"] .edubridge-features-hero::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(17, 26, 33, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')}
html[data-theme="dark"] .edubridge-quick-nav{background:#111a21;border-bottom:1px solid #22303a}
html[data-theme="dark"] .edubridge-quick-nav-item{color:#f7f9fb;border:2px solid #22303a;background:#111a21}
html[data-theme="dark"] .edubridge-quick-nav-item:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .edubridge-features-section{background:#111a21}
html[data-theme="dark"] .edubridge-alt-bg{background:#111a21}
html[data-theme="dark"] .edubridge-section-title{color:#8fbed6}
html[data-theme="dark"] .edubridge-feature-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .edubridge-feature-card h3, html[data-theme="dark"] .edubridge-feature-card .h3{color:#8fbed6}
html[data-theme="dark"] .edubridge-feature-card p{color:#f7f9fb}
html[data-theme="dark"] .edubridge-feature-link:hover{color:#9fb2c0}
html[data-theme="dark"] .edubridge-integration-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .edubridge-integration-card h3, html[data-theme="dark"] .edubridge-integration-card .h3{color:#8fbed6}
html[data-theme="dark"] .edubridge-integration-card p{color:#f7f9fb}
html[data-theme="dark"] .edubridge-technical-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .edubridge-technical-item h4, html[data-theme="dark"] .edubridge-technical-item .h4{color:#8fbed6}
html[data-theme="dark"] .edubridge-technical-item p{color:#f7f9fb}
html[data-theme="dark"] .edubridge-btn-primary{background:#111a21}
html[data-theme="dark"] .edubridge-btn-primary:hover{background:#111a21}
html[data-theme="dark"] .edubridge-btn-secondary{border:2px solid #22303a}
html[data-theme="dark"] .edubridge-btn-secondary:hover{background:#111a21}
html[data-theme="dark"] .hotel-hero::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hotel-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(17, 26, 33, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hotel-grid)"/></svg>')}
html[data-theme="dark"] .hotel-btn-secondary{border:2px solid #22303a}
html[data-theme="dark"] .hotel-btn-secondary:hover{background:#111a21;color:#8fbed6;box-shadow:0 8px 25px rgba(17, 26, 33, 0.3)}
html[data-theme="dark"] .hotel-demo-badge{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .hotel-overview{background:#111a21}
html[data-theme="dark"] .hotel-section-title{color:#8fbed6}
html[data-theme="dark"] .hotel-section-subtitle{color:#f7f9fb}
html[data-theme="dark"] .hotel-features{background:#111a21}
html[data-theme="dark"] .hotel-feature-title{color:#8fbed6}
html[data-theme="dark"] .hotel-feature-description{color:#f7f9fb}
html[data-theme="dark"] .hotel-feature-list li{color:#f7f9fb}
html[data-theme="dark"] .hotel-feature-link:hover{color:#9fb2c0}
html[data-theme="dark"] .hotel-feature-visual{background:#111a21}
html[data-theme="dark"] .hotel-operations{background:#111a21}
html[data-theme="dark"] .hotel-operation-item{background:#111a21}
html[data-theme="dark"] .hotel-operation-visual{background:#111a21}
html[data-theme="dark"] .hotel-operation-content h4, html[data-theme="dark"] .hotel-operation-content .h4{color:#8fbed6}
html[data-theme="dark"] .hotel-operation-content p{color:#f7f9fb}
html[data-theme="dark"] .hotel-additional{background:#111a21}
html[data-theme="dark"] .hotel-feature-item{background:#111a21}
html[data-theme="dark"] .hotel-feature-item h4, html[data-theme="dark"] .hotel-feature-item .h4{color:#8fbed6}
html[data-theme="dark"] .hotel-feature-item p{color:#f7f9fb}
html[data-theme="dark"] .hotel-types{background:#111a21}
html[data-theme="dark"] .hotel-type-card{background:#111a21}
html[data-theme="dark"] .hotel-type-card h4, html[data-theme="dark"] .hotel-type-card .h4{color:#8fbed6}
html[data-theme="dark"] .hotel-type-card p{color:#f7f9fb}
html[data-theme="dark"] .hotel-cta{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#e8eef3}
html[data-theme="dark"] .hotel-btn-large::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .hotel-cta-feature{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .hotel-cta-feature:hover{background:rgba(17, 26, 33, 0.15)}
html[data-theme="dark"] .restaurant-hero::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="restaurant-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(17, 26, 33, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23restaurant-grid)"/></svg>')}
html[data-theme="dark"] .restaurant-btn-secondary{border:2px solid #22303a}
html[data-theme="dark"] .restaurant-btn-secondary:hover{background:#111a21;color:#8fbed6;box-shadow:0 8px 25px rgba(17, 26, 33, 0.3)}
html[data-theme="dark"] .restaurant-demo-badge{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .restaurant-overview{background:#111a21}
html[data-theme="dark"] .restaurant-section-title{color:#8fbed6}
html[data-theme="dark"] .restaurant-section-subtitle{color:#f7f9fb}
html[data-theme="dark"] .restaurant-features{background:#111a21}
html[data-theme="dark"] .restaurant-feature-title{color:#8fbed6}
html[data-theme="dark"] .restaurant-feature-description{color:#f7f9fb}
html[data-theme="dark"] .restaurant-feature-list li{color:#f7f9fb}
html[data-theme="dark"] .restaurant-feature-link:hover{color:#9fb2c0}
html[data-theme="dark"] .restaurant-feature-visual{background:#111a21}
html[data-theme="dark"] .restaurant-additional{background:#111a21}
html[data-theme="dark"] .restaurant-feature-item{background:#111a21}
html[data-theme="dark"] .restaurant-feature-item h4, html[data-theme="dark"] .restaurant-feature-item .h4{color:#8fbed6}
html[data-theme="dark"] .restaurant-feature-item p{color:#f7f9fb}
html[data-theme="dark"] .restaurant-types{background:#111a21}
html[data-theme="dark"] .restaurant-type-card{background:#111a21}
html[data-theme="dark"] .restaurant-type-card h4, html[data-theme="dark"] .restaurant-type-card .h4{color:#8fbed6}
html[data-theme="dark"] .restaurant-type-card p{color:#f7f9fb}
html[data-theme="dark"] .restaurant-cta{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#e8eef3}
html[data-theme="dark"] .restaurant-btn-large::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .restaurant-cta-feature{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .restaurant-cta-feature:hover{background:rgba(17, 26, 33, 0.15)}
html[data-theme="dark"] .legal-store-hero::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(17, 26, 33, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-grid)"/></svg>')}
html[data-theme="dark"] .legal-store-btn-secondary{color:#8fbed6}
html[data-theme="dark"] .legal-store-demo-badge{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .legal-store-overview{background:#111a21}
html[data-theme="dark"] .legal-store-section-title{color:#8fbed6}
html[data-theme="dark"] .legal-store-section-subtitle{color:#f7f9fb}
html[data-theme="dark"] .legal-store-features{background:#111a21}
html[data-theme="dark"] .legal-store-feature-title{color:#8fbed6}
html[data-theme="dark"] .legal-store-feature-description{color:#f7f9fb}
html[data-theme="dark"] .legal-store-feature-list li{color:#f7f9fb}
html[data-theme="dark"] .legal-store-feature-link:hover{color:#9fb2c0}
html[data-theme="dark"] .legal-store-feature-visual{background:#111a21}
html[data-theme="dark"] .legal-store-additional{background:#111a21}
html[data-theme="dark"] .legal-store-feature-item{background:#111a21}
html[data-theme="dark"] .legal-store-feature-item h4, html[data-theme="dark"] .legal-store-feature-item .h4{color:#8fbed6}
html[data-theme="dark"] .legal-store-feature-item p{color:#f7f9fb}
html[data-theme="dark"] .legal-store-industries{background:#111a21}
html[data-theme="dark"] .legal-store-industry-card{background:#111a21}
html[data-theme="dark"] .legal-store-industry-card h4, html[data-theme="dark"] .legal-store-industry-card .h4{color:#8fbed6}
html[data-theme="dark"] .legal-store-industry-card p{color:#f7f9fb}
html[data-theme="dark"] .legal-store-compliance{background:#111a21}
html[data-theme="dark"] .legal-store-region-title{color:#8fbed6}
html[data-theme="dark"] .legal-store-compliance-card{background:#111a21}
html[data-theme="dark"] .legal-store-compliance-card:hover{background:#111a21}
html[data-theme="dark"] .legal-store-compliance-card h4, html[data-theme="dark"] .legal-store-compliance-card .h4{color:#8fbed6}
html[data-theme="dark"] .legal-store-compliance-card p{color:#f7f9fb}
html[data-theme="dark"] .legal-store-compliance-card strong{color:#8fbed6}
html[data-theme="dark"] .legal-store-cta{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#e8eef3}
html[data-theme="dark"] .legal-store-btn-large::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .legal-store-cta-feature{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .legal-store-cta-feature:hover{background:rgba(17, 26, 33, 0.15)}
html[data-theme="dark"] .property-store-app-card h6, html[data-theme="dark"] .property-store-app-card .h6{color:#8fbed6}
html[data-theme="dark"] .supermarket-container{color:#e8eef3}
html[data-theme="dark"] .supermarket-hero::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(17, 26, 33, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')}
html[data-theme="dark"] .supermarket-btn-secondary{border:2px solid #22303a}
html[data-theme="dark"] .supermarket-btn-secondary:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .supermarket-demo-badge{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .supermarket-overview{background:#111a21}
html[data-theme="dark"] .supermarket-section-title{color:#8fbed6}
html[data-theme="dark"] .supermarket-section-subtitle{color:#f7f9fb}
html[data-theme="dark"] .supermarket-features{background:#111a21}
html[data-theme="dark"] .supermarket-feature-title{color:#8fbed6}
html[data-theme="dark"] .supermarket-feature-description{color:#f7f9fb}
html[data-theme="dark"] .supermarket-feature-list li{color:#f7f9fb}
html[data-theme="dark"] .supermarket-feature-link:hover{color:#9fb2c0}
html[data-theme="dark"] .supermarket-feature-visual{background:#111a21}
html[data-theme="dark"] .supermarket-additional{background:#111a21}
html[data-theme="dark"] .supermarket-feature-item{background:#111a21}
html[data-theme="dark"] .supermarket-feature-item h4, html[data-theme="dark"] .supermarket-feature-item .h4{color:#8fbed6}
html[data-theme="dark"] .supermarket-feature-item p{color:#f7f9fb}
html[data-theme="dark"] .supermarket-compliance{background:#111a21}
html[data-theme="dark"] .supermarket-region-title{color:#8fbed6}
html[data-theme="dark"] .supermarket-compliance-card{background:#111a21}
html[data-theme="dark"] .supermarket-compliance-card:hover{background:#111a21}
html[data-theme="dark"] .supermarket-compliance-card h4, html[data-theme="dark"] .supermarket-compliance-card .h4{color:#8fbed6}
html[data-theme="dark"] .supermarket-compliance-card p{color:#f7f9fb}
html[data-theme="dark"] .supermarket-compliance-card strong{color:#8fbed6}
html[data-theme="dark"] .supermarket-cta{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#e8eef3}
html[data-theme="dark"] .supermarket-cta-title{color:#8fbed6}
html[data-theme="dark"] .supermarket-btn-large::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .supermarket-cta .supermarket-btn-secondary{color:#8fbed6}
html[data-theme="dark"] .electronics-store-btn-secondary{color:#8fbed6}
html[data-theme="dark"] .electronics-store-cta{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);color:#e8eef3}
html[data-theme="dark"] .electronics-store-btn-large::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .electronics-store-cta-feature{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .electronics-store-cta-feature:hover{background:rgba(17, 26, 33, 0.15)}
html[data-theme="dark"] .bridge-whatsapp-modern-wrap{color:#f7f9fb}
html[data-theme="dark"] .bridge-whatsapp-section-title{color:#8fbed6}
html[data-theme="dark"] .bridge-whatsapp-section-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-whatsapp-features{background:#111a21}
html[data-theme="dark"] .bridge-whatsapp-feature-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-whatsapp-feature-title{color:#8fbed6}
html[data-theme="dark"] .bridge-whatsapp-feature-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-whatsapp-integration{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-whatsapp-integration-title{color:#8fbed6}
html[data-theme="dark"] .bridge-whatsapp-integration-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-whatsapp-benefit-item{color:#f7f9fb}
html[data-theme="dark"] .bridge-whatsapp-methods{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-whatsapp-method-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-whatsapp-method-title{color:#8fbed6}
html[data-theme="dark"] .bridge-whatsapp-method-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-whatsapp-apps{background:#111a21}
html[data-theme="dark"] .bridge-whatsapp-app-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-whatsapp-app-title{color:#8fbed6}
html[data-theme="dark"] .bridge-whatsapp-app-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-knowledge-modern-wrap{color:#f7f9fb}
html[data-theme="dark"] .bridge-knowledge-section-title{color:#8fbed6}
html[data-theme="dark"] .bridge-knowledge-section-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-knowledge-features{background:#111a21}
html[data-theme="dark"] .bridge-knowledge-feature-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-knowledge-feature-title{color:#8fbed6}
html[data-theme="dark"] .bridge-knowledge-feature-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-knowledge-integration{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-knowledge-integration-title{color:#8fbed6}
html[data-theme="dark"] .bridge-knowledge-integration-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-knowledge-benefit-item{color:#f7f9fb}
html[data-theme="dark"] .bridge-knowledge-apps{background:#111a21}
html[data-theme="dark"] .bridge-knowledge-app-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-knowledge-app-title{color:#8fbed6}
html[data-theme="dark"] .bridge-knowledge-app-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-knowledge-organization{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-knowledge-org-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-knowledge-org-title{color:#8fbed6}
html[data-theme="dark"] .bridge-knowledge-org-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-voip-modern-wrap{color:#f7f9fb}
html[data-theme="dark"] .bridge-voip-section-title{color:#8fbed6}
html[data-theme="dark"] .bridge-voip-section-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-voip-features{background:#111a21}
html[data-theme="dark"] .bridge-voip-feature-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-voip-feature-title{color:#8fbed6}
html[data-theme="dark"] .bridge-voip-feature-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-voip-integration{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-voip-integration-title{color:#8fbed6}
html[data-theme="dark"] .bridge-voip-integration-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-voip-benefit-item{color:#f7f9fb}
html[data-theme="dark"] .bridge-voip-apps{background:#111a21}
html[data-theme="dark"] .bridge-voip-app-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-voip-app-title{color:#8fbed6}
html[data-theme="dark"] .bridge-voip-app-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-voip-methods{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-voip-method-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-voip-method-title{color:#8fbed6}
html[data-theme="dark"] .bridge-voip-method-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-discuss-modern-wrap{color:#f7f9fb}
html[data-theme="dark"] .bridge-discuss-section-title{color:#8fbed6}
html[data-theme="dark"] .bridge-discuss-section-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-discuss-features{background:#111a21}
html[data-theme="dark"] .bridge-discuss-feature-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-discuss-feature-title{color:#8fbed6}
html[data-theme="dark"] .bridge-discuss-feature-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-discuss-integration{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-discuss-integration-title{color:#8fbed6}
html[data-theme="dark"] .bridge-discuss-integration-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-discuss-benefit-item{color:#f7f9fb}
html[data-theme="dark"] .bridge-discuss-apps{background:#111a21}
html[data-theme="dark"] .bridge-discuss-app-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-discuss-app-title{color:#8fbed6}
html[data-theme="dark"] .bridge-discuss-app-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-badge-text{color:#8fbed6}
html[data-theme="dark"] .bridge-iot-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-highlight{color:#8fbed6}
html[data-theme="dark"] .bridge-iot-btn-outline{color:#8fbed6}
html[data-theme="dark"] .bridge-iot-benefits{background:#111a21}
html[data-theme="dark"] .bridge-iot-benefit-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-benefit-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-iot-benefit-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-benefit-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-process{background:#111a21}
html[data-theme="dark"] .bridge-iot-process-step{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-process-step:hover{background:#111a21}
html[data-theme="dark"] .bridge-iot-process-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-process-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-devices{background:#111a21}
html[data-theme="dark"] .bridge-iot-device-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-device-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-device-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-device-feature{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-features{background:#111a21}
html[data-theme="dark"] .bridge-iot-feature-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-feature-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-iot-card-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-card-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-integrations{background:#111a21}
html[data-theme="dark"] .bridge-iot-integration-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-integration-icon{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-integration-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-iot-integration-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-iot-benefit-card, html[data-theme="dark"] .bridge-iot-process-step, html[data-theme="dark"] .bridge-iot-device-card, html[data-theme="dark"] .bridge-iot-feature-card, html[data-theme="dark"] .bridge-iot-integration-card{border:1px solid #22303a}
html[data-theme="dark"] .bridge-iot-highlight{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .bridge-approvals-badge-text{color:#8fbed6}
html[data-theme="dark"] .bridge-approvals-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-highlight{color:#8fbed6}
html[data-theme="dark"] .bridge-approvals-btn-outline{color:#8fbed6}
html[data-theme="dark"] .bridge-approvals-workflow{background:#111a21}
html[data-theme="dark"] .bridge-approvals-step-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-approvals-step-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-step-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-step-arrow{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-management{background:#111a21}
html[data-theme="dark"] .bridge-approvals-management-icon{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridge-approvals-management-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-management-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-workflows{background:#111a21}
html[data-theme="dark"] .bridge-approvals-workflows-icon{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridge-approvals-workflows-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-workflows-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-features{background:#111a21}
html[data-theme="dark"] .bridge-approvals-feature-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-approvals-feature-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-approvals-card-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-card-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-integrations{background:#111a21}
html[data-theme="dark"] .bridge-approvals-integration-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-approvals-integration-icon{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-approvals-integration-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-approvals-integration-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-approvals-feature-card, html[data-theme="dark"] .bridge-approvals-integration-card{border:1px solid #22303a}
html[data-theme="dark"] .bridge-approvals-highlight{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .bridge-appointments-badge-text{color:#8fbed6}
html[data-theme="dark"] .bridge-appointments-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-highlight{color:#8fbed6}
html[data-theme="dark"] .bridge-appointments-btn-outline{color:#8fbed6}
html[data-theme="dark"] .bridge-appointments-mobile{background:#111a21}
html[data-theme="dark"] .bridge-appointments-mobile-icon{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridge-appointments-mobile-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-mobile-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-setup{background:#111a21}
html[data-theme="dark"] .bridge-appointments-setup-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-setup-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-setup-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-video{background:#111a21}
html[data-theme="dark"] .bridge-appointments-video-feature{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-video-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-appointments-video-feature span{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-resources{background:#111a21}
html[data-theme="dark"] .bridge-appointments-reporting{background:#111a21}
html[data-theme="dark"] .bridge-appointments-reporting-icon{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridge-appointments-reporting-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-reporting-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-reminders{background:#111a21}
html[data-theme="dark"] .bridge-appointments-reminder-channel{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-reminder-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-appointments-reminder-channel span{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-reminder-image.secondary{border:4px solid #22303a}
html[data-theme="dark"] .bridge-appointments-features{background:#111a21}
html[data-theme="dark"] .bridge-appointments-feature-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-feature-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-appointments-card-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-card-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-integrations{background:#111a21}
html[data-theme="dark"] .bridge-appointments-integration-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-integration-icon{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-integration-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-appointments-integration-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-appointments-feature-card, html[data-theme="dark"] .bridge-appointments-integration-card{border:1px solid #22303a}
html[data-theme="dark"] .bridge-appointments-highlight{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .bridge-planning-badge-text{color:#8fbed6}
html[data-theme="dark"] .bridge-planning-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-planning-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-planning-highlight{color:#8fbed6}
html[data-theme="dark"] .bridge-planning-btn-outline{color:#8fbed6}
html[data-theme="dark"] .bridge-planning-visual{background:#111a21}
html[data-theme="dark"] .bridge-planning-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-planning-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-planning-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-planning-shifts{background:#111a21}
html[data-theme="dark"] .bridge-planning-shifts-icon{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .bridge-planning-shifts-feature-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-planning-shifts-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-planning-features{background:#111a21}
html[data-theme="dark"] .bridge-planning-feature-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-planning-feature-icon svg{stroke:#22303a}
html[data-theme="dark"] .bridge-planning-card-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-planning-card-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-planning-ecosystem{background:#111a21}
html[data-theme="dark"] .bridge-planning-ecosystem-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-planning-ecosystem-icon{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-planning-ecosystem-title{color:#f7f9fb}
html[data-theme="dark"] .bridge-planning-ecosystem-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-planning-feature-card, html[data-theme="dark"] .bridge-planning-ecosystem-card{border:1px solid #22303a}
html[data-theme="dark"] .bridge-planning-highlight{color:#8fbed6;color:#8fbed6}
html[data-theme="dark"] .timesheet-metric-description h5, html[data-theme="dark"] .timesheet-metric-description .h5{color:#8fbed6}
html[data-theme="dark"] .fieldservice-features-overview-header h2, html[data-theme="dark"] .fieldservice-features-overview-header .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-planning-text h2, html[data-theme="dark"] .fieldservice-planning-text .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-mobile-text h2, html[data-theme="dark"] .fieldservice-mobile-text .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-views-header h2, html[data-theme="dark"] .fieldservice-views-header .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-invoicing-text h2, html[data-theme="dark"] .fieldservice-invoicing-text .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-advanced-features-header h2, html[data-theme="dark"] .fieldservice-advanced-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-integrations-header h2, html[data-theme="dark"] .fieldservice-integrations-header .h2{color:#8fbed6}
html[data-theme="dark"] .fieldservice-integration-card h5, html[data-theme="dark"] .fieldservice-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .fieldservice-testimonials-header h2, html[data-theme="dark"] .fieldservice-testimonials-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-features-overview-header h2, html[data-theme="dark"] .project-features-overview-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-dashboard-showcase-text h2, html[data-theme="dark"] .project-dashboard-showcase-text .h2{color:#8fbed6}
html[data-theme="dark"] .project-collaboration-text h2, html[data-theme="dark"] .project-collaboration-text .h2{color:#8fbed6}
html[data-theme="dark"] .project-resources-header h2, html[data-theme="dark"] .project-resources-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-control-header h2, html[data-theme="dark"] .project-control-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-advanced-features-header h2, html[data-theme="dark"] .project-advanced-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-integrations-header h2, html[data-theme="dark"] .project-integrations-header .h2{color:#8fbed6}
html[data-theme="dark"] .project-integration-card h5, html[data-theme="dark"] .project-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .project-testimonials-header h2, html[data-theme="dark"] .project-testimonials-header .h2{color:#8fbed6}
html[data-theme="dark"] .survey-builder-feature-content h5, html[data-theme="dark"] .survey-builder-feature-content .h5{color:#8fbed6}
html[data-theme="dark"] .survey-tracking-header h2, html[data-theme="dark"] .survey-tracking-header .h2{color:#8fbed6}
html[data-theme="dark"] .survey-communication-header h2, html[data-theme="dark"] .survey-communication-header .h2{color:#8fbed6}
html[data-theme="dark"] .survey-integration-card h5, html[data-theme="dark"] .survey-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .survey-templates-text h2, html[data-theme="dark"] .survey-templates-text .h2{color:#8fbed6}
html[data-theme="dark"] .survey-analytics-text h2, html[data-theme="dark"] .survey-analytics-text .h2{color:#8fbed6}
html[data-theme="dark"] .survey-features-header h2, html[data-theme="dark"] .survey-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .automation-workflow-text h2, html[data-theme="dark"] .automation-workflow-text .h2{color:#8fbed6}
html[data-theme="dark"] .automation-email-header h2, html[data-theme="dark"] .automation-email-header .h2{color:#8fbed6}
html[data-theme="dark"] .automation-followup-header h2, html[data-theme="dark"] .automation-followup-header .h2{color:#8fbed6}
html[data-theme="dark"] .automation-communication-header h2, html[data-theme="dark"] .automation-communication-header .h2{color:#8fbed6}
html[data-theme="dark"] .automation-integration-card h5, html[data-theme="dark"] .automation-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .automation-quotes-text h2, html[data-theme="dark"] .automation-quotes-text .h2{color:#8fbed6}
html[data-theme="dark"] .automation-analytics-text h2, html[data-theme="dark"] .automation-analytics-text .h2{color:#8fbed6}
html[data-theme="dark"] .automation-features-header h2, html[data-theme="dark"] .automation-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .events-speaker-header h2, html[data-theme="dark"] .events-speaker-header .h2{color:#8fbed6}
html[data-theme="dark"] .events-tickets-text h2, html[data-theme="dark"] .events-tickets-text .h2{color:#8fbed6}
html[data-theme="dark"] .events-sponsors-header h2, html[data-theme="dark"] .events-sponsors-header .h2{color:#8fbed6}
html[data-theme="dark"] .events-platform-header h2, html[data-theme="dark"] .events-platform-header .h2{color:#8fbed6}
html[data-theme="dark"] .pos-page-highlight{color:#8fbed6}
html[data-theme="dark"] .pos-page-btn-secondary{color:#8fbed6}
html[data-theme="dark"] .pos-page-hero-title{color:#8fbed6}
html[data-theme="dark"] .pos-page-stat-number{color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-btn-secondary{color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-social-content h2, html[data-theme="dark"] .bridge-accounting-social-content .h2, html[data-theme="dark"] .bridge-accounting-cta-content h2, html[data-theme="dark"] .bridge-accounting-cta-content .h2{color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-stat-number{color:#8fbed6}
html[data-theme="dark"] .sms-campaign-text h2, html[data-theme="dark"] .sms-campaign-text .h2{color:#f7f9fb}
html[data-theme="dark"] .sms-pricing-text h2, html[data-theme="dark"] .sms-pricing-text .h2{color:#f7f9fb}
html[data-theme="dark"] .sms-technical-text h2, html[data-theme="dark"] .sms-technical-text .h2{color:#f7f9fb}
html[data-theme="dark"] .sms-targeting-text h2, html[data-theme="dark"] .sms-targeting-text .h2{color:#f7f9fb}
html[data-theme="dark"] .email-campaigns-header h2, html[data-theme="dark"] .email-campaigns-header .h2{color:#8fbed6}
html[data-theme="dark"] .email-segmentation-text h2, html[data-theme="dark"] .email-segmentation-text .h2{color:#8fbed6}
html[data-theme="dark"] .email-responsive-text h2, html[data-theme="dark"] .email-responsive-text .h2{color:#8fbed6}
html[data-theme="dark"] .email-analytics-header h2, html[data-theme="dark"] .email-analytics-header .h2{color:#8fbed6}
html[data-theme="dark"] .email-advanced-header h2, html[data-theme="dark"] .email-advanced-header .h2{color:#8fbed6}
html[data-theme="dark"] .email-integrations-header h2, html[data-theme="dark"] .email-integrations-header .h2{color:#8fbed6}
html[data-theme="dark"] .pos-page-btn-secondary{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .pos-page-hero-subtitle{color:#f7f9fb}
html[data-theme="dark"] .pos-page-stat-label{color:#9fb2c0}
html[data-theme="dark"] .pos-page-badge-text{color:#f7f9fb}
html[data-theme="dark"] .bridge-accounting-social-content h2, html[data-theme="dark"] .bridge-accounting-social-content .h2{color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-stat-label{color:#9fb2c0}
html[data-theme="dark"] .bridge-accounting-cta-content h2, html[data-theme="dark"] .bridge-accounting-cta-content .h2{color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-cta-content p{color:#f7f9fb}
html[data-theme="dark"] .bridge-accounting-btn-secondary{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge-accounting-cta-note{color:#9fb2c0}
html[data-theme="dark"] .pos-page-highlight-badge{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .pos-page-highlight-text{color:#8fbed6}
html[data-theme="dark"] .fleet-overview-text h2, html[data-theme="dark"] .fleet-overview-text .h2{color:#8fbed6}
html[data-theme="dark"] .fleet-contracts-text h2, html[data-theme="dark"] .fleet-contracts-text .h2{color:#8fbed6}
html[data-theme="dark"] .fleet-costs-text h2, html[data-theme="dark"] .fleet-costs-text .h2{color:#8fbed6}
html[data-theme="dark"] .fleet-analytics-text h2, html[data-theme="dark"] .fleet-analytics-text .h2{color:#8fbed6}
html[data-theme="dark"] .fleet-integrations-header h2, html[data-theme="dark"] .fleet-integrations-header .h2{color:#8fbed6}
html[data-theme="dark"] .referral-tracking-header h2, html[data-theme="dark"] .referral-tracking-header .h2{color:#8fbed6}
html[data-theme="dark"] .referral-followup-header h2, html[data-theme="dark"] .referral-followup-header .h2{color:#8fbed6}
html[data-theme="dark"] .referral-communication-header h2, html[data-theme="dark"] .referral-communication-header .h2{color:#8fbed6}
html[data-theme="dark"] .referral-integration-card h5, html[data-theme="dark"] .referral-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .referral-rewards-header h2, html[data-theme="dark"] .referral-rewards-header .h2{color:#8fbed6}
html[data-theme="dark"] .referral-analytics-text h2, html[data-theme="dark"] .referral-analytics-text .h2{color:#8fbed6}
html[data-theme="dark"] .referral-all-features-header h2, html[data-theme="dark"] .referral-all-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .appraisal-benefits-header h2, html[data-theme="dark"] .appraisal-benefits-header .h2{color:#8fbed6}
html[data-theme="dark"] .appraisal-survey-header h2, html[data-theme="dark"] .appraisal-survey-header .h2{color:#8fbed6}
html[data-theme="dark"] .appraisal-custom-text h2, html[data-theme="dark"] .appraisal-custom-text .h2{color:#8fbed6}
html[data-theme="dark"] .appraisal-automation-text h2, html[data-theme="dark"] .appraisal-automation-text .h2{color:#8fbed6}
html[data-theme="dark"] .appraisal-integrations-header h2, html[data-theme="dark"] .appraisal-integrations-header .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-request-text h2, html[data-theme="dark"] .timeoff-request-text .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-followup-header h2, html[data-theme="dark"] .timeoff-followup-header .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-communication-header h2, html[data-theme="dark"] .timeoff-communication-header .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-integration-card h5, html[data-theme="dark"] .timeoff-integration-card .h5{color:#8fbed6}
html[data-theme="dark"] .timeoff-quick-header h2, html[data-theme="dark"] .timeoff-quick-header .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-reporting-text h2, html[data-theme="dark"] .timeoff-reporting-text .h2{color:#8fbed6}
html[data-theme="dark"] .timeoff-all-features-header h2, html[data-theme="dark"] .timeoff-all-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-status-text h2, html[data-theme="dark"] .recruitment-status-text .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-pipeline-header h2, html[data-theme="dark"] .recruitment-pipeline-header .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-automation-text h2, html[data-theme="dark"] .recruitment-automation-text .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-custom-header h2, html[data-theme="dark"] .recruitment-custom-header .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-scheduling-text h2, html[data-theme="dark"] .recruitment-scheduling-text .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-reporting-header h2, html[data-theme="dark"] .recruitment-reporting-header .h2{color:#8fbed6}
html[data-theme="dark"] .recruitment-all-features-header h2, html[data-theme="dark"] .recruitment-all-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .employees-features-header h2, html[data-theme="dark"] .employees-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .employees-showcase-text h2, html[data-theme="dark"] .employees-showcase-text .h2{color:#8fbed6}
html[data-theme="dark"] .employees-documents-header h2, html[data-theme="dark"] .employees-documents-header .h2{color:#8fbed6}
html[data-theme="dark"] .employees-all-features-header h2, html[data-theme="dark"] .employees-all-features-header .h2{color:#8fbed6}
html[data-theme="dark"] .quality-content-text h2, html[data-theme="dark"] .quality-content-text .h2{color:#8fbed6}
html[data-theme="dark"] .warehouse-replenishment-section{background:#111a21}
html[data-theme="dark"] .warehouse-section-title{color:#8fbed6}
html[data-theme="dark"] .warehouse-section-subtitle{color:#8fbed6}
html[data-theme="dark"] .warehouse-feature-card{background:#111a21}
html[data-theme="dark"] .warehouse-feature-title{color:#8fbed6}
html[data-theme="dark"] .warehouse-feature-description{color:#8fbed6}
html[data-theme="dark"] .warehouse-operations-section{background:#111a21}
html[data-theme="dark"] .warehouse-content-text h2, html[data-theme="dark"] .warehouse-content-text .h2{color:#8fbed6}
html[data-theme="dark"] .warehouse-section-description{color:#8fbed6}
html[data-theme="dark"] .warehouse-picking-section{background:#111a21}
html[data-theme="dark"] .warehouse-picking-card{background:#111a21}
html[data-theme="dark"] .warehouse-picking-title{color:#8fbed6}
html[data-theme="dark"] .warehouse-picking-description{color:#8fbed6}
html[data-theme="dark"] .warehouse-features-grid-section{background:#111a21}
html[data-theme="dark"] .warehouse-advanced-card{background:#111a21}
html[data-theme="dark"] .warehouse-advanced-title{color:#8fbed6}
html[data-theme="dark"] .warehouse-advanced-description{color:#8fbed6}
html[data-theme="dark"] .warehouse-btn-outline{color:#8fbed6}
html[data-theme="dark"] .elearning-section-header h2, html[data-theme="dark"] .elearning-section-header .h2, html[data-theme="dark"] .elearning-section-header h3, html[data-theme="dark"] .elearning-section-header .h3{color:#8fbed6}
html[data-theme="dark"] .elearning-column-content h3, html[data-theme="dark"] .elearning-column-content .h3, html[data-theme="dark"] .elearning-column-content h2, html[data-theme="dark"] .elearning-column-content .h2{color:#8fbed6}
html[data-theme="dark"] .livechat-section-header h2, html[data-theme="dark"] .livechat-section-header .h2, html[data-theme="dark"] .livechat-section-header h3, html[data-theme="dark"] .livechat-section-header .h3{color:#8fbed6}
html[data-theme="dark"] .livechat-column-content h3, html[data-theme="dark"] .livechat-column-content .h3, html[data-theme="dark"] .livechat-column-content h2, html[data-theme="dark"] .livechat-column-content .h2{color:#8fbed6}
html[data-theme="dark"] .forum-app-card h6, html[data-theme="dark"] .forum-app-card .h6{color:#8fbed6}
html[data-theme="dark"] .blog-section-header h2, html[data-theme="dark"] .blog-section-header .h2{color:#8fbed6}
html[data-theme="dark"] .blog-app-card h6, html[data-theme="dark"] .blog-app-card .h6{color:#8fbed6}
html[data-theme="dark"] .ecommerce-showcase-text h2, html[data-theme="dark"] .ecommerce-showcase-text .h2{color:#8fbed6}
html[data-theme="dark"] .ecommerce-section-header h2, html[data-theme="dark"] .ecommerce-section-header .h2{color:#8fbed6}
html[data-theme="dark"] .ecommerce-app-card h6 a, html[data-theme="dark"] .ecommerce-app-card .h6 a{color:#8fbed6}
html[data-theme="dark"] .bridge-website-cta-section .bridge-website-btn-outline{border-color:#22303a}
html[data-theme="dark"] .bridge-website-cta-section .bridge-website-btn-outline:hover{background:#111a21}
html[data-theme="dark"] .bridge-rental-cta-section .bridge-rental-btn-outline{border-color:#22303a}
html[data-theme="dark"] .bridge-rental-cta-section .bridge-rental-btn-outline:hover{background:#111a21}
html[data-theme="dark"] .bridge-sub-feature-icon{background:linear-gradient(135deg, var(--bridge-secondary), #162028)}
html[data-theme="dark"] .bridge-sub-cta-section .bridge-sub-btn-outline{border-color:#22303a}
html[data-theme="dark"] .bridge-sub-cta-section .bridge-sub-btn-outline:hover{background:#111a21}
html[data-theme="dark"] .pos-page-hero{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .pos-page-btn::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .bridge_features_page_container{color:#f7f9fb;background:#111a21}
html[data-theme="dark"] .bridge_features_layout_section{background:#111a21}
html[data-theme="dark"] .bridge_features_sidebar{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_features_nav_title{color:#8fbed6;border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_features_nav_link{color:#f7f9fb}
html[data-theme="dark"] .bridge_features_nav_link:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge_features_nav_link.active{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge_features_section_title{color:#8fbed6}
html[data-theme="dark"] .bridge_features_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_features_card_title{color:#8fbed6}
html[data-theme="dark"] .bridge_features_card_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_features_integration_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_features_discover_link:hover{color:#9fb2c0}
html[data-theme="dark"] .bridge_crm_page_container{color:#f7f9fb;background:#111a21}
html[data-theme="dark"] .bridge_crm_section_title{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_section_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_crm_feature_title{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_feature_subtitle{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_feature_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_crm_highlight_circle{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_highlight_underline{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_btn_secondary{background:rgba(17, 26, 33, 0.1);border:1px solid rgba(34, 48, 58, 0.3)}
html[data-theme="dark"] .bridge_crm_btn_secondary:hover{background:rgba(17, 26, 33, 0.2);border-color:rgba(34, 48, 58, 0.5)}
html[data-theme="dark"] .bridge_crm_btn_outline{color:#8fbed6;border:1px solid #22303a}
html[data-theme="dark"] .bridge_crm_showcase_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_pipeline_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_followup_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_communication_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_integrations_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_integration_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_crm_integration_icon{background:#111a21}
html[data-theme="dark"] .bridge_crm_integration_title{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_quotations_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_step_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_crm_step_title{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_step_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_crm_quotation_feature{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge_crm_quotation_feature:hover{background:#111a21}
html[data-theme="dark"] .bridge_crm_stat_item{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);border:1px solid #22303a}
html[data-theme="dark"] .bridge_crm_stat_label{color:#f7f9fb}
html[data-theme="dark"] .bridge_crm_reporting_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_features_section{background:#111a21}
html[data-theme="dark"] .bridge_crm_features_grid{border:1px solid #22303a;background:#111a21}
html[data-theme="dark"] .bridge_crm_feature_card{background:#111a21;border-right:1px solid #22303a;border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_crm_feature_card:hover{background:#111a21}
html[data-theme="dark"] .bridge_crm_card_title{color:#8fbed6}
html[data-theme="dark"] .bridge_crm_card_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_crm_feature_card{border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_page_container{color:#f7f9fb;background:#111a21}
html[data-theme="dark"] .bridge_sign_section_title{color:#8fbed6}
html[data-theme="dark"] .bridge_sign_section_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_hero_section{background:linear-gradient(180deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge_sign_hero_title{color:#8fbed6}
html[data-theme="dark"] .bridge_sign_hero_subtitle{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_btn_secondary{background:#111a21;color:#8fbed6;border:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_btn_secondary:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge_sign_showcase_section{background:#111a21}
html[data-theme="dark"] .bridge_sign_automation_section{background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_title{color:#8fbed6}
html[data-theme="dark"] .bridge_sign_feature_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_process_section{background:#111a21}
html[data-theme="dark"] .bridge_sign_mobile_section{background:#111a21}
html[data-theme="dark"] .bridge_sign_features_section{background:linear-gradient(180deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge_sign_features_intro{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_features_grid{border:1px solid #22303a;background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(1){border-bottom:1px solid #22303a;background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(1):hover{background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(2){border-right:1px solid #22303a;border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(3){border-right:1px solid #22303a;border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(4){border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(5){border-right:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(6){border-right:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(7){background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(7):hover{background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_card:not(.bridge_sign_feature_primary){background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_card:not(.bridge_sign_feature_primary):hover{background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_icon{background:#111a21}
html[data-theme="dark"] .bridge_sign_feature_card:hover .bridge_sign_feature_icon svg path, html[data-theme="dark"] .bridge_sign_feature_card:hover .bridge_sign_feature_icon svg polyline{stroke:#22303a}
html[data-theme="dark"] .bridge_sign_card_title{color:#8fbed6}
html[data-theme="dark"] .bridge_sign_card_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_benefits_grid{border:1px solid #22303a;background:#111a21}
html[data-theme="dark"] .bridge_sign_benefit_item{background:#111a21;border-right:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_benefit_item:hover{background:#111a21}
html[data-theme="dark"] .bridge_sign_benefit_title{color:#8fbed6}
html[data-theme="dark"] .bridge_sign_benefit_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(3){border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(4){border-right:1px solid #22303a;border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_card:nth-child(5){border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_benefit_item:nth-child(3){border-top:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(1), html[data-theme="dark"] .bridge_sign_feature_card:nth-child(2), html[data-theme="dark"] .bridge_sign_feature_card:nth-child(3), html[data-theme="dark"] .bridge_sign_feature_card:nth-child(4), html[data-theme="dark"] .bridge_sign_feature_card:nth-child(5), html[data-theme="dark"] .bridge_sign_feature_card:nth-child(6), html[data-theme="dark"] .bridge_sign_feature_primary:nth-child(7){border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_sign_benefit_item{border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_page_container{color:#f7f9fb;background:#111a21}
html[data-theme="dark"] .bridge_docs_section_title{color:#8fbed6}
html[data-theme="dark"] .bridge_docs_section_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_docs_hero_section{background:linear-gradient(180deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge_docs_hero_title{color:#8fbed6}
html[data-theme="dark"] .bridge_docs_hero_subtitle{color:#f7f9fb}
html[data-theme="dark"] .bridge_docs_btn_secondary{background:#111a21;color:#8fbed6;border:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_btn_secondary:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridge_docs_btn_outline{color:#8fbed6;border:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_showcase_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_intro_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_methods_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_method_item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_method_icon_wrapper{background:#111a21}
html[data-theme="dark"] .bridge_docs_method_title{color:#8fbed6}
html[data-theme="dark"] .bridge_docs_dashboard_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_signing_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_feature_title{color:#8fbed6}
html[data-theme="dark"] .bridge_docs_feature_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_docs_integration_badge{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_badge_text{color:#f7f9fb}
html[data-theme="dark"] .bridge_docs_organization_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_collaboration_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_features_section{background:#111a21}
html[data-theme="dark"] .bridge_docs_feature_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge_docs_card_title{color:#8fbed6}
html[data-theme="dark"] .bridge_docs_card_description{color:#f7f9fb}
html[data-theme="dark"] .bridge_expenses_btn::before{background:linear-gradient(90deg, transparent, rgba(17, 26, 33, 0.2), transparent)}
html[data-theme="dark"] .bridge-features-cta .bridge-features-btn-secondary{border-color:rgba(34, 48, 58, 0.3)}
html[data-theme="dark"] .bridge-features-cta .bridge-features-btn-secondary:hover{background:rgba(17, 26, 33, 0.1);border-color:#22303a}
html[data-theme="dark"] .bridge-btn-cta-primary{background:#111a21}
html[data-theme="dark"] .bridge-btn-cta-outline{border:1px solid rgba(34, 48, 58, 0.6)}
html[data-theme="dark"] .bridge-btn-cta-outline:hover{background:rgba(17, 26, 33, 0.1);border-color:#22303a}
html[data-theme="dark"] .bridge_erp_demo_section{background-color:#111a21}
html[data-theme="dark"] .hero_title{color:#8fbed6}
html[data-theme="dark"] .hero_description{color:#9fb2c0}
html[data-theme="dark"] .demo_search_results{background:#111a21}
html[data-theme="dark"] .demo_tabs{background:#111a21}
html[data-theme="dark"] .demo_tabs .nav-link{color:#9fb2c0}
html[data-theme="dark"] .demo_card{background:#111a21}
html[data-theme="dark"] .demo_card_title{color:#8fbed6}
html[data-theme="dark"] .demo_credentials p{color:#9fb2c0;background:#111a21}
html[data-theme="dark"] .demo_credentials p strong{color:#8fbed6}
html[data-theme="dark"] .demo_btn::before{background:rgba(17, 26, 33, 0.1)}
html[data-theme="dark"] .demo_cta_content_light{color:#8fbed6}
html[data-theme="dark"] .demo_cta_title_light{color:#8fbed6}
html[data-theme="dark"] .demo_cta_description_light{color:#9fb2c0}
html[data-theme="dark"] .demo_cta_feature_light{background:#111a21}
html[data-theme="dark"] .demo_cta_feature_light span{color:#8fbed6}
html[data-theme="dark"] .demo_cta_btn_secondary_light{color:#8fbed6}
html[data-theme="dark"] .demo_search_results{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridgeerp-privacy-main-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-meta-info{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridgeerp-privacy-meta-label{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp-privacy-toc-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-toc-link{background:#111a21;border:1px solid #22303a;color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-toc-link:hover{background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-section-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-text{color:#b6c4cf}
html[data-theme="dark"] .bridgeerp-privacy-subsection-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-list li{color:#b6c4cf}
html[data-theme="dark"] .bridgeerp-privacy-list li::marker{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-important-note{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridgeerp-privacy-security-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridgeerp-privacy-security-item h6, html[data-theme="dark"] .bridgeerp-privacy-security-item .h6{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-contact-box{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridgeerp-privacy-contact-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-contact-text{color:#9fb2c0}
html[data-theme="dark"] .bridgeerp-privacy-related-link{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-privacy-related-link:hover{color:#8fbed6}
html[data-theme="dark"] .bridgeerp-privacy-action-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-company-main-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-principle-title{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-company-action-area .btn-light{background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .bridgeerp-company-action-area .btn-outline-light{border:2px solid #22303a}
html[data-theme="dark"] .choose-industry-page{background:#111a21}
html[data-theme="dark"] .choose-industry-title{color:#f7f9fb}
html[data-theme="dark"] .choose-industry-subtitle{color:#f7f9fb}
html[data-theme="dark"] .industry-filter-pill{border:1px solid #22303a;background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .industry-filter-pill:hover{color:#8fbed6}
html[data-theme="dark"] .choose-industry-search input{background:#111a21}
html[data-theme="dark"] .choose-industry-search .search-icon{color:#f7f9fb}
html[data-theme="dark"] .industry-card-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .industry-card-icon i{color:#9fb2c0}
html[data-theme="dark"] .industry-card-item h3, html[data-theme="dark"] .industry-card-item .h3{color:#f7f9fb}
html[data-theme="dark"] .industry-card-item p{color:#f7f9fb}
html[data-theme="dark"] .no-results-content h3, html[data-theme="dark"] .no-results-content .h3{color:#f7f9fb}
html[data-theme="dark"] .no-results-content p{color:#f7f9fb}
html[data-theme="dark"] .choose-industry-no-results{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .clear-search-btn{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .clear-search-btn:hover{background:#111a21}
html[data-theme="dark"] .help-text{color:#f7f9fb}
html[data-theme="dark"] .help-text a{color:#9fb2c0}
html[data-theme="dark"] .success-packs-main-container{background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .success-packs-highlight{color:#9fb2c0}
html[data-theme="dark"] .success-packs-stat-number{color:#9fb2c0}
html[data-theme="dark"] .success-packs-pricing-section{background:#111a21}
html[data-theme="dark"] .success-packs-pricing-header h2, html[data-theme="dark"] .success-packs-pricing-header .h2{color:#f7f9fb}
html[data-theme="dark"] .success-packs-pricing-subtitle{color:#9fb2c0}
html[data-theme="dark"] .success-packs-limited-time{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .success-packs-offer-text{color:#f7f9fb}
html[data-theme="dark"] .success-packs-pricing-card{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .success-packs-card-header h3, html[data-theme="dark"] .success-packs-card-header .h3{color:#f7f9fb}
html[data-theme="dark"] .success-packs-card-desc{color:#9fb2c0}
html[data-theme="dark"] .success-packs-price-main{color:#f7f9fb}
html[data-theme="dark"] .success-packs-price-sub{color:#9fb2c0}
html[data-theme="dark"] .success-packs-feature{color:#f7f9fb}
html[data-theme="dark"] .success-packs-card-note{color:#9fb2c0}
html[data-theme="dark"] .success-packs-custom-solution{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .success-packs-guarantee-section{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .success-packs-guarantee-content h3, html[data-theme="dark"] .success-packs-guarantee-content .h3{color:#f7f9fb}
html[data-theme="dark"] .success-packs-guarantee-content p{color:#9fb2c0}
html[data-theme="dark"] .success-packs-solution-section{background:#111a21}
html[data-theme="dark"] .success-packs-solution-content h2, html[data-theme="dark"] .success-packs-solution-content .h2{color:#f7f9fb}
html[data-theme="dark"] .success-packs-solution-subtitle{color:#9fb2c0}
html[data-theme="dark"] .success-packs-benefit-item{background:#111a21}
html[data-theme="dark"] .success-packs-benefit-item h4, html[data-theme="dark"] .success-packs-benefit-item .h4{color:#f7f9fb}
html[data-theme="dark"] .success-packs-benefit-item p{color:#9fb2c0}
html[data-theme="dark"] .success-packs-problem-section{background:#111a21}
html[data-theme="dark"] .success-packs-problem-section h2, html[data-theme="dark"] .success-packs-problem-section .h2{color:#f7f9fb}
html[data-theme="dark"] .success-packs-problem-item{background:#111a21}
html[data-theme="dark"] .success-packs-problem-item h4, html[data-theme="dark"] .success-packs-problem-item .h4{color:#f7f9fb}
html[data-theme="dark"] .success-packs-problem-item p{color:#9fb2c0}
html[data-theme="dark"] .success-packs-social-proof-section{background:#111a21}
html[data-theme="dark"] .success-packs-social-proof-section h2, html[data-theme="dark"] .success-packs-social-proof-section .h2{color:#f7f9fb}
html[data-theme="dark"] .success-packs-testimonial{background:#111a21}
html[data-theme="dark"] .success-packs-testimonial-content p{color:#f7f9fb}
html[data-theme="dark"] .success-packs-testimonial-author strong{color:#f7f9fb}
html[data-theme="dark"] .success-packs-testimonial-author span{color:#9fb2c0}
html[data-theme="dark"] .success-packs-primary-cta{background:#111a21;color:#9fb2c0}
html[data-theme="dark"] .success-packs-primary-cta:hover{color:#9fb2c0}
html[data-theme="dark"] .success-packs-secondary-cta{border:2px solid #22303a}
html[data-theme="dark"] .success-packs-secondary-cta:hover{background:#111a21;color:#9fb2c0}
html[data-theme="dark"] .success-packs-faq-section{background:#111a21}
html[data-theme="dark"] .success-packs-faq-section h2, html[data-theme="dark"] .success-packs-faq-section .h2{color:#f7f9fb}
html[data-theme="dark"] .success-packs-faq-item{background:#111a21}
html[data-theme="dark"] .success-packs-faq-item h4, html[data-theme="dark"] .success-packs-faq-item .h4{color:#f7f9fb}
html[data-theme="dark"] .success-packs-faq-item p{color:#9fb2c0}
html[data-theme="dark"] .all-apps-page{background:#111a21}
html[data-theme="dark"] .all-apps-hero{background:linear-gradient(135deg, #111a21 0%, #111a21 100%);border-bottom:1px solid #22303a}
html[data-theme="dark"] .all-apps-hero::before{background:rgba(17, 26, 33, 0.8)}
html[data-theme="dark"] .all-apps-title{color:#e8eef3}
html[data-theme="dark"] .category-heading{color:#e8eef3}
html[data-theme="dark"] .app-category[data-category="sales"] .category-heading::before{background:linear-gradient(135deg, #34a853, #162028)}
html[data-theme="dark"] .app-category[data-category="finance"] .category-heading::before{background:linear-gradient(135deg, #162028, #ea4335)}
html[data-theme="dark"] .app-category[data-category="marketing"] .category-heading::before{background:linear-gradient(135deg, #162028, #ff9ff3)}
html[data-theme="dark"] .app-category[data-category="services"] .category-heading::before{background:linear-gradient(135deg, #162028, #0abde3)}
html[data-theme="dark"] .app-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .app-item::before{background:linear-gradient(90deg, #4285f4, #34a853, #162028, #ea4335)}
html[data-theme="dark"] .app-name{color:#e8eef3}
html[data-theme="dark"] .app-desc{color:#9fb2c0}
html[data-theme="dark"] .navbar .dropdown-menu.o_mega_menu h6, html[data-theme="dark"] .navbar .o_mega_menu.o_dropdown_menu h6, html[data-theme="dark"] .navbar .dropdown-menu.o_mega_menu .h6, html[data-theme="dark"] .navbar .o_mega_menu.o_dropdown_menu .h6, html[data-theme="dark"] .navbar .dropdown-menu.o_mega_menu .dropdown-header, html[data-theme="dark"] .navbar .o_mega_menu.o_dropdown_menu .dropdown-header{color:#f7f9fb;border-bottom:2px solid #22303a}
html[data-theme="dark"] .industries_filter_btn{background:#111a21}
html[data-theme="dark"] .industries_card{background:#111a21}
html[data-theme="dark"] .bridge-home-hero-section{background:linear-gradient(to bottom, #111a21, #111a21)}
html[data-theme="dark"] .bridge-home-hero-title{color:#8fbed6}
html[data-theme="dark"] .bridge-home-hero-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-btn-secondary-enhanced{color:#8fbed6}
html[data-theme="dark"] .bridge-home-trust-item{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-trust-item i{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-hero-stats{border-top:1px solid #22303a}
html[data-theme="dark"] .bridge-home-stat-number{color:#8fbed6}
html[data-theme="dark"] .bridge-home-stat-label{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-dashboard-preview{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-home-dashboard-header{border-bottom:1px solid #22303a}
html[data-theme="dark"] .bridge-home-dashboard-title{color:#8fbed6}
html[data-theme="dark"] .bridge-home-stat-value{color:#8fbed6}
html[data-theme="dark"] .bridge-home-stat-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-stat-change{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-chart-preview{background:#111a21}
html[data-theme="dark"] .bridge-home-app-showcase{background:#111a21}
html[data-theme="dark"] .bridge-home-section-title{color:#8fbed6}
html[data-theme="dark"] .bridge-home-section-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-app-card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bridge-home-app-name{color:#8fbed6}
html[data-theme="dark"] .bridge-home-app-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-why-choose{background:#111a21}
html[data-theme="dark"] .bridge-home-feature-card{background:#111a21}
html[data-theme="dark"] .bridge-home-feature-title{color:#8fbed6}
html[data-theme="dark"] .bridge-home-feature-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-industries-section{background:linear-gradient(135deg, #111a21 0%, #111a21 100%)}
html[data-theme="dark"] .bridge-industries-title{color:#8fbed6}
html[data-theme="dark"] .bridge-industries-subtitle{color:#9fb2c0}
html[data-theme="dark"] .bridge-industry-card{background:rgba(17, 26, 33, 0.8);border:1px solid rgba(34, 48, 58, 0.2)}
html[data-theme="dark"] .bridge-industry-title{color:#8fbed6}
html[data-theme="dark"] .bridge-industry-desc{color:#9fb2c0}
html[data-theme="dark"] .bridge-industry-features li{color:#9fb2c0}
html[data-theme="dark"] .bridge-industry-card:hover .bridge-industry-features li{color:#f7f9fb}
html[data-theme="dark"] .bridge-industries-btn::before{background:linear-gradient(135deg, rgba(17, 26, 33, 0.2) 0%, transparent 100%)}
html[data-theme="dark"] .bridge-home-social-proof{background:#111a21}
html[data-theme="dark"] .bridge-home-testimonial-card{background:#111a21}
html[data-theme="dark"] .bridge-home-testimonial-text{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-author-name{color:#8fbed6}
html[data-theme="dark"] .bridge-home-author-role{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-trust-number{color:#8fbed6}
html[data-theme="dark"] .bridge-home-trust-label{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-final-cta{background:#111a21;border-top:1px solid #22303a}
html[data-theme="dark"] .bridge-home-cta-title{color:#8fbed6}
html[data-theme="dark"] .bridge-home-cta-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-home-btn-cta-secondary{color:#8fbed6;background:#111a21}
html[data-theme="dark"] .bridge-home-cta-guarantee{color:#9fb2c0}
html[data-theme="dark"] .hero-section .stat-number{color:#f7f9fb}
html[data-theme="dark"] .hero-section .stat-label{color:#9fb2c0}
html[data-theme="dark"] .industries-page{background:#111a21}
html[data-theme="dark"] .industries-title{color:#f7f9fb}
html[data-theme="dark"] .industries-subtitle{color:#f7f9fb}
html[data-theme="dark"] .stat-number{color:#8fbed6}
html[data-theme="dark"] .stat-label{color:#f7f9fb}
html[data-theme="dark"] .industries-search input{background:#111a21}
html[data-theme="dark"] .industries-search .search-icon{color:#f7f9fb}
html[data-theme="dark"] .industries-filter-btn{border:1px solid #22303a;background:#111a21;color:#f7f9fb}
html[data-theme="dark"] .industries-filter-btn:hover{color:#8fbed6;background:#111a21}
html[data-theme="dark"] .industries-card.industries_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .industries-card-icon i{color:#8fbed6}
html[data-theme="dark"] .industries_card h4, html[data-theme="dark"] .industries_card .h4{color:#f7f9fb}
html[data-theme="dark"] .industries_card p{color:#f7f9fb}
html[data-theme="dark"] .industries-no-results{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .help-text a{color:#8fbed6}
html[data-theme="dark"] .industries_cta_section{background:#111a21;border:2px solid #22303a}
html[data-theme="dark"] .industries_cta_content h2, html[data-theme="dark"] .industries_cta_content .h2{color:#8fbed6}
html[data-theme="dark"] .industries_cta_content .lead{color:#f7f9fb}
html[data-theme="dark"] .industries_cta_secondary{color:#8fbed6}
html[data-theme="dark"] .industries_cta_features{color:#f7f9fb}
html[data-theme="dark"] h2, html[data-theme="dark"] .h2, html[data-theme="dark"] h3, html[data-theme="dark"] .h3, html[data-theme="dark"] h4, html[data-theme="dark"] .h4{color:#f7f9fb}
html[data-theme="dark"] .bridgeerp_unique_mega_menu_sidebar{background:#111a21}
html[data-theme="dark"] .bridgeerp_unique_categories_sidebar{background:#111a21;border-right:1px solid #22303a}
html[data-theme="dark"] .bridgeerp_unique_category_item:hover{background:#111a21}
html[data-theme="dark"] .bridgeerp_unique_category_item.active{background:#111a21}
html[data-theme="dark"] .bridgeerp_unique_category_name{color:#e8eef3}
html[data-theme="dark"] .bridgeerp_unique_category_item.active .bridgeerp_unique_category_name{color:#8fbed6}
html[data-theme="dark"] .bridgeerp_unique_content_area{background:#111a21}
html[data-theme="dark"] .bridgeerp_unique_industry_link{background:#111a21;border:2px solid #22303a;color:#b6c4cf}
html[data-theme="dark"] .bridgeerp_unique_industry_link:hover{background:#111a21;color:#8fbed6}
html[data-theme="dark"] .bridgeerp_unique_btn_demo{background:#111a21;color:#8fbed6;border-color:#22303a}
html[data-theme="dark"] .bridgeerp_unique_btn_demo:hover{border-color:#22303a}
html[data-theme="dark"] .bridgeerp_unique_btn_buy:hover{background:#111a21;border-color:#22303a}
html[data-theme="dark"] .bridgeerp_unique_categories_sidebar{background:#111a21;border-bottom:1px solid #22303a}
html[data-theme="dark"] .o_wsale_address_fill .alert{border:1px solid #22303a}
html[data-theme="dark"] .o_wsale_address_fill .alert-warning{background:#111a21;border-color:#22303a;color:#f7f9fb}
html[data-theme="dark"] .o_wsale_address_fill .alert-info{background:#111a21;color:#9fb2c0}
/* rules: 1136 *//* BridgeERP sitewide dark layer - GENERATED, do not hand-edit.
 * Source: live web.assets_frontend.min.css
 * 79 rules generated from the site's own selectors.
 * Regenerate with build_dark_layer.py after any theme change. */
html[data-theme="dark"] /* --- pages/accounting.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] .bsp_card{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .bsp_title{color:#f7f9fb}
html[data-theme="dark"] .bsp_sub{color:#9fb2c0}
html[data-theme="dark"] /* Form */ .bsp_label{color:#f7f9fb}
html[data-theme="dark"] .bsp_req{color:#9fb2c0}
html[data-theme="dark"] .bsp_opt{color:#8fa3b2}
html[data-theme="dark"] .bsp_input{border:1.5px solid #22303a;background:#111a21}
html[data-theme="dark"] .bsp_error{color:#9fb2c0;background:#111a21}
html[data-theme="dark"] .bsp_domain_suffix{color:#8fa3b2}
html[data-theme="dark"] .bsp_industry_card{background:#111a21;border:1.5px solid #22303a}
html[data-theme="dark"] .bsp_ic_name{color:#f7f9fb}
html[data-theme="dark"] .bsp_ic_desc{color:#8fa3b2}
html[data-theme="dark"] .bsp_ic_badge{color:#8fbed6;background:#111a21}
html[data-theme="dark"] /* Progress */ .bsp_progress_wrap{background:#162028}
html[data-theme="dark"] .bsp_spinner{border:3px solid #22303a}
html[data-theme="dark"] /* Module list */ .bsp_mod_item{color:#9fb2c0}
html[data-theme="dark"] .bsp_mod_item.done{color:#9fb2c0}
html[data-theme="dark"] .bsp_mod_item .dot{background:#162028}
html[data-theme="dark"] .bsp_mod_item.active{color:#8fbed6}
html[data-theme="dark"] /* Clean Language Button */ .mybridgeerp-language-button{background:#111a21;color:#e8eef3;border:1px solid #22303a}
html[data-theme="dark"] .mybridgeerp-language-button:hover{background:#111a21;border-color:#22303a}
html[data-theme="dark"] /* Globe Icon */ .mybridgeerp-globe-icon{color:#9fb2c0}
html[data-theme="dark"] .mybridgeerp-lang-code{color:#8fbed6}
html[data-theme="dark"] /* Dropdown Arrow */ .mybridgeerp-arrow{color:#8fa3b2}
html[data-theme="dark"] .mybridgeerp-modal-content{background:#111a21}
html[data-theme="dark"] .mybridgeerp-close-btn{background:rgba(17, 26, 33, 0.1)}
html[data-theme="dark"] .mybridgeerp-close-btn:hover{background:rgba(17, 26, 33, 0.2)}
html[data-theme="dark"] .mybridgeerp-search-container i{color:#8fa3b2}
html[data-theme="dark"] #mybridgeerp-language-search{border:1px solid #22303a}
html[data-theme="dark"] /* Country Items */ .mybridgeerp-country-item{background:#111a21;border:1px solid #22303a}
html[data-theme="dark"] .mybridgeerp-country-item:hover{background:#111a21}
html[data-theme="dark"] .mybridgeerp-country-name{color:#f7f9fb}
html[data-theme="dark"] .mybridgeerp-country-item:hover .mybridgeerp-country-name{color:#8fbed6}
html[data-theme="dark"] .mybridgeerp-languages{color:#9fb2c0}
html[data-theme="dark"] .mybridgeerp-country-item:hover .mybridgeerp-languages{color:#f7f9fb}
html[data-theme="dark"] .mybridgeerp-modal-body::-webkit-scrollbar-track{background:#111a21}
html[data-theme="dark"] /* --- pages/all-apps.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/choose-your-industry.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/coming-for-finance-institutions.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/coming-soon-for-edubridge.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/coming-soon-hospital-management-solution.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/company.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/contactus.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/crm.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/demo.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/ecommerce-business.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/edubridge.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/free-trial.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/ft-setup.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/home.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/hospital-management-pricing.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/hospital-management.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/industries.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/inventory.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/jobs.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] .bridge-jobs-header::before{background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(17, 26, 33, 0.1)"></circle><circle cx="80" cy="40" r="1" fill="rgba(17, 26, 33, 0.1)"></circle><circle cx="40" cy="80" r="1.5" fill="rgba(17, 26, 33, 0.1)"></circle></svg>')}
html[data-theme="dark"] .bridge-jobs-container{background-color:#111a21}
html[data-theme="dark"] .bridge-job-card{background:#111a21}
html[data-theme="dark"] .bridge-job-card h5{background:#111a21}
html[data-theme="dark"] .bridge-job-description{color:#9fb2c0}
html[data-theme="dark"] .bridge-job-infos{border-top:1px solid #22303a}
html[data-theme="dark"] .bridge-job-infos > div, html[data-theme="dark"] .bridge-job-infos > span{color:#9fb2c0}
html[data-theme="dark"] .bridge-no-jobs{background:#111a21}
html[data-theme="dark"] .bridge-search-alert{background:linear-gradient(135deg, #111a21, #111a21);color:#f7f9fb}
html[data-theme="dark"] .bridge-jobs-pager{background:#111a21}
html[data-theme="dark"] .bridge-jobs-topbar{background:#111a21}
html[data-theme="dark"] /* --- pages/law-firm.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/manufacturing-businesses.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/partners.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/pos-shop.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/pricing-plans.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/privacy-policy.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/restaurant-business-pricing-plan.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/restaurants.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/retail-pricing-plan.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/shop-cat-retail.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/shop-retail-starter.html --- */ /* Base */ .bsp_page{background:#111a21}
html[data-theme="dark"] /* --- pages/success-packs.html --- */ /* Base */ .bsp_page{background:#111a21}
/* rules: 79 */
/* Phase 1: Start-free-trial header CTA (nav item styled as a solid button) */
#top_menu > li > a[href$="/free-trial"]{
  background:var(--be-brand,#114966);color:#fff!important;border-radius:8px;
  padding:.5rem 1.1rem!important;font-weight:600;margin-left:.5rem;line-height:1.2;
  transition:background .15s ease,transform .15s ease;
}
#top_menu > li > a[href$="/free-trial"]:hover{background:var(--be-brand-hover,#0d384f);transform:translateY(-1px);}
#top_menu > li > a[href$="/free-trial"]::after{display:none!important;}
