:root {
  --theme-name: "07 Emerald Ice Light";
  --theme-app-background: #f3fbf8;
  --theme-sidebar-background: #edfdf8;
  --theme-sidebar-active-item: #d8f6ed;
  --theme-card-background: #ffffff;
  --theme-card-border: #cfe8e2;
  --theme-card-shadow: 0 14px 34px rgba(4, 120, 87, 0.08);
  --theme-primary-emerald: #047857;
  --theme-primary-emerald-hover: #065f46;
  --theme-cyan-accent: #0891b2;
  --theme-soft-lime-accent: #a3e635;
  --theme-text-primary: #0b1f1c;
  --theme-text-secondary: #4f6f68;
  --theme-input-background: #fbfffd;
  --theme-input-border: #b9dad3;
  --theme-input-focus: rgba(8, 145, 178, 0.18);
  --theme-table-header: #e8f7f3;
  --theme-table-row-hover: #edf9f6;
  --theme-button-primary: var(--theme-primary-emerald);
  --theme-button-primary-hover: var(--theme-primary-emerald-hover);
  --theme-button-secondary: #dbeee9;
  --theme-badge-background: #dff7ef;
  --theme-badge-text: #075e47;
  --theme-success-background: #dcfce7;
  --theme-success-text: #047857;
  --theme-warning-background: #fef3c7;
  --theme-warning-text: #92400e;
  --theme-danger-background: #fee2e2;
  --theme-danger-text: #b91c1c;
  --ui-bg: var(--theme-app-background);
  --ui-bg-soft: #f8fdfb;
  --ui-surface: var(--theme-card-background);
  --ui-surface-muted: #f4fbf8;
  --ui-text: var(--theme-text-primary);
  --ui-heading: #07231f;
  --ui-muted: var(--theme-text-secondary);
  --ui-border: var(--theme-card-border);
  --ui-border-soft: #dff0eb;
  --ui-primary: var(--theme-button-primary);
  --ui-primary-hover: var(--theme-button-primary-hover);
  --ui-primary-soft: #dff7ef;
  --ui-blue: var(--theme-cyan-accent);
  --ui-blue-soft: #e4f8fb;
  --ui-emerald: var(--theme-primary-emerald);
  --ui-emerald-soft: #e4f8ef;
  --ui-amber: var(--theme-warning-text);
  --ui-rose: var(--theme-danger-text);
  --ui-shadow: 0 18px 42px rgba(4, 120, 87, 0.1);
  --ui-shadow-sm: var(--theme-card-shadow);
  --ui-radius: 8px;
  --ui-radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ui-text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 14px;
  line-height: 1.45;
  background: var(--ui-bg) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
.container::before,
.header-row::after,
.card::after {
  display: none !important;
}

body:not(:has(.container)):not(:has(.login-box)) {
  padding: 22px !important;
}

body:has(.app-shell) {
  padding: 0 !important;
}

body:not(:has(.container)):not(:has(.login-box)) > *,
body:has(.login-box) > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  color: var(--ui-heading);
  letter-spacing: 0;
}

h1 {
  font-size: 26px;
  font-weight: 800;
}

h2 {
  width: 100%;
  margin: 0 0 14px;
  color: var(--ui-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

h3 {
  font-size: 15px;
  font-weight: 800;
}

body:not(:has(.container)):not(:has(.login-box)) > h2:first-of-type {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--ui-border);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(:has(.container)):not(:has(.login-box)) > h2:first-of-type::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--ui-emerald);
}

.form-box,
.table-box,
.box,
.report-shell,
.header-box,
.history-item,
.history-panel,
.account-balance-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 18px !important;
  padding: 16px !important;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  box-shadow: var(--ui-shadow-sm) !important;
  backdrop-filter: none !important;
}

.page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 18px !important;
}

.login-box {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
  margin: 0 auto;
  padding: 28px !important;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  box-shadow: var(--ui-shadow) !important;
}

.login-brand {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 0 0 22px;
  text-align: center;
}

.login-logo {
  display: block;
  width: min(210px, 74%);
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(4, 120, 87, 0.14));
}

.login-box h1 {
  margin: 4px 0 0;
  color: var(--ui-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.login-box h1::after {
  content: "";
  display: block;
  width: 62px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 99px;
  background: var(--ui-emerald);
}

.login-brand p {
  max-width: 300px;
  margin: 0;
  color: var(--ui-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

label {
  color: #334155;
  font-size: 12px;
  font-weight: 700 !important;
  letter-spacing: 0;
}

input,
select,
textarea {
  min-height: 38px;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius-sm) !important;
  background: #ffffff !important;
  color: var(--ui-text);
  font: inherit;
  font-size: 13px;
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

textarea {
  min-height: 84px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(47, 111, 179, 0.85) !important;
  box-shadow: 0 0 0 3px rgba(47, 111, 179, 0.14);
}

input[readonly],
input:disabled,
select:disabled,
textarea:disabled {
  background: var(--ui-bg-soft) !important;
  color: #475569;
}

button {
  min-height: 38px;
  padding-inline: 13px !important;
  border: 0 !important;
  border-radius: var(--ui-radius-sm) !important;
  background: var(--ui-primary) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 750 !important;
  letter-spacing: 0;
  transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease;
}

button:hover {
  background: var(--ui-primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--ui-shadow-sm) !important;
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.62;
  transform: none;
}

button.secondary,
.secondary,
.dashboard-modal-link.secondary {
  background: #e7edf5 !important;
  color: var(--ui-primary) !important;
}

button.danger,
.danger {
  background: var(--ui-rose) !important;
  color: #ffffff !important;
}

.module-grid,
.hub-grid,
.cards,
.stats-grid,
.fleet-summary-grid,
.grid {
  gap: 12px !important;
}

.module-card,
button.module-card,
.hub-card,
button.hub-card,
.action-card,
button.action-card,
.shortcut-card,
button.shortcut-card,
.menu-card,
button.menu-card {
  min-height: 82px !important;
  padding: 13px !important;
  border: 1px solid var(--ui-border) !important;
  border-left: 3px solid var(--ui-blue) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  color: var(--ui-heading) !important;
  box-shadow: var(--ui-shadow-sm) !important;
  text-align: left !important;
  cursor: pointer;
}

.module-card.active,
button.module-card.active,
.hub-card.active,
button.hub-card.active,
.action-card.active,
.shortcut-card.active,
.menu-card.active {
  border-color: #cbd8e7 !important;
  border-left-color: var(--ui-emerald) !important;
  background: var(--ui-surface) !important;
}

.module-card.placeholder,
.hub-card.placeholder {
  cursor: default;
  opacity: 0.72;
}

.module-card:hover,
button.module-card:hover,
.hub-card:hover,
button.hub-card:hover,
.action-card:hover,
button.action-card:hover,
.shortcut-card:hover,
button.shortcut-card:hover,
.menu-card:hover,
button.menu-card:hover {
  background: var(--ui-surface-muted) !important;
  transform: translateY(-1px);
  box-shadow: var(--ui-shadow) !important;
}

.module-card h3,
.module-card strong,
.hub-card h3,
.hub-card strong,
.action-card h3,
.shortcut-card h3,
.menu-card h3 {
  margin-top: 0;
  color: var(--ui-heading) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25;
}

.module-card p,
.module-card small,
.hub-card p,
.hub-card small,
.action-card p,
.shortcut-card p,
.menu-card p {
  color: var(--ui-muted) !important;
  font-size: 12px !important;
  line-height: 1.35;
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 1px solid var(--ui-border);
  margin: 18px 0;
}

table {
  width: 100% !important;
  overflow: hidden;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius);
  border-spacing: 0;
  box-shadow: none !important;
  background: var(--ui-surface) !important;
  font-size: 13px;
}

th {
  background: #f3f6fa !important;
  color: #263b5b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

td,
th {
  border-color: var(--ui-border-soft) !important;
  padding: 8px 10px !important;
  vertical-align: middle;
}

td {
  color: #1f2f46;
}

.table-scroll,
.table-wrapper,
.list-table,
.history-list {
  width: 100% !important;
  overflow-x: auto;
}

.table-scroll table th,
.table-wrapper table th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.corporate-tax-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.corporate-tax-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
}

.corporate-tax-nav a.active,
.corporate-tax-nav a[aria-current="page"] {
  border-color: var(--ui-primary) !important;
  background: var(--ui-primary) !important;
  color: #ffffff !important;
}

.corporate-tax-intro p {
  max-width: 900px;
  margin-bottom: 0;
}

.corporate-tax-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.corporate-tax-summary .summary-card {
  min-height: 96px;
  padding: 13px;
}

.corporate-tax-summary .summary-card strong,
.corporate-tax-summary .summary-card span,
.corporate-tax-summary .summary-card small {
  display: block;
}

.corporate-tax-summary .summary-card strong {
  color: var(--ui-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.corporate-tax-summary .summary-card span {
  margin-top: 8px;
  color: var(--ui-heading);
  font-size: 20px;
  font-weight: 800;
}

.corporate-tax-summary .summary-card small {
  margin-top: 7px;
  line-height: 1.35;
}

.corporate-tax-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.corporate-tax-panel {
  margin-bottom: 0 !important;
}

.corporate-tax-panel p {
  margin-bottom: 0;
}

.corporate-tax-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.corporate-tax-table {
  min-width: 720px;
}

.corporate-tax-empty {
  padding: 24px !important;
  color: var(--ui-muted);
  font-weight: 800;
  text-align: center;
}

tbody tr:nth-child(even) {
  background: #fafbfd;
}

tbody tr:hover {
  background: #f2f7fc;
}

.container {
  display: flex !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--ui-bg) !important;
}

.app-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: var(--ui-bg);
}

.sidebar {
  position: relative;
  z-index: 2;
  width: 260px !important;
  flex: 0 0 260px;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: #071a33 !important;
  color: #dbe7f5 !important;
  box-shadow: 10px 0 24px rgba(7, 26, 51, 0.16) !important;
  backdrop-filter: none !important;
}

.app-shell-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  padding: 18px 12px !important;
  overflow-y: auto;
}

.sidebar h2 {
  position: relative;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 14px;
}

.sidebar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  border-radius: 99px;
  background: var(--ui-emerald);
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px !important;
  padding: 0 4px 14px !important;
}

.nexora-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(4, 120, 87, 0.16);
}

.nexora-sidebar-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(4, 120, 87, 0.12);
}

.nexora-sidebar-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.nexora-sidebar-copy strong {
  color: var(--ui-heading);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.nexora-sidebar-copy small {
  color: var(--ui-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.15;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand-copy strong {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #051120;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark-nex {
  color: #051120;
}

.brand-wordmark-ora {
  color: #0070CD;
}

.brand-copy small {
  display: block;
  color: #64748B;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 5px 0 !important;
  padding: 8px 10px !important;
  border: 1px solid transparent;
  border-radius: var(--ui-radius-sm) !important;
  color: #cbd8e7 !important;
  background: transparent !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease, transform 0.14s ease;
}

.sidebar a:hover,
.sidebar a.active,
.sidebar a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  transform: translateX(2px);
  box-shadow: inset 3px 0 0 var(--ui-emerald) !important;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.nav-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.nav-copy strong,
.nav-copy small {
  color: inherit;
  line-height: 1.2;
}

.nav-copy strong {
  font-size: 13px;
  font-weight: 750;
}

.nav-copy small {
  font-size: 12px;
  font-weight: 650;
  opacity: 0.78;
}

.document-expiry-sidebar {
  display: none;
  margin-top: 16px;
  padding: 11px;
  border: 1px solid rgba(183, 121, 31, 0.35);
  border-radius: var(--ui-radius-sm);
  background: rgba(255, 251, 235, 0.95);
  color: #78350f;
  font-size: 12px;
  line-height: 1.4;
}

.document-expiry-sidebar strong {
  display: block;
  margin-bottom: 7px;
  color: #92400e;
  font-size: 12px;
}

.document-expiry-item {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(183, 121, 31, 0.25);
}

.document-expiry-item:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 22px !important;
}

.app-shell-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 22px !important;
}

.header-row {
  position: relative;
  margin-bottom: 16px !important;
  padding: 0 0 14px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ui-border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.header {
  color: var(--ui-heading) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 16px;
}

.stat-card,
.fleet-summary-card,
.card {
  position: relative;
  min-height: 88px !important;
  padding: 13px !important;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  box-shadow: var(--ui-shadow-sm) !important;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--ui-emerald);
}

.stat-card span {
  display: block;
  color: var(--ui-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ui-heading);
  font-size: 19px;
  font-weight: 800;
}

.stat-card small {
  display: block;
  margin-top: 7px;
  color: var(--ui-muted);
  line-height: 1.35;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
}

.card {
  border-left: 3px solid var(--ui-blue) !important;
  cursor: pointer;
}

.card:nth-child(3n + 1) {
  border-left-color: var(--ui-blue) !important;
}

.card:nth-child(3n + 2) {
  border-left-color: var(--ui-emerald) !important;
}

.card:nth-child(3n) {
  border-left-color: #7b8798 !important;
}

.card:hover,
.fleet-summary-card.clickable:hover {
  background: var(--ui-surface-muted) !important;
  transform: translateY(-1px);
  box-shadow: var(--ui-shadow) !important;
}

.card h3 {
  position: relative;
  margin: 0 0 6px;
  color: var(--ui-heading) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  z-index: 1;
}

.card p {
  position: relative;
  margin: 0;
  color: var(--ui-muted) !important;
  font-size: 12px;
  line-height: 1.35;
  z-index: 1;
}

.logout-button {
  width: auto !important;
  padding-inline: 14px !important;
}

.summary div,
.history-card {
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius) !important;
  box-shadow: var(--ui-shadow-sm);
  background: var(--ui-surface) !important;
}

.ok {
  color: #1f7a63 !important;
}

.warn {
  color: var(--ui-amber) !important;
}

.bad,
.error {
  color: var(--ui-rose) !important;
}

.accounting-nav a,
.breadcrumb a,
a.button-link {
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius-sm) !important;
  background: var(--ui-surface) !important;
  color: var(--ui-primary) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* Theme 07: Emerald Ice Light */
html body {
  background: var(--theme-app-background) !important;
  color: var(--theme-text-primary) !important;
}

html body .container,
html body .app-shell {
  background: var(--theme-app-background) !important;
}

html body .container .sidebar,
html body .app-shell .sidebar,
html body .sidebar.app-shell-sidebar {
  border-right: 1px solid var(--theme-card-border) !important;
  background: var(--theme-sidebar-background) !important;
  color: #24423b !important;
  box-shadow: 10px 0 28px rgba(4, 120, 87, 0.08) !important;
}

html body .container .sidebar h2,
html body .container .sidebar h2.dashboard-brand,
html body .app-shell .sidebar h2,
html body .app-shell .sidebar h2.dashboard-brand {
  color: var(--theme-text-primary) !important;
}

html body .container .sidebar h2::after,
html body .app-shell .sidebar h2::after {
  background: var(--theme-primary-emerald) !important;
}

html body .container .brand-logo,
html body .app-shell .brand-logo,
html body .nexora-sidebar-logo,
html body .nexora-title-logo {
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(4, 120, 87, 0.1) !important;
}

html body .container .sidebar a,
html body .app-shell .sidebar a,
html body .sidebar.app-shell-sidebar a {
  border-color: transparent !important;
  background: transparent !important;
  color: #29544c !important;
  box-shadow: none !important;
}

html body .container .sidebar a:first-of-type,
html body .container .sidebar a:hover,
html body .container .sidebar a.active,
html body .container .sidebar a[aria-current="page"],
html body .app-shell .sidebar a:first-of-type,
html body .app-shell .sidebar a:hover,
html body .app-shell .sidebar a.active,
html body .app-shell .sidebar a[aria-current="page"] {
  border-color: rgba(4, 120, 87, 0.2) !important;
  background: var(--theme-sidebar-active-item) !important;
  color: #064e3b !important;
  box-shadow: inset 3px 0 0 var(--theme-primary-emerald) !important;
}

html body .container .sidebar a .nav-icon,
html body .app-shell .sidebar a .nav-icon,
html body .container .sidebar a:first-of-type .nav-icon,
html body .app-shell .sidebar a:first-of-type .nav-icon {
  border-color: rgba(4, 120, 87, 0.24) !important;
  background: linear-gradient(135deg, var(--theme-primary-emerald), var(--theme-cyan-accent)) !important;
  color: #ffffff !important;
}

html body .nav-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #ffffff;
  opacity: 1;
  stroke: currentColor;
}

html body .nav-icon:empty::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  opacity: 1;
  background:
    linear-gradient(#ffffff, #ffffff) left top / 5px 5px no-repeat,
    linear-gradient(#ffffff, #ffffff) right top / 5px 5px no-repeat,
    linear-gradient(#ffffff, #ffffff) left bottom / 5px 5px no-repeat,
    linear-gradient(#ffffff, #ffffff) right bottom / 5px 5px no-repeat;
}

html body .header,
html body .section-heading,
html body h1,
html body h2,
html body h3,
html body h4 {
  color: var(--theme-text-primary) !important;
}

html body .dashboard-subtitle,
html body .muted,
html body .card p,
html body .module-card p,
html body .hub-card p,
html body .summary-card small,
html body .stat-card small,
html body .fleet-summary-card small {
  color: var(--theme-text-secondary) !important;
}

html body .card,
html body .stat-card,
html body .fleet-summary-card,
html body .module-card,
html body .hub-card,
html body .action-card,
html body .shortcut-card,
html body .menu-card,
html body .form-box,
html body .table-box,
html body .box,
html body .module-panel,
html body .metric,
html body .summary-card,
html body .status-card,
html body .detail-card,
html body .detail-box,
html body .history-card,
html body .account-balance-panel,
html body .account-balance-group,
html body .dashboard-modal,
html body .modal-panel,
html body .login-box {
  border-color: var(--theme-card-border) !important;
  background: var(--theme-card-background) !important;
  box-shadow: var(--theme-card-shadow) !important;
}

html body .card,
html body .module-card,
html body .hub-card,
html body .action-card,
html body .shortcut-card,
html body .menu-card,
html body .workflow-card {
  border-left-color: var(--theme-cyan-accent) !important;
}

html body .card:hover,
html body .module-card:hover,
html body .hub-card:hover,
html body .action-card:hover,
html body .shortcut-card:hover,
html body .menu-card:hover,
html body .workflow-card:hover,
html body .fleet-summary-card.clickable:hover {
  border-color: #b9dad3 !important;
  background: var(--ui-surface-muted) !important;
  box-shadow: 0 20px 44px rgba(4, 120, 87, 0.12) !important;
}

html body label {
  color: #31534c !important;
}

html body input,
html body select,
html body textarea {
  border-color: var(--theme-input-border) !important;
  background: var(--theme-input-background) !important;
  color: var(--theme-text-primary) !important;
}

html body input:focus,
html body select:focus,
html body textarea:focus {
  border-color: var(--theme-cyan-accent) !important;
  box-shadow: 0 0 0 3px var(--theme-input-focus) !important;
}

html body button,
html body .dashboard-modal-link,
html body a.button-link.primary {
  background: var(--theme-button-primary) !important;
  color: #ffffff !important;
}

html body button:hover,
html body .dashboard-modal-link:hover,
html body a.button-link.primary:hover {
  background: var(--theme-button-primary-hover) !important;
}

html body button.secondary,
html body .secondary,
html body .dashboard-modal-link.secondary,
html body .muted-button {
  background: var(--theme-button-secondary) !important;
  color: #075e47 !important;
}

html body button.danger,
html body .danger {
  background: var(--theme-danger-text) !important;
  color: #ffffff !important;
}

html body table {
  border-color: var(--theme-card-border) !important;
  background: var(--theme-card-background) !important;
}

html body th {
  background: var(--theme-table-header) !important;
  color: #225148 !important;
}

html body td,
html body th {
  border-color: var(--ui-border-soft) !important;
}

html body tbody tr:nth-child(even) {
  background: #f8fdfb !important;
}

html body tbody tr:hover {
  background: var(--theme-table-row-hover) !important;
}

html body .badge,
html body .status-badge,
html body .status-pill,
html body .tag,
html body .chip,
html body .pill {
  background: var(--theme-badge-background) !important;
  color: var(--theme-badge-text) !important;
}

html body .status-paid,
html body .status-paid_by_customer,
html body .status-paid_to_govt,
html body .status-charged_to_customer,
html body .status-already_charged,
html body .badge-approved,
html body .badge-open {
  background: var(--theme-success-background) !important;
  color: var(--theme-success-text) !important;
}

html body .status-partially_paid_by_customer,
html body .status-partially_paid_to_govt,
html body .status-not_charged,
html body .status-not_charged_to_customer,
html body .badge-pending_approval,
html body .badge-soft_locked {
  background: var(--theme-warning-background) !important;
  color: var(--theme-warning-text) !important;
}

html body .status-unpaid_by_customer,
html body .status-unpaid_to_govt,
html body .status-unmatched,
html body .badge-rejected,
html body .badge-cancelled {
  background: var(--theme-danger-background) !important;
  color: var(--theme-danger-text) !important;
}

html body .ok,
html body .success,
html body .recoverable {
  color: var(--theme-success-text) !important;
}

html body .warn,
html body .warning {
  color: var(--theme-warning-text) !important;
}

html body .bad,
html body .error {
  color: var(--theme-danger-text) !important;
}

html body .card-icon,
html body .summary-icon,
html body .workflow-icon {
  background: var(--ui-blue-soft) !important;
  color: var(--theme-cyan-accent) !important;
}

html body .icon-money,
html body .stat-card::before {
  background: var(--ui-emerald-soft) !important;
  color: var(--theme-primary-emerald) !important;
}

html body .icon-tool {
  background: #f1f9d7 !important;
  color: #4d7c0f !important;
}

/* Luxury dashboard direction for Theme 07 */
html body:has(.dashboard-title) {
  background:
    radial-gradient(circle at 82% 0%, rgba(163, 230, 53, 0.13), transparent 26rem),
    linear-gradient(135deg, #f4fbf8 0%, #eef8f5 52%, #f9fdfb 100%) !important;
}

html body:has(.dashboard-title) .container {
  background: transparent !important;
}

html body:has(.dashboard-title) .sidebar {
  width: 260px !important;
  padding: 18px 12px !important;
  border-right: 1px solid rgba(148, 220, 207, 0.18) !important;
  background:
    linear-gradient(180deg, #062a34 0%, #07363a 48%, #05262e 100%) !important;
  color: #d9f7ef !important;
  box-shadow: 16px 0 42px rgba(2, 44, 48, 0.22) !important;
}

html body:has(.dashboard-title) .sidebar h2.dashboard-brand {
  margin-bottom: 22px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(213, 250, 242, 0.14) !important;
}

html body:has(.dashboard-title) .sidebar .nexora-sidebar-brand {
  border-bottom-color: rgba(213, 250, 242, 0.14) !important;
}

html body:has(.dashboard-title) .sidebar h2.dashboard-brand::after {
  display: none !important;
}

html body:has(.dashboard-title) .sidebar .nexora-sidebar-copy strong {
  color: #f8fffd !important;
}

html body:has(.dashboard-title) .sidebar .nexora-sidebar-copy small {
  color: #a7d8d0 !important;
}

html body:has(.dashboard-title) .sidebar a {
  min-height: 48px !important;
  margin: 6px 0 !important;
  padding: 8px 10px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  color: #cdeee6 !important;
}

html body:has(.dashboard-title) .sidebar a:hover,
html body:has(.dashboard-title) .sidebar a:first-of-type,
html body:has(.dashboard-title) .sidebar a.active,
html body:has(.dashboard-title) .sidebar a[aria-current="page"] {
  border-color: rgba(134, 239, 172, 0.28) !important;
  background: rgba(20, 184, 166, 0.14) !important;
  color: #ffffff !important;
  box-shadow: inset 3px 0 0 var(--theme-soft-lime-accent), 0 12px 26px rgba(0, 0, 0, 0.12) !important;
}

html body:has(.dashboard-title) .sidebar .nav-copy strong,
html body:has(.dashboard-title) .sidebar .nav-copy small {
  color: inherit !important;
}

html body:has(.dashboard-title) .sidebar .nav-icon {
  width: 30px !important;
  height: 30px !important;
  flex-basis: 30px !important;
  border: 1px solid rgba(210, 255, 244, 0.22) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #0f766e, #0891b2) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 18px rgba(3, 105, 105, 0.22) !important;
}

html body:has(.dashboard-title) .sidebar .nav-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  color: #ffffff !important;
  opacity: 1 !important;
  stroke: currentColor !important;
}

html body:has(.dashboard-title) .main {
  padding: 26px 28px 34px !important;
}

html body:has(.dashboard-title) .header-row {
  margin-bottom: 18px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(4, 120, 87, 0.18) !important;
}

html body:has(.dashboard-title) .header {
  color: #061f24 !important;
  font-size: 25px !important;
  font-weight: 900 !important;
}

html body:has(.dashboard-title) .dashboard-subtitle {
  color: #38635b !important;
  font-weight: 800 !important;
}

html body:has(.dashboard-title) .main > .cards {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

html body:has(.dashboard-title) .main > .cards .card {
  min-height: 124px !important;
  padding: 15px !important;
  border: 1px solid rgba(185, 218, 211, 0.92) !important;
  border-left: 3px solid var(--theme-cyan-accent) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 253, 0.94)) !important;
  box-shadow: 0 18px 38px rgba(7, 69, 65, 0.09) !important;
}

html body:has(.dashboard-title) .main > .cards .card:hover {
  border-color: rgba(4, 120, 87, 0.42) !important;
  background: #ffffff !important;
  box-shadow: 0 24px 48px rgba(7, 69, 65, 0.13) !important;
}

html body:has(.dashboard-title) .main > .cards .card-icon {
  display: none !important;
}

html body:has(.dashboard-title) .main > .cards .card h3 {
  min-height: 32px;
  margin: 0 0 8px !important;
  color: #061f24 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.23 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

html body:has(.dashboard-title) .main > .cards .card p {
  color: #44645e !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.36 !important;
}

html body:has(.dashboard-title) .dashboard-section {
  margin-top: 22px !important;
}

html body:has(.dashboard-title) .main > .dashboard-section > .section-heading {
  margin: 0 0 12px !important;
  color: #082824 !important;
  font-size: 0 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

html body:has(.dashboard-title) .main > .dashboard-section > .section-heading::after {
  display: inline-block;
  color: #082824;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

html body:has(.dashboard-title) .main > .dashboard-section:nth-of-type(1) > .section-heading::after {
  content: "ACCOUNTS & BALANCES";
}

html body:has(.dashboard-title) .main > .dashboard-section:nth-of-type(2) > .section-heading::after {
  content: "OPERATIONS";
}

html body:has(.dashboard-title) .main > .dashboard-section:nth-of-type(3) > .section-heading::after {
  content: "FINANCIAL";
}

html body:has(.dashboard-title) .account-balance-panel,
html body:has(.dashboard-title) .account-balance-group {
  border-color: rgba(185, 218, 211, 0.92) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 16px 34px rgba(7, 69, 65, 0.08) !important;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-grid,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card {
  --ring-value: 68%;
  --ring-color: var(--theme-primary-emerald);
  position: relative;
  min-height: 138px !important;
  padding: 18px 88px 16px 16px !important;
  border: 1px solid rgba(185, 218, 211, 0.92) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 251, 0.96)) !important;
  box-shadow: 0 18px 38px rgba(7, 69, 65, 0.09) !important;
  overflow: hidden;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card::before,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--ring-color) var(--ring-value), #e3f3ef 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card::after,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 36px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ring-color) 0 34%, rgba(255, 255, 255, 0.92) 36% 100%);
  box-shadow: 0 0 0 1px rgba(185, 218, 211, 0.65);
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card:nth-child(1) {
  --ring-value: 82%;
  --ring-color: #0891b2;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card:nth-child(2) {
  --ring-value: 54%;
  --ring-color: #047857;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card:nth-child(3) {
  --ring-value: 38%;
  --ring-color: #64748b;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card:nth-child(4) {
  --ring-value: 66%;
  --ring-color: #84cc16;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card:nth-child(1) {
  --ring-value: 76%;
  --ring-color: #047857;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card:nth-child(2) {
  --ring-value: 69%;
  --ring-color: #0891b2;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card:nth-child(3) {
  --ring-value: 44%;
  --ring-color: #64748b;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card:nth-child(4) {
  --ring-value: 58%;
  --ring-color: #84cc16;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .summary-icon,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .summary-icon {
  display: none !important;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card span:not(.summary-icon),
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card span:not(.summary-icon) {
  color: #31534c !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card strong,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card strong {
  margin-top: 10px !important;
  color: #061f24 !important;
  font-size: 29px !important;
  font-weight: 900 !important;
}

html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card small,
html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card small {
  color: #4f6f68 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}

@media (max-width: 1320px) {
  html body:has(.dashboard-title) .main > .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  html body:has(.dashboard-title) .main > .cards,
  html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-grid,
  html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  html body:has(.dashboard-title) .sidebar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 16px !important;
  }

  html body:has(.dashboard-title) .sidebar h2.dashboard-brand {
    grid-column: 1 / -1;
    margin-bottom: 14px !important;
  }

  html body:has(.dashboard-title) .sidebar a {
    display: flex !important;
    width: 100% !important;
    min-width: 0;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 7px 10px !important;
  }

  html body:has(.dashboard-title) .sidebar .nav-icon {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  html body:has(.dashboard-title) .sidebar .nav-copy strong {
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  html body:has(.dashboard-title) .sidebar .nav-copy small {
    display: none !important;
  }

  html body:has(.dashboard-title) .main {
    padding: 18px !important;
  }

  html body:has(.dashboard-title) .main > .cards,
  html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-grid,
  html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-grid {
    grid-template-columns: 1fr !important;
  }

  html body:has(.dashboard-title) .dashboard-section:nth-of-type(2) .fleet-summary-card,
  html body:has(.dashboard-title) .dashboard-section:nth-of-type(3) .fleet-summary-card {
    padding-right: 76px !important;
  }
}

@media (max-width: 640px) {
  body:not(:has(.container)):not(:has(.login-box)) {
    padding: 16px !important;
  }

  .container,
  .app-shell {
    display: block !important;
  }

  .sidebar {
    width: 100% !important;
    flex-basis: auto;
    min-height: auto !important;
    height: auto !important;
    padding: 16px !important;
  }

  .app-shell-sidebar {
    position: relative;
    top: auto;
  }

  .sidebar a {
    display: inline-flex !important;
    margin-right: 6px !important;
  }

  .nexora-sidebar-brand {
    margin-bottom: 12px;
  }

  .main,
  .app-shell-main {
    padding: 18px !important;
  }

  .header-row {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .nexora-title-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .form-box,
  .table-box,
  .box {
    padding: 14px !important;
  }
}

@media (max-width: 560px) {
  h2 {
    font-size: 20px;
  }

  button {
    width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

html body .login-box .login-brand h1 {
  background: linear-gradient(90deg, #071827 0%, #102235 42%, #005dc5 68%, #00b9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 8px 18px rgba(2, 10, 22, 0.18);
}

html body .login-box .login-brand h1::after {
  background: linear-gradient(90deg, #071827 0%, #005dc5 55%, #00b9ff 100%) !important;
}

html body .login-box .login-brand p {
  background: linear-gradient(90deg, #102235 0%, #005dc5 58%, #00a7df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 5px 12px rgba(2, 10, 22, 0.12);
}

html body .sidebar .nexora-sidebar-brand {
  display: none !important;
}

/* ==========================================================================
   Nexora Page Title Standard
   Single reusable page-title class used across ERP modules.
   ========================================================================== */
html body {
  --nexora-title-blue: #0b5fc4;
  --nexora-title-blue-bright: #18b9ff;
  --nexora-title-ink: #101923;
  --nexora-title-metal: #5e7184;
  --nexora-title-line: #b9daf5;
}

html body .nexora-page-title {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  margin-top: 0 !important;
  color: var(--nexora-title-ink) !important;
  font-size: clamp(25px, 2.4vw, 36px) !important;
  font-weight: 950 !important;
  line-height: 1.04 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  text-shadow: 0 8px 14px rgba(9, 22, 34, 0.15) !important;
  transform: none !important;
  transition: none !important;
}

html body .nexora-title-text {
  display: inline-block;
  min-width: 0;
  color: var(--nexora-title-ink) !important;
  background-image: linear-gradient(
    105deg,
    #0a1119 0%,
    #172231 24%,
    var(--nexora-title-metal) 42%,
    var(--nexora-title-blue) 58%,
    var(--nexora-title-blue-bright) 82%,
    #075cbb 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 10px rgba(11, 95, 196, 0.14));
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.38), 0 10px 16px rgba(4, 18, 32, 0.14) !important;
}

html body .nexora-title-logo {
  display: inline-block;
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  border: 1px solid var(--nexora-title-line);
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff !important;
  box-shadow: none !important;
}

html body .dashboard-title .header {
  width: fit-content;
  max-width: 100%;
  color: var(--nexora-title-ink) !important;
  font-size: clamp(25px, 2.4vw, 36px) !important;
  font-weight: 950 !important;
  line-height: 1.04 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  background-image: linear-gradient(
    105deg,
    #0a1119 0%,
    #172231 24%,
    var(--nexora-title-metal) 42%,
    var(--nexora-title-blue) 58%,
    var(--nexora-title-blue-bright) 82%,
    #075cbb 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 10px rgba(11, 95, 196, 0.14));
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.38), 0 10px 16px rgba(4, 18, 32, 0.14) !important;
}

html body .nexora-page-title::after,
html body:not(:has(.container)):not(:has(.login-box)) > h2:first-of-type.nexora-page-title::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  flex: 0 0 0 !important;
  background: none !important;
  box-shadow: none !important;
}

html body .dashboard-title .dashboard-subtitle {
  flex-basis: 100%;
  margin-top: 4px;
  color: #52627a !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  -webkit-text-fill-color: #52627a;
}

html body .sidebar .dashboard-brand .brand-copy strong {
  display: block !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  color: #051120 !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

html body .sidebar .dashboard-brand .brand-wordmark-nex {
  color: #051120 !important;
}

html body .sidebar .dashboard-brand .brand-wordmark-ora {
  color: #0070CD !important;
}

html body .sidebar .dashboard-brand .brand-copy small {
  display: block !important;
  color: #64748B !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html body .sidebar .dashboard-brand .brand-logo {
  box-shadow: 0 8px 20px rgba(10, 95, 208, 0.18) !important;
}

@media (max-width: 768px) {
  html body .nexora-page-title {
    gap: 10px;
    font-size: 22px !important;
  }

  html body .nexora-title-logo {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  html body .nexora-page-title::after,
  html body:not(:has(.container)):not(:has(.login-box)) > h2:first-of-type.nexora-page-title::after {
    display: none !important;
  }
}
