/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}


/* Generated by website2025/scripts/export-whmcs-integration.mjs.
 * Do not edit this output in whmcs-theme.
 * Inputs: src/index.css + integrations/whmcs/styles/virgo-whmcs-adapter.css
 */

:root {
  /* Existing theme vars */
  --color-primary: #064D3E;
  --color-secondary: #FFA827;
  --color-accent: #60C5A8;
  --color-accent-strong: #0A6B58;
  --color-primary-light: #0A6B4F;
  --color-primary-hover: #043529;

  /* Keep light = base to prevent accidental non-compliant usage with white text */
  --color-secondary-light: #FFE0B2;
  --color-secondary-hover: #FB8C00;

  --color-accent-light: #80D4C4;
  --color-accent-hover: #4DB6AC;

  /* CTA tokens (added) */
  --color-cta: #047857;         /* emerald-700 (matches previous inline style) */
  --color-cta-hover: #065F46;   /* emerald-800 */
  --color-highlight: #FF9800;

  /* Pricing CTA hover (to preserve previous exact appearance) */
  --color-pricing-cta-hover: #204c3f;

  /* Neutral colors (moved from theme.ts) */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Scroll indicator tokens (to preserve previous exact appearance) */
  --color-scroll-indicator: rgba(122, 122, 124, 0.918);
  --color-scroll-indicator-light: rgb(123, 124, 124);

  /* Status colors (moved from theme.ts) */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Common UI tokens */
  --color-on-primary: #ffffff;
  --color-on-secondary: #ffffff;
  --color-on-accent: #ffffff;

  --overlay-soft: rgba(0, 0, 0, 0.08);
  --overlay-strong: rgba(0, 0, 0, 0.14);
}

/* WHMCS Nexus presentation adapter.
 * Canonical source: website2025/integrations/whmcs.
 * Shared brand colour tokens are exported from website2025/src/index.css.
 */
/* Virgo Networks brand overlay for WHMCS 9.x templates and order forms.
 * Generated template copies remain updateable from official WHMCS GitHub release tags.
 */
body { color: var(--color-gray-900); }
a, .text-primary { color: var(--color-accent-strong); }
a:hover, a:focus { color: var(--color-primary); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-hover); }

.btn-primary,
.btn-success,
.btn-order-now,
.btn-checkout,
button[type="submit"].btn-primary {
  color: #fff;
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  border-radius: var(--virgo-radius);
}
.btn-primary:hover, .btn-primary:focus,
.btn-success:hover, .btn-success:focus,
.btn-order-now:hover, .btn-checkout:hover {
  color: #fff;
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
}

.navbar-main, .main-navbar-wrapper, .navbar-primary,
.header, header.header { border-color: var(--color-gray-200); }
.navbar-main, .navbar-primary { background: var(--color-primary); }
.navbar-main .navbar-nav > li > a,
.navbar-primary .navbar-nav > li > a { color: #fff; }
.navbar-main .navbar-nav > li > a:hover,
.navbar-primary .navbar-nav > li > a:hover { color: var(--color-secondary); }

.card, .panel, .product, .product-info, .domain-pricing .tld-pricing-header {
  border-radius: var(--virgo-radius);
  border-color: var(--color-gray-200);
}
.card:hover, .panel:hover, .product:hover { box-shadow: var(--virgo-shadow); }
.card-header, .panel-primary > .panel-heading, .product .product-header {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.alert-success { border-color: var(--color-accent); }
.form-control:focus {
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 .2rem rgba(10, 107, 88, .16);
}

footer, .footer, #footer { background-color: var(--color-primary); color: #fff; }
footer a, .footer a, #footer a { color: var(--color-accent); }
footer a:hover, .footer a:hover, #footer a:hover { color: var(--color-secondary); }

/* Virgo Nexus header: website identity row plus a quieter WHMCS utility row.
 *
 * The primary row mirrors website2025/src/components/Header.tsx and DesktopNav.tsx:
 * max-w-6xl container, 280x62 logo, text-lg desktop navigation and rounded
 * green login/account CTA. The utility row preserves the key WHMCS tasks.
 */
header#header.header.virgo-portal-header {
  background: #ffffff !important;
  border: 0 !important;
  color: var(--color-gray-700) !important;
  display: block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji" !important;
  font-size: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  width: 100% !important;
  z-index: 40 !important;
}

header#header.virgo-portal-header *,
header#header.virgo-portal-header *::before,
header#header.virgo-portal-header *::after {
  box-sizing: border-box !important;
}

header#header.virgo-portal-header .virgo-primary-header {
  background: #ffffff !important;
  border: 0 !important;
}

header#header.virgo-portal-header .virgo-header-inner {
  align-items: center !important;
  display: flex !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  max-width: 72rem !important; /* Tailwind max-w-6xl */
  min-height: 5.875rem !important;
  padding: 1rem .5rem !important; /* px-2 py-4 */
  position: relative !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-header-logo {
  align-items: center !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-header-logo img {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
}

header#header.virgo-portal-header .virgo-header-logo-full {
  width: 280px !important;
}

header#header.virgo-portal-header .virgo-header-logo .virgo-header-logo-crop {
  display: none !important;
  width: 60px !important;
}

header#header.virgo-portal-header .virgo-primary-navigation {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 auto !important;
  gap: 2rem !important; /* website desktop space-x-8 */
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

header#header.virgo-portal-header .virgo-primary-link,
header#header.virgo-portal-header button.virgo-primary-link,
header#header.virgo-portal-header .virgo-primary-link:link,
header#header.virgo-portal-header .virgo-primary-link:visited {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--color-gray-700) !important; /* website text-gray-700 */
  cursor: pointer !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1.125rem !important; /* text-lg */
  font-weight: 400 !important;
  gap: .5rem !important;
  line-height: 1.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-primary-link:hover,
header#header.virgo-portal-header .virgo-primary-link:focus {
  color: var(--color-gray-700) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-primary-link i {
  font-size: 1rem !important;
  width: 1rem !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown {
  position: relative !important;
}

header#header.virgo-portal-header .virgo-primary-menu {
  background: #ffffff !important;
  border: 0 !important;
  border-radius: .5rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1) !important;
  display: none !important;
  padding: 1rem !important;
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + .5rem) !important;
  z-index: 60 !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown.is-open .virgo-primary-menu {
  display: block !important;
}

header#header.virgo-portal-header .virgo-company-menu {
  left: 0 !important;
  min-width: 12rem !important;
  right: auto !important;
}

header#header.virgo-portal-header .virgo-services-menu {
  display: none !important;
  gap: 0 !important;
  padding: 2rem !important;
  right: -5rem !important;
  width: 62.5rem !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown.is-open .virgo-services-menu {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

header#header.virgo-portal-header .virgo-primary-menu h3 {
  color: var(--color-gray-900) !important;
  font-family: inherit !important;
  font-size: .875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: .75rem 1rem !important;
  text-transform: uppercase !important;
}

header#header.virgo-portal-header .virgo-primary-menu a,
header#header.virgo-portal-header .virgo-primary-menu a:link,
header#header.virgo-portal-header .virgo-primary-menu a:visited {
  border-radius: .375rem !important;
  color: var(--color-gray-700) !important;
  align-items: center !important;
  display: flex !important;
  font-family: inherit !important;
  font-size: .875rem !important;
  font-weight: 400 !important;
  gap: .5rem !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: .5rem 1rem !important;
  text-decoration: none !important;
  text-align: left !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-services-menu a,
header#header.virgo-portal-header .virgo-services-menu a:link,
header#header.virgo-portal-header .virgo-services-menu a:visited {
  padding: .75rem 1rem !important;
}

header#header.virgo-portal-header .virgo-primary-menu a:hover,
header#header.virgo-portal-header .virgo-primary-menu a:focus {
  background: var(--color-gray-100) !important;
  color: var(--color-gray-700) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-account-button,
header#header.virgo-portal-header .virgo-account-button:link,
header#header.virgo-portal-header .virgo-account-button:visited {
  align-items: center !important;
  background: var(--color-primary) !important;
  border: 0 !important;
  border-radius: .75rem !important; /* rounded-xl */
  color: #ffffff !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  gap: .5rem !important;
  line-height: 1.75rem !important;
  min-height: 44px !important;
  padding: .75rem 1rem !important; /* website px-4 py-3 */
  text-decoration: none !important;
  transition: background-color .2s ease !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-account-button:hover,
header#header.virgo-portal-header .virgo-account-button:focus {
  background: var(--color-accent-strong) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: .5rem !important;
  color: var(--color-gray-700) !important;
  display: none !important;
  font-size: 1.5rem !important;
  height: 2.5rem !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: .5rem !important;
  width: 2.5rem !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle svg {
  display: block !important;
  height: 1.5rem !important;
  width: 1.5rem !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle:hover {
  background: var(--color-gray-100) !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle .virgo-mobile-close-icon,
header#header.virgo-portal-header .virgo-mobile-toggle.is-open .virgo-mobile-menu-icon {
  display: none !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle.is-open .virgo-mobile-close-icon {
  display: block !important;
}

header#header.virgo-portal-header .virgo-mobile-navigation {
  display: none !important;
}

header#header.virgo-portal-header .virgo-utility-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  border-top: 1px solid var(--color-gray-100) !important;
  color: var(--color-gray-700) !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-utility-inner {
  align-items: center !important;
  display: flex !important;
  gap: 1.5rem !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  max-width: 72rem !important;
  min-height: 3.125rem !important;
  padding: .5rem .5rem !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-utility-navigation {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  min-width: 0 !important;
}

header#header.virgo-portal-header .virgo-utility-navigation a,
header#header.virgo-portal-header .virgo-utility-navigation a:link,
header#header.virgo-portal-header .virgo-utility-navigation a:visited {
  color: var(--color-gray-600) !important;
  font-family: inherit !important;
  font-size: .875rem !important;
  font-weight: 500 !important;
  line-height: 1.25rem !important;
  padding: .35rem 0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-utility-navigation a:hover,
header#header.virgo-portal-header .virgo-utility-navigation a:focus {
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-utility-actions {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 auto !important;
  gap: .5rem !important;
}

header#header.virgo-portal-header .virgo-cart-button,
header#header.virgo-portal-header .virgo-notification-button {
  align-items: center !important;
  background: #ffffff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: .5rem !important;
  color: var(--color-gray-600) !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  height: 2.375rem !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  text-decoration: none !important;
  width: 2.375rem !important;
}

header#header.virgo-portal-header .virgo-cart-button:hover,
header#header.virgo-portal-header .virgo-cart-button:focus,
header#header.virgo-portal-header .virgo-notification-button:hover,
header#header.virgo-portal-header .virgo-notification-button:focus {
  border-color: var(--color-accent) !important;
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-cart-badge,
header#header.virgo-portal-header .virgo-utility-badge {
  align-items: center !important;
  background: var(--color-secondary) !important;
  border-radius: 9999px !important;
  color: var(--color-gray-900) !important;
  display: inline-flex !important;
  font-size: .6875rem !important;
  font-weight: 700 !important;
  height: 1.15rem !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-width: 1.15rem !important;
  padding: 0 .2rem !important;
  position: absolute !important;
  right: -.4rem !important;
  top: -.4rem !important;
}

.master-breadcrumb {
  background: var(--color-gray-50) !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  color: var(--color-gray-500) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.master-breadcrumb > .container {
  margin: 0 auto !important;
  max-width: 72rem !important;
  padding: .65rem .5rem !important;
}

.master-breadcrumb .breadcrumb {
  background: transparent !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: .875rem !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.master-breadcrumb .breadcrumb a {
  color: var(--color-accent-strong) !important;
}

@media (max-width: 1023.98px) {
  header#header.virgo-portal-header .virgo-header-inner {
    min-height: 79.914px !important;
    padding: 16px 8px !important;
  }

  header#header.virgo-portal-header .virgo-header-logo img {
    max-width: min(280px, calc(100vw - 5rem)) !important;
  }

  header#header.virgo-portal-header .virgo-mobile-toggle {
    display: block !important;
  }

  header#header.virgo-portal-header .virgo-primary-navigation {
    display: none !important;
  }

  header#header.virgo-portal-header .virgo-mobile-navigation.is-open {
    background: #ffffff !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1) !important;
    display: block !important;
    left: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    right: 0 !important;
    top: 100% !important;
    transition: all .3s ease !important;
    z-index: 70 !important;
  }

  header#header.virgo-portal-header .virgo-mobile-panel {
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    left: 0 !important;
    padding: 24px !important;
    position: absolute !important;
    top: 0 !important;
    transform: translateX(100%) !important;
    transition: transform .3s ease !important;
    width: 100% !important;
  }

  header#header.virgo-portal-header .virgo-mobile-panel.is-active {
    position: relative !important;
    transform: translateX(0) !important;
  }

  header#header.virgo-portal-header .virgo-mobile-navigation.is-nested .virgo-mobile-panel.is-active {
    transform: translate(0, -4px) !important;
  }

  header#header.virgo-portal-header .virgo-mobile-panel.is-left {
    transform: translateX(-100%) !important;
  }

  header#header.virgo-portal-header .virgo-mobile-panel > * + * {
    margin-top: 16px !important;
  }

  header#header.virgo-portal-header .virgo-mobile-link,
  header#header.virgo-portal-header .virgo-mobile-link:link,
  header#header.virgo-portal-header .virgo-mobile-link:visited,
  header#header.virgo-portal-header .virgo-mobile-back {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--color-gray-700) !important;
    display: flex !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    position: static !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: color .2s ease !important;
    width: 100% !important;
  }

  header#header.virgo-portal-header .virgo-mobile-link:hover,
  header#header.virgo-portal-header .virgo-mobile-link:focus,
  header#header.virgo-portal-header .virgo-mobile-back:hover,
  header#header.virgo-portal-header .virgo-mobile-back:focus {
    color: var(--color-accent) !important;
    text-decoration: none !important;
  }

  header#header.virgo-portal-header .virgo-mobile-next {
    justify-content: space-between !important;
  }

  header#header.virgo-portal-header .virgo-mobile-link-label,
  header#header.virgo-portal-header .virgo-mobile-account > span {
    align-items: center !important;
    display: flex !important;
  }

  header#header.virgo-portal-header .virgo-mobile-account > span {
    justify-content: center !important;
  }

  header#header.virgo-portal-header .virgo-mobile-item-icon {
    flex: 0 0 auto !important;
    height: 16px !important;
    margin-right: 8px !important;
    width: 16px !important;
  }

  header#header.virgo-portal-header .virgo-mobile-chevron {
    flex: 0 0 auto !important;
    height: 20px !important;
    margin-left: 8px !important;
    width: 20px !important;
  }

  header#header.virgo-portal-header .virgo-mobile-back {
    margin-bottom: 16px !important;
  }

  header#header.virgo-portal-header .virgo-mobile-back svg {
    flex: 0 0 auto !important;
    height: 20px !important;
    margin-right: 8px !important;
    width: 20px !important;
  }

  header#header.virgo-portal-header .virgo-mobile-heading {
    align-items: center !important;
    color: var(--color-primary) !important;
    display: flex !important;
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
  }

  header#header.virgo-portal-header .virgo-mobile-account,
  header#header.virgo-portal-header .virgo-mobile-account:link,
  header#header.virgo-portal-header .virgo-mobile-account:visited {
    background: var(--color-accent) !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    display: block !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    padding: 12px !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
  }

  header#header.virgo-portal-header .virgo-mobile-account:hover,
  header#header.virgo-portal-header .virgo-mobile-account:focus {
    background: var(--color-accent-hover) !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  header#header.virgo-portal-header .virgo-utility-inner {
    gap: 1rem !important;
    padding: .5rem 1rem !important;
  }

  header#header.virgo-portal-header .virgo-utility-navigation {
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  header#header.virgo-portal-header .virgo-utility-navigation::-webkit-scrollbar {
    display: none !important;
  }
}

@media (max-width: 374.98px) {
  header#header.virgo-portal-header .virgo-header-logo .virgo-header-logo-full {
    display: none !important;
  }

  header#header.virgo-portal-header .virgo-header-logo .virgo-header-logo-crop {
    display: block !important;
    max-width: 60px !important;
  }
}


/* Website header pixel calibration.
 *
 * Tailwind's website values resolve against a 16px root. WHMCS parent themes
 * can alter rem-derived measurements, making a translated 72rem container and
 * rem-based vertical padding appear wider/taller than the live website.
 * These final scoped rules use the resolved pixel values of Header.tsx /
 * DesktopNav.tsx so the Nexus primary row aligns to the public-site reference.
 */
header#header.header.virgo-portal-header .virgo-header-inner {
  max-width: 1152px !important; /* measured website max-w-6xl */
  height: 84px !important; /* measured public website desktop header height */
  min-height: 84px !important;
  padding: 16px 8px !important; /* measured website px-2 py-4 */
}

header#header.header.virgo-portal-header .virgo-primary-navigation {
  gap: 32px !important; /* space-x-8 */
}

header#header.header.virgo-portal-header .virgo-primary-link,
header#header.header.virgo-portal-header button.virgo-primary-link,
header#header.header.virgo-portal-header .virgo-primary-link:link,
header#header.header.virgo-portal-header .virgo-primary-link:visited {
  font-size: 18px !important; /* text-lg */
  /* Do not introduce a gap between the icon and the label.  The website
     uses a margin on the SVG instead of a gap on the link itself.  If we
     leave a gap here the navigation items become ~8px wider than the
     corresponding items on virgonetworks.co.uk. */
  gap: 0 !important;
  line-height: 28px !important;
}

header#header.header.virgo-portal-header .virgo-primary-link i {
  font-size: 16px !important;
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-header-svg {
  display: inline-block !important;
  flex: 0 0 auto !important;
  vertical-align: middle !important;
}

header#header.header.virgo-portal-header .virgo-header-svg-16 {
  height: 16px !important;
  margin-right: 8px !important; /* website mr-2 */
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-dropdown-svg {
  height: 16px !important;
  margin: 0 !important;
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-header-caret {
  height: 16px !important;
  margin-left: 8px !important; /* website ml-2 */
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-primary-link,
header#header.header.virgo-portal-header button.virgo-primary-link,
header#header.header.virgo-portal-header .virgo-account-button {
  gap: 0 !important; /* website spacing supplied by SVG margin utilities */
}

header#header.header.virgo-portal-header .virgo-primary-link,
header#header.header.virgo-portal-header button.virgo-primary-link {
  display: flex !important;
}

header#header.header.virgo-portal-header .virgo-account-button,
header#header.header.virgo-portal-header .virgo-account-button:link,
header#header.header.virgo-portal-header .virgo-account-button:visited {
  border-radius: 12px !important; /* rounded-xl */
  font-size: 18px !important;
  /*
   * The SVG already supplies the website-equivalent 8px right margin.
   * A button gap here would double that space and make Login/My Account
   * wider than the public-site CTA.
   */
  gap: 0 !important;
  line-height: 28px !important;
  min-height: 44px !important;
  padding: 12px 16px !important; /* px-4 py-3 */
}

header#header.header.virgo-portal-header .virgo-account-label {
  display: grid !important;
  flex: 0 0 auto !important;
}

header#header.header.virgo-portal-header .virgo-account-label-sizer,
header#header.header.virgo-portal-header .virgo-account-label-text {
  grid-column: 1 !important;
  grid-row: 1 !important;
  text-align: center !important;
}

header#header.header.virgo-portal-header .virgo-account-label-sizer {
  visibility: hidden !important;
}

header#header.header.virgo-portal-header .virgo-primary-menu {
  border-radius: 8px !important;
  color: #111111 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  padding: 16px !important;
  top: calc(100% + 8px) !important;
}

header#header.header.virgo-portal-header .virgo-services-menu {
  gap: normal !important;
  min-width: 0 !important;
  padding: 32px !important;
  right: -80px !important; /* website -right-20 */
  width: 1000px !important;
}

header#header.header.virgo-portal-header .virgo-company-menu {
  min-width: 192px !important; /* website min-w-48 */
}

header#header.header.virgo-portal-header .virgo-primary-menu h3 {
  color: #111111 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  line-height: 20px !important;
  margin: 0 !important;
  padding: 12px 16px !important; /* px-4 py-3 */
}

header#header.header.virgo-portal-header .virgo-primary-menu a {
  align-items: center !important;
  border-radius: 0 !important;
  display: flex !important;
  font-size: 18px !important;
  gap: 8px !important; /* gap-2 */
  line-height: 28px !important;
  padding: 8px 16px !important; /* company dropdown px-4 py-2 */
  text-align: left !important;
  width: 100% !important;
}

header#header.header.virgo-portal-header .virgo-primary-menu a span {
  font-size: 14px !important;
  line-height: 19.25px !important; /* website text-sm leading-snug */
}

header#header.header.virgo-portal-header .virgo-services-menu a {
  padding: 12px 16px !important; /* service dropdown px-4 py-3 */
}

header#header.header.virgo-portal-header .virgo-utility-inner {
  max-width: 1152px !important;
  min-height: 40px !important;
  padding: 3px 8px !important;
}

header#header.header.virgo-portal-header .virgo-utility-navigation {
  gap: 24px !important;
}

header#header.header.virgo-portal-header .virgo-utility-navigation a {
  font-size: 14px !important;
  line-height: 20px !important;
  padding: 5px 0 !important;
}

header#header.header.virgo-portal-header .virgo-cart-button,
header#header.header.virgo-portal-header .virgo-notification-button {
  border-radius: 8px !important;
  font-size: 15px !important;
  height: 34px !important;
  width: 34px !important;
}

.master-breadcrumb > .container {
  max-width: 1152px !important;
  padding: 8px !important;
}

.master-breadcrumb .breadcrumb {
  font-size: 14px !important;
  line-height: 20px !important;
}

@media (max-width: 1023.98px) {
  header#header.header.virgo-portal-header .virgo-header-inner {
    height: auto !important;
    min-height: 79.91px !important; /* measured website mobile header height */
    padding: 16px 8px !important; /* measured website mobile px-2 py-4 */
  }

  header#header.header.virgo-portal-header .virgo-primary-navigation {
    padding: 12px 16px 16px !important;
  }

  header#header.header.virgo-portal-header .virgo-primary-link,
  header#header.header.virgo-portal-header button.virgo-primary-link {
    padding: 12px 0 !important;
  }

  header#header.header.virgo-portal-header .virgo-services-menu {
    right: auto !important;
    width: auto !important;
  }

  header#header.header.virgo-portal-header .virgo-account-button {
    margin-top: 8px !important;
  }

  header#header.header.virgo-portal-header .virgo-utility-inner {
    padding: 3px 16px !important;
  }
}


/* Virgo public-site footer: isolated Tailwind-equivalent component.
 *
 * Source alignment target: website2025/src/components/Footer.tsx.
 * Nexus and Twenty-One ship different inherited/footer link rules.
 * Presentation-critical properties within this component intentionally use
 * high specificity and selected !important declarations so both generated
 * system themes render the same footer.
 */
footer#footer.footer.virgo-site-footer {
  --virgo-footer-white: #ffffff;
  --virgo-footer-black: var(--color-gray-900);
  background: var(--color-primary) !important;
  border: 0 !important;
  box-sizing: border-box !important;
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  position: relative !important;
  text-align: left !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer *,
footer#footer.virgo-site-footer *::before,
footer#footer.virgo-site-footer *::after {
  box-sizing: border-box !important;
}

footer#footer.virgo-site-footer .virgo-footer-inner {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 2.5rem 1rem !important; /* py-10 px-4 */
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-grid {
  align-items: start !important;
  display: grid !important;
  gap: 2.5rem !important; /* gap-10 */
  grid-template-columns: minmax(0, 1fr) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-brand,
footer#footer.virgo-site-footer .virgo-footer-section,
footer#footer.virgo-site-footer .virgo-footer-registration {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  margin: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

footer#footer.virgo-site-footer h2,
footer#footer.virgo-site-footer h3,
footer#footer.virgo-site-footer h4,
footer#footer.virgo-site-footer p,
footer#footer.virgo-site-footer ul,
footer#footer.virgo-site-footer li,
footer#footer.virgo-site-footer address {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
  padding: 0 !important;
  text-align: left !important;
  text-transform: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-brand-name {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-size: 1.5rem !important; /* text-2xl */
  font-weight: 700 !important;
  line-height: 2rem !important;
  margin: 0 0 1rem !important; /* space-y-4 */
}

footer#footer.virgo-site-footer .virgo-footer-section h3 {
  color: var(--virgo-footer-white) !important;
  font-size: 1.25rem !important; /* text-xl */
  font-weight: 600 !important;
  line-height: 1.75rem !important;
  margin: 0 0 1rem !important; /* space-y-4 */
}

footer#footer.virgo-site-footer .virgo-footer-description {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 400 !important;
  line-height: 1.625 !important; /* leading-relaxed */
  margin: 0 0 1rem !important;
  max-width: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-social {
  align-items: center !important;
  display: flex !important;
  gap: 1rem !important; /* space-x-4 */
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-social a,
footer#footer.virgo-site-footer .virgo-footer-social a:link,
footer#footer.virgo-site-footer .virgo-footer-social a:visited {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  display: inline-flex !important;
  font-size: 1.25rem !important;
  height: 1.25rem !important; /* h-5 */
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  width: 1.25rem !important; /* w-5 */
}

footer#footer.virgo-site-footer .virgo-footer-social a:hover,
footer#footer.virgo-site-footer .virgo-footer-social a:focus {
  color: var(--color-accent) !important;
}

footer#footer.virgo-site-footer .virgo-footer-links {
  display: block !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links li {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-size: .875rem !important; /* text-sm */
  line-height: 1.25rem !important;
  margin: 0 0 .5rem !important; /* space-y-2 */
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links li:last-child {
  margin-bottom: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links a,
footer#footer.virgo-site-footer .virgo-footer-links a:link,
footer#footer.virgo-site-footer .virgo-footer-links a:visited,
footer#footer.virgo-site-footer .virgo-footer-legal a,
footer#footer.virgo-site-footer .virgo-footer-legal a:link,
footer#footer.virgo-site-footer .virgo-footer-legal a:visited {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-links a:hover,
footer#footer.virgo-site-footer .virgo-footer-links a:focus,
footer#footer.virgo-site-footer .virgo-footer-legal a:hover,
footer#footer.virgo-site-footer .virgo-footer-legal a:focus {
  color: var(--color-accent) !important;
  text-decoration: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact p {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  line-height: 1.25rem !important;
  margin: 0 0 1rem !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact strong {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-weight: 600 !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact p span {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-weight: 500 !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta,
footer#footer.virgo-site-footer a.virgo-footer-cta:link,
footer#footer.virgo-site-footer a.virgo-footer-cta:visited {
  align-items: center !important;
  background: var(--color-secondary) !important;
  border: 0 !important;
  border-radius: .5rem !important; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1) !important; /* shadow-md */
  color: var(--virgo-footer-black) !important; /* text-gray-900 */
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 600 !important;
  gap: .5rem !important; /* space-x-2 */
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: .625rem 1.25rem !important; /* py-2.5 px-5 */
  text-decoration: none !important;
  transition: all .2s ease !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta:hover,
footer#footer.virgo-site-footer a.virgo-footer-cta:focus {
  background: var(--color-secondary-hover) !important;
  color: var(--virgo-footer-black) !important;
  text-decoration: none !important;
  transform: scale(1.05) !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6), 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1) !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg {
  display: inline-block !important;
  flex: 0 0 auto !important;
  vertical-align: middle !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg-social {
  height: 20px !important; /* measured website h-5 w-5 */
  width: 20px !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg-arrow {
  color: var(--virgo-footer-black) !important;
  height: 16px !important; /* measured website h-4 w-4 */
  width: 16px !important;
}

footer#footer.virgo-site-footer .virgo-footer-registration-grid {
  color: var(--virgo-footer-white) !important;
  display: grid !important;
  gap: 1.5rem !important; /* gap-6 */
  grid-template-columns: minmax(0, 1fr) !important;
  margin: 2rem 0 0 !important; /* mt-8 */
  padding: 0 !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-registration h4 {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 600 !important;
  line-height: 1.25rem !important;
  margin: 0 0 .25rem !important; /* mb-1 */
}

footer#footer.virgo-site-footer .virgo-footer-registration p,
footer#footer.virgo-site-footer .virgo-footer-registration address {
  color: var(--virgo-footer-white) !important;
  font-size: .75rem !important; /* text-xs */
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1rem !important;
  margin: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-bottom {
  align-items: center !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .2) !important;
  color: var(--virgo-footer-white) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .5rem !important; /* space-y-2 */
  justify-content: space-between !important;
  margin: 1.5rem 0 0 !important; /* mt-6 */
  padding: 1rem 0 0 !important; /* pt-4 */
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-copyright {
  color: var(--virgo-footer-white) !important;
  font-size: .75rem !important; /* text-xs */
  font-weight: 400 !important;
  line-height: 1rem !important;
  margin: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-legal {
  align-items: center !important;
  color: var(--virgo-footer-white) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  font-size: .75rem !important; /* text-xs */
  font-weight: 400 !important;
  gap: .75rem !important; /* gap-3 */
  justify-content: center !important;
  line-height: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-locale {
  align-items: center !important;
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: .375rem !important;
  color: var(--virgo-footer-white) !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  gap: .375rem !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: .25rem .5rem !important;
  text-transform: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-locale:hover,
footer#footer.virgo-site-footer .virgo-footer-locale:focus {
  background: rgba(255, 255, 255, .18) !important;
  color: var(--virgo-footer-white) !important;
}

@media (min-width: 640px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 640px !important;
  }
}

@media (min-width: 768px) {
  footer#footer.footer.virgo-site-footer {
    padding-left: 4rem !important; /* md:px-16 */
    padding-right: 4rem !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 768px !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-grid {
    gap: 3rem !important; /* md:gap-12 */
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* md:grid-cols-4 */
  }

  footer#footer.virgo-site-footer .virgo-footer-registration-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* md:grid-cols-4 */
  }

  footer#footer.virgo-site-footer .virgo-footer-address {
    grid-column: span 2 / span 2 !important; /* md:col-span-2 */
  }

  footer#footer.virgo-site-footer .virgo-footer-registration p,
  footer#footer.virgo-site-footer .virgo-footer-registration address,
  footer#footer.virgo-site-footer .virgo-footer-copyright,
  footer#footer.virgo-site-footer .virgo-footer-legal {
    font-size: .875rem !important; /* md:text-sm */
    line-height: 1.25rem !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-bottom {
    flex-direction: row !important; /* md:flex-row */
    gap: 0 !important; /* md:space-y-0 */
  }
}

@media (min-width: 1024px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1024px !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-registration-grid {
    gap: 2.5rem !important; /* lg:gap-10 */
  }
}

@media (min-width: 1280px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1280px !important;
  }
}

@media (min-width: 1536px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1536px !important;
  }
}


/* -------------------------------------------------------------------------
 * WHMCS content-area harmonisation
 * Source: content capture 2026-05-30.
 *
 * Header/footer now match the public site. These rules focus on Nexus/WHMCS
 * content components that still render as stock WHMCS: dashboard panels,
 * tiles, order-form product cards, tables, forms and mobile layouts.
 * ---------------------------------------------------------------------- */

:root {
  --virgo-radius: 12px;
  --virgo-radius-sm: 8px;
  --virgo-shadow: 0 10px 25px rgba(17, 24, 39, .08);
  --virgo-shadow-sm: 0 4px 12px rgba(17, 24, 39, .06);
  --virgo-content-max-width: 1180px;
}

/* Global client-area content surface */
section#main-body {
  background: var(--color-gray-50) !important;
  color: var(--color-gray-900) !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  padding: 2rem 0 4rem !important;
}

section#main-body > .container {
  max-width: var(--virgo-content-max-width) !important;
}

section#main-body h1,
section#main-body h2,
section#main-body h3,
section#main-body h4,
section#main-body .h1,
section#main-body .h2,
section#main-body .h3,
section#main-body .h4 {
  color: var(--color-gray-900) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  letter-spacing: -.02em !important;
}

section#main-body h1,
section#main-body .h1 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 1.1 !important;
}

section#main-body h2,
section#main-body .h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem) !important;
  line-height: 1.15 !important;
}

section#main-body p,
section#main-body .text-muted {
  color: var(--color-gray-600) !important;
}

/* Cards/panels: align stock WHMCS surfaces with the website's soft cards. */
section#main-body .card,
section#main-body .panel,
section#main-body .tile,
section#main-body .list-group-item,
section#main-body .domain-suggestion,
section#main-body .suggested-tld,
section#main-body .spotlight-tld,
section#main-body .domain-pricing .tld-pricing-header,
section#main-body .domain-promo-box {
  border-color: var(--color-gray-200) !important;
  border-radius: var(--virgo-radius) !important;
  box-shadow: var(--virgo-shadow-sm) !important;
}

section#main-body .card:hover,
section#main-body .panel:hover,
section#main-body .tile:hover,
section#main-body .product:hover {
  box-shadow: var(--virgo-shadow) !important;
}

section#main-body .card-header,
section#main-body .panel-heading {
  background: #fff !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  color: var(--color-gray-900) !important;
  font-weight: 700 !important;
}

section#main-body .panel-sidebar .card-header,
section#main-body .panel-sidebar .panel-heading {
  border-bottom-color: var(--color-primary) !important;
}

/* Buttons: make default/outline WHMCS buttons feel like the public shell. */
section#main-body .btn,
section#main-body button,
section#main-body input[type="submit"] {
  border-radius: var(--virgo-radius-sm) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

section#main-body .btn-primary,
section#main-body .btn-success,
section#main-body .btn-order-now,
section#main-body .btn-checkout,
section#main-body button[type="submit"].btn-primary {
  background: var(--color-gray-900) !important;
  border-color: var(--color-gray-900) !important;
  color: #fff !important;
}

section#main-body .btn-primary:hover,
section#main-body .btn-success:hover,
section#main-body .btn-order-now:hover,
section#main-body .btn-checkout:hover,
section#main-body button[type="submit"].btn-primary:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

section#main-body .btn-outline-primary,
section#main-body .btn-default {
  background: #fff !important;
  border-color: var(--color-gray-300) !important;
  color: var(--color-gray-800) !important;
}

section#main-body .btn-outline-primary:hover,
section#main-body .btn-default:hover,
section#main-body .btn-outline-primary:focus,
section#main-body .btn-default:focus {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

/* Portal home tiles/cards */
section#main-body .card .pricing-card-title,
section#main-body .card-title {
  color: var(--color-gray-900) !important;
}

section#main-body .tile {
  background: #fff !important;
  color: var(--color-gray-700) !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}

section#main-body .tile:hover,
section#main-body .tile:focus {
  color: var(--color-primary) !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
}

section#main-body .tile i {
  color: var(--color-accent-strong) !important;
  opacity: .45 !important;
}

section#main-body .tile .stat {
  color: var(--color-primary) !important;
}

section#main-body .tile .title {
  color: var(--color-gray-700) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* Knowledgebase: compact category tiles and readable article summaries. */
section#main-body .kb-category {
  background: #fff !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

section#main-body .kb-category .card-body,
section#main-body .kb-category .card-body:link,
section#main-body .kb-category .card-body:visited {
  align-items: center !important;
  color: var(--color-primary) !important;
  display: flex !important;
  justify-content: flex-start !important;
  min-height: 4.25rem !important;
  padding: .9rem 8.75rem .9rem 1.5rem !important;
  position: relative !important;
  text-decoration: none !important;
  width: 100% !important;
}

section#main-body .kb-category .card-body:hover,
section#main-body .kb-category .card-body:focus {
  background: var(--color-primary-light) !important;
  color: var(--color-primary-hover) !important;
  text-decoration: none !important;
}

section#main-body .kb-category .h5 {
  align-items: center !important;
  color: inherit !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .75rem !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  padding-right: 0 !important;
  width: auto !important;
}

section#main-body .kb-category .h5 > i {
  color: inherit !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  font-size: 1.25rem !important;
  margin-right: 0 !important;
  opacity: .95 !important;
}

section#main-body .kb-category .badge {
  align-items: center !important;
  background: var(--color-accent-strong) !important;
  color: #fff !important;
  display: inline-flex !important;
  float: none !important;
  line-height: 1 !important;
  min-height: 1.625rem !important;
  padding: .25rem .65rem !important;
  position: absolute !important;
  right: 1.5rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  white-space: nowrap !important;
}

section#main-body .kb-category p.text-muted {
  display: none !important;
}

section#main-body .kb-article-item,
section#main-body .kb-article-item:link,
section#main-body .kb-article-item:visited {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  padding: 1.25rem 1.5rem !important;
  position: relative !important;
  text-decoration: none !important;
}

section#main-body .kb-article-item:hover,
section#main-body .kb-article-item:focus {
  background: var(--color-primary-light) !important;
  color: var(--color-primary-hover) !important;
  text-decoration: none !important;
}

section#main-body .kb-article-item small {
  color: var(--color-gray-600) !important;
  display: block !important;
  font-size: .9375rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: .5rem 0 0 2rem !important;
  opacity: 1 !important;
}

section#main-body .kb-article-item i,
section#main-body .kb-article-item .text-black-50 {
  color: var(--color-gray-500) !important;
  margin-right: .5rem !important;
  opacity: 1 !important;
}

section#main-body .kb-article-item .btn,
section#main-body .kb-article-item a.btn,
section#main-body .kb-article-item button.btn {
  float: right !important;
  font-size: .875rem !important;
  line-height: 1 !important;
  margin: -.25rem 0 .35rem 1rem !important;
  min-height: 2rem !important;
  padding: .4rem .75rem !important;
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 575.98px) {
  section#main-body .kb-category .card-body,
  section#main-body .kb-category .card-body:link,
  section#main-body .kb-category .card-body:visited {
    min-height: 4rem !important;
    padding: .85rem 7.25rem .85rem 1.15rem !important;
  }

  section#main-body .kb-category .h5 {
    gap: .6rem !important;
  }

  section#main-body .kb-category .badge {
    right: 1.15rem !important;
  }

  section#main-body .kb-article-item small {
    margin-left: 0 !important;
  }
}

/* Client-area dashboard panels and status lists */
section#main-body .client-home-panels .card,
section#main-body .client-home-panels .panel {
  overflow: hidden !important;
}

section#main-body .client-home-panels .card-header,
section#main-body .client-home-panels .panel-heading {
  min-height: 3.25rem !important;
}

section#main-body .client-home-panels .list-group-item,
section#main-body .list-group-item-action {
  color: var(--color-gray-700) !important;
}

section#main-body .client-home-panels .list-group-item:hover,
section#main-body .list-group-item-action:hover {
  background: var(--color-gray-50) !important;
  color: var(--color-primary) !important;
}

/* Order forms: fix product-card contrast and remove the remaining stock look. */
#order-standard_cart {
  color: var(--color-gray-900) !important;
}

#order-standard_cart .cart-sidebar .panel,
#order-standard_cart .cart-sidebar .card {
  overflow: hidden !important;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item:hover,
#order-standard_cart .secondary-cart-sidebar .list-group-item.active,
#order-standard_cart .secondary-cart-sidebar .list-group-item:hover {
  background: var(--color-gray-100) !important;
  color: var(--color-primary) !important;
}

#order-standard_cart .product {
  background: #fff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: var(--virgo-radius) !important;
  box-shadow: var(--virgo-shadow-sm) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

#order-standard_cart .product header {
  background: #fff !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  color: var(--color-gray-900) !important;
  font-weight: 700 !important;
  padding: 1rem 1.25rem !important;
}

#order-standard_cart .product .product-desc,
#order-standard_cart .product footer {
  background: var(--color-primary) !important;
  color: rgba(255, 255, 255, .86) !important;
}

#order-standard_cart .product .product-desc {
  flex: 1 1 auto !important;
  padding: 1rem 1.25rem !important;
}

#order-standard_cart .product .product-desc p,
#order-standard_cart .product .product-desc li,
#order-standard_cart .product .product-desc span {
  color: rgba(255, 255, 255, .86) !important;
}

#order-standard_cart .product footer {
  border-top: 0 !important;
  padding: 1rem 1.25rem 1.25rem !important;
}

#order-standard_cart .product .product-pricing,
#order-standard_cart .product .product-pricing .price,
#order-standard_cart .product .product-pricing span {
  color: #fff !important;
}

#order-standard_cart .product .product-pricing .price {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
}

#order-standard_cart .product .btn-order-now {
  background: var(--color-gray-900) !important;
  border-color: var(--color-gray-900) !important;
  color: #fff !important;
  margin-top: .75rem !important;
}

#order-standard_cart .product .btn-order-now:hover,
#order-standard_cart .product .btn-order-now:focus {
  background: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: var(--color-gray-900) !important;
}

/* Domain search/register pages */
#order-standard_cart .domain-selection-options,
#order-standard_cart .domain-lookup-primary,
#order-standard_cart .domain-checker-container,
#order-standard_cart .domain-pricing,
#order-standard_cart .suggested-domains,
#order-standard_cart .spotlight-tlds {
  border-radius: var(--virgo-radius) !important;
}

#order-standard_cart .domain-lookup-primary,
#order-standard_cart .domain-checker-container {
  background: var(--color-gray-200) !important;
}

#order-standard_cart .domain-pricing table,
section#main-body table {
  background: #fff !important;
  border-collapse: separate !important;
  border-radius: var(--virgo-radius) !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
}

section#main-body table thead th,
section#main-body table.dataTable thead th {
  background: #fff !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  color: var(--color-gray-900) !important;
  font-weight: 800 !important;
}

section#main-body table tbody td {
  border-color: var(--color-gray-100) !important;
  color: var(--color-gray-700) !important;
}

/* Forms */
section#main-body .form-control,
section#main-body input[type="text"],
section#main-body input[type="email"],
section#main-body input[type="password"],
section#main-body input[type="search"],
section#main-body select,
section#main-body textarea {
  border-color: var(--color-gray-300) !important;
  border-radius: var(--virgo-radius-sm) !important;
  color: var(--color-gray-900) !important;
  font-family: inherit !important;
}

section#main-body .form-control:focus,
section#main-body input:focus,
section#main-body select:focus,
section#main-body textarea:focus {
  border-color: var(--color-accent-strong) !important;
  box-shadow: 0 0 0 .2rem rgba(10, 107, 88, .16) !important;
}

/* DataTables/client tables: improve cramped mobile behaviour. */
section#main-body .dataTables_wrapper {
  background: #fff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: var(--virgo-radius) !important;
  box-shadow: var(--virgo-shadow-sm) !important;
  overflow: hidden !important;
  padding: 1rem !important;
}

section#main-body .dataTables_wrapper .row {
  align-items: center !important;
  row-gap: .75rem !important;
}

section#main-body .table-responsive,
section#main-body .dataTables_wrapper .dataTables_scroll,
section#main-body .dataTables_wrapper table {
  width: 100% !important;
}

section#main-body .dataTables_wrapper .dataTables_filter input {
  max-width: 100% !important;
}

section#main-body .dropdown-menu,
section#main-body .dropdown-menu.show {
  border-color: var(--color-gray-200) !important;
  border-radius: var(--virgo-radius-sm) !important;
  box-shadow: var(--virgo-shadow) !important;
}

/* Mobile refinements */
@media (max-width: 767.98px) {
  section#main-body {
    padding: 1rem 0 2.5rem !important;
  }

  section#main-body > .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  section#main-body h1,
  section#main-body .h1 {
    font-size: 2rem !important;
  }

  section#main-body h2,
  section#main-body .h2 {
    font-size: 1.5rem !important;
  }

  section#main-body .tile {
    margin-bottom: 0 !important;
    min-height: 7rem !important;
  }

  section#main-body .client-home-panels .card-header .float-right,
  section#main-body .client-home-panels .panel-heading .float-right {
    float: none !important;
    margin-top: .75rem !important;
  }

  section#main-body .client-home-panels .card-header .btn,
  section#main-body .client-home-panels .panel-heading .btn {
    width: 100% !important;
  }

  #order-standard_cart .product {
    margin-bottom: 1rem !important;
  }

  #order-standard_cart .product header,
  #order-standard_cart .product .product-desc,
  #order-standard_cart .product footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  section#main-body .dataTables_wrapper {
    padding: .75rem !important;
  }

  section#main-body .dataTables_wrapper .row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  section#main-body .dataTables_length,
  section#main-body .dataTables_filter,
  section#main-body .dataTables_info,
  section#main-body .dataTables_paginate {
    float: none !important;
    text-align: left !important;
    width: 100% !important;
  }

  section#main-body .dataTables_filter input {
    margin-left: 0 !important;
    margin-top: .5rem !important;
    width: 100% !important;
  }

  section#main-body table {
    font-size: .875rem !important;
  }
}
/* -------------------------------------------------------------------------
 * WHMCS content polish pass 3
 * Source: content capture 2026-05-30 16:24.
 *
 * Goals:
 * - Remove remaining Bootstrap/Nexus blue/black/grey button leakage.
 * - Replace dashboard spectrum status strips with a single Virgo brand accent.
 * - Add restrained brand colour to grey client-area pages without changing
 *   WHMCS behaviour or Smarty templates.
 * ---------------------------------------------------------------------- */

section#main-body {
  --virgo-brand-gradient: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  --virgo-brand-gradient-soft: linear-gradient(90deg, rgba(6, 77, 62, .12), rgba(96, 197, 168, .18));
}

/* Buttons: no dark/black or Bootstrap-blue content buttons.  The only dark
   button should be the website-shell login button, outside section#main-body. */
section#main-body .btn-primary,
section#main-body .btn-success,
section#main-body .btn-info,
section#main-body .btn-warning,
section#main-body .btn-danger,
section#main-body .btn-order-now,
section#main-body .btn-checkout,
section#main-body .btn-transfer,
section#main-body .btn-input-padded-responsive,
section#main-body button[type="submit"].btn-primary,
section#main-body input[type="submit"].btn-primary,
section#main-body input[type="submit"].btn-success,
#order-standard_cart .btn-primary,
#order-standard_cart .btn-success,
#order-standard_cart .btn-info,
#order-standard_cart .btn-order-now,
#order-standard_cart .btn-checkout,
#order-standard_cart .btn-transfer {
  background: var(--color-cta) !important;
  border-color: var(--color-cta) !important;
  color: #fff !important;
}

section#main-body .btn-primary:hover,
section#main-body .btn-success:hover,
section#main-body .btn-info:hover,
section#main-body .btn-warning:hover,
section#main-body .btn-danger:hover,
section#main-body .btn-order-now:hover,
section#main-body .btn-checkout:hover,
section#main-body .btn-transfer:hover,
section#main-body .btn-input-padded-responsive:hover,
section#main-body button[type="submit"].btn-primary:hover,
section#main-body input[type="submit"].btn-primary:hover,
section#main-body input[type="submit"].btn-success:hover,
section#main-body .btn-primary:focus,
section#main-body .btn-success:focus,
section#main-body .btn-info:focus,
section#main-body .btn-warning:focus,
section#main-body .btn-danger:focus,
section#main-body .btn-order-now:focus,
section#main-body .btn-checkout:focus,
section#main-body .btn-transfer:focus,
section#main-body .btn-input-padded-responsive:focus,
#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-info:hover,
#order-standard_cart .btn-order-now:hover,
#order-standard_cart .btn-checkout:hover,
#order-standard_cart .btn-transfer:hover,
#order-standard_cart .btn-primary:focus,
#order-standard_cart .btn-success:focus,
#order-standard_cart .btn-info:focus,
#order-standard_cart .btn-order-now:focus,
#order-standard_cart .btn-checkout:focus,
#order-standard_cart .btn-transfer:focus {
  background: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  color: #fff !important;
}

/* Secondary/help buttons should be light branded controls, not Bootstrap grey. */
section#main-body .btn-secondary,
section#main-body .btn-default,
section#main-body .btn-light,
section#main-body .btn-outline-secondary,
section#main-body .btn-outline-primary,
section#main-body .btn.btn-default,
section#main-body a.btn-default,
#order-standard_cart .btn-secondary,
#order-standard_cart .btn-default,
#order-standard_cart .btn-light,
#order-standard_cart .btn-outline-secondary,
#order-standard_cart .btn-outline-primary {
  background: #fff !important;
  border-color: var(--color-gray-300) !important;
  color: var(--color-primary) !important;
}

section#main-body .btn-secondary:hover,
section#main-body .btn-default:hover,
section#main-body .btn-light:hover,
section#main-body .btn-outline-secondary:hover,
section#main-body .btn-outline-primary:hover,
section#main-body .btn.btn-default:hover,
section#main-body a.btn-default:hover,
section#main-body .btn-secondary:focus,
section#main-body .btn-default:focus,
section#main-body .btn-light:focus,
section#main-body .btn-outline-secondary:focus,
section#main-body .btn-outline-primary:focus,
#order-standard_cart .btn-secondary:hover,
#order-standard_cart .btn-default:hover,
#order-standard_cart .btn-light:hover,
#order-standard_cart .btn-outline-secondary:hover,
#order-standard_cart .btn-outline-primary:hover {
  background: var(--color-primary-light) !important;
  border-color: var(--color-accent-strong) !important;
  color: var(--color-primary-hover) !important;
}

/* WHMCS colour utility classes leak blue/red/yellow/asbestos into buttons,
   cards and dashboard panels.  Map them to the Virgo palette. */
section#main-body .bg-color-blue,
section#main-body .bg-color-green,
section#main-body .bg-color-red,
section#main-body .bg-color-gold,
section#main-body .bg-color-orange,
section#main-body .bg-color-pomegranate,
section#main-body .bg-color-asbestos,
section#main-body .bg-color-midnight-blue,
section#main-body .bg-info,
section#main-body .bg-primary,
section#main-body .bg-success,
section#main-body .bg-warning,
section#main-body .bg-danger {
  background-color: var(--color-cta) !important;
  color: #fff !important;
}

section#main-body .text-info,
section#main-body .text-primary,
section#main-body .text-success,
section#main-body a:not(.btn) {
  color: var(--color-primary) !important;
}

section#main-body a:not(.btn):hover,
section#main-body a:not(.btn):focus {
  color: var(--color-primary-hover) !important;
}

/* Knowledgebase article lists use full-row hover states; keep every nested
   text/icon element readable against the branded green background. */
section#main-body .list-group .kb-article-item.active,
section#main-body .list-group .kb-article-item:hover,
section#main-body .list-group .kb-article-item:focus,
section#main-body .list-group .kb-article-item:active {
  background: var(--color-primary) !important;
  color: #fff !important;
  text-decoration: none !important;
}

section#main-body .list-group .kb-article-item.active small,
section#main-body .list-group .kb-article-item:hover small,
section#main-body .list-group .kb-article-item:focus small,
section#main-body .list-group .kb-article-item:active small {
  color: rgba(255, 255, 255, .82) !important;
}

section#main-body .list-group .kb-article-item.active i,
section#main-body .list-group .kb-article-item:hover i,
section#main-body .list-group .kb-article-item:focus i,
section#main-body .list-group .kb-article-item:active i,
section#main-body .list-group .kb-article-item.active .text-black-50,
section#main-body .list-group .kb-article-item:hover .text-black-50,
section#main-body .list-group .kb-article-item:focus .text-black-50,
section#main-body .list-group .kb-article-item:active .text-black-50 {
  color: rgba(255, 255, 255, .88) !important;
}

section#main-body .list-group .kb-article-item.active .btn,
section#main-body .list-group .kb-article-item:hover .btn,
section#main-body .list-group .kb-article-item:focus .btn,
section#main-body .list-group .kb-article-item:active .btn {
  background: #fff !important;
  border-color: rgba(255, 255, 255, .72) !important;
  color: var(--color-primary) !important;
}

/* Dashboard tiles: replace the multi-colour spectrum bars with one brand
   treatment. */
section#main-body .tiles,
section#main-body .tile-row {
  gap: 1rem !important;
}

section#main-body .tile {
  border: 1px solid var(--color-gray-200) !important;
  position: relative !important;
}

section#main-body .tile .highlight,
section#main-body .tile .highlight.bg-color-blue,
section#main-body .tile .highlight.bg-color-green,
section#main-body .tile .highlight.bg-color-red,
section#main-body .tile .highlight.bg-color-gold,
section#main-body .tile .highlight.bg-color-orange,
section#main-body .tile .highlight.bg-color-asbestos {
  background: var(--virgo-brand-gradient) !important;
  border-radius: 999px !important;
  bottom: .75rem !important;
  height: 3px !important;
  left: 1rem !important;
  opacity: .95 !important;
  right: 1rem !important;
}

section#main-body .tile:hover .highlight,
section#main-body .tile:focus .highlight {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent)) !important;
}

section#main-body .tile i,
section#main-body .tile .icon,
section#main-body .tile .fas,
section#main-body .tile .far {
  color: var(--color-accent-strong) !important;
  opacity: .42 !important;
}

/* Accent cards: avoid WHMCS' many colour accents but keep a useful visual
   hierarchy with one brand accent. */
section#main-body .card[class*="card-accent-"],
section#main-body .panel[class*="panel-accent-"],
section#main-body .card-accent-blue,
section#main-body .card-accent-green,
section#main-body .card-accent-gold,
section#main-body .card-accent-red,
section#main-body .card-accent-asbestos {
  border-top: 4px solid var(--color-primary) !important;
}

section#main-body .card[class*="card-accent-"] .card-header,
section#main-body .panel[class*="panel-accent-"] .panel-heading {
  background: linear-gradient(90deg, rgba(6, 77, 62, .05), rgba(96, 197, 168, .08)) !important;
}

/* Status labels and badges. */
section#main-body .label,
section#main-body .badge {
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
}

section#main-body .label-success,
section#main-body .badge-success,
section#main-body .status-active,
section#main-body .label-active,
section#main-body .badge-active {
  background: var(--color-cta) !important;
  color: #fff !important;
}

section#main-body .label-warning,
section#main-body .badge-warning,
section#main-body .label-pending,
section#main-body .badge-pending {
  background: rgba(255, 168, 39, .18) !important;
  color: #7A4B00 !important;
}

section#main-body .label-danger,
section#main-body .badge-danger,
section#main-body .label-suspended,
section#main-body .badge-suspended,
section#main-body .status-suspended,
section#main-body .status-cancelled,
section#main-body .status-terminated {
  background: rgba(220, 38, 38, .12) !important;
  color: #991B1B !important;
}

/* Tables and pagination: remove remaining black active page and make the page
   area less grey/flat. */
section#main-body .pagination .page-item.active .page-link,
section#main-body .pagination .active > a,
section#main-body .dataTables_paginate .pagination .active a,
section#main-body .dataTables_paginate .paginate_button.current {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

section#main-body .pagination .page-link,
section#main-body .dataTables_paginate .pagination a {
  color: var(--color-primary) !important;
}

section#main-body .dataTables_wrapper,
section#main-body .card,
section#main-body .panel,
section#main-body .cart-sidebar .panel,
section#main-body .cart-sidebar .card {
  border-top: 3px solid rgba(96, 197, 168, .45) !important;
}

section#main-body table thead th,
section#main-body table.dataTable thead th {
  background: linear-gradient(180deg, #fff, var(--color-gray-50)) !important;
  border-bottom: 2px solid rgba(96, 197, 168, .35) !important;
}

section#main-body table tbody tr:hover td,
section#main-body table.dataTable tbody tr:hover td {
  background: rgba(96, 197, 168, .06) !important;
}

/* Order-form sidebar active states should be brand green, not grey. */
#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .secondary-cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover,
#order-standard_cart .secondary-cart-sidebar .list-group-item.active:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

#order-standard_cart .cart-sidebar .list-group-item:hover,
#order-standard_cart .secondary-cart-sidebar .list-group-item:hover {
  background: var(--color-primary-light) !important;
  color: var(--color-primary-hover) !important;
}

/* Domain checker/search buttons and segmented controls. */
#order-standard_cart .domain-checker-container .btn,
#order-standard_cart .domain-lookup-primary .btn,
#order-standard_cart .input-group-btn .btn {
  background: var(--color-cta) !important;
  border-color: var(--color-cta) !important;
  color: #fff !important;
}

#order-standard_cart .domain-checker-container .btn:hover,
#order-standard_cart .domain-lookup-primary .btn:hover,
#order-standard_cart .input-group-btn .btn:hover {
  background: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  color: #fff !important;
}

@media (max-width: 767.98px) {
  section#main-body .tile .highlight {
    left: .875rem !important;
    right: .875rem !important;
  }

  section#main-body .btn,
  section#main-body button,
  section#main-body input[type="submit"] {
    min-height: 38px !important;
  }
}

