/* Nexevo Solutions brand theme. Colors below are sampled directly from the
   supplied logo file (dashboard/nexevo-logo.png) rather than approximated —
   navy #3d4b73 ("ne"/part of the dot cluster), green #5ca560 ("evo"/part of
   the dot cluster), sky blue #6badea (the "solutions" subtitle/part of the
   dot cluster). The header below is light, not dark: the logo's wordmark is
   navy-on-transparent, meant to sit on a light background — it was briefly
   rendered as CSS-drawn text on a dark header before the real logo file was
   available, which is also how a "nexxevo" typo shipped (a literal double
   "x" standing in for the logo's stylized double-chevron mark); both are
   fixed by using the actual image (see dashboard/*.html's .nx-logo-img)
   instead of approximating it. */
:root {
  --nx-green: #5ca560;
  --nx-green-dark: #4b874e;
  --nx-blue: #6badea;
  --nx-blue-dark: #5386b6;
  --nx-navy: #3d4b73;
  --nx-navy-dark: #333f61;
  --nx-grey: #6B6D71;
  --nx-dark: #2B2E33;
  --nx-bg: #f5f6f8;
  --nx-card: #ffffff;
  --nx-border: #e2e5ea;

  --green: #1e9e5a; --amber: #d98c00; --red: #d9342b; --grey: #6b7280;
  --bg: var(--nx-bg); --card: var(--nx-card); --border: var(--nx-border); --text: var(--nx-dark);
}

.nx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid var(--nx-border);
  color: var(--nx-navy);
  padding: 12px 24px;
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-logo-img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nx-brand-sub, .nx-tagline {
  padding-left: 12px;
  border-left: 1px solid var(--nx-border);
}

.nx-brand-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nx-grey);
}

.nx-tagline {
  font-size: 12px;
  color: var(--nx-grey);
}

.nx-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.nx-nav a, .nx-nav button {
  color: var(--nx-navy);
  text-decoration: none;
  background: none;
  border: 1px solid var(--nx-border);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.nx-nav a:hover, .nx-nav button:hover {
  background: var(--nx-bg);
}

.nx-btn {
  display: inline-block;
  padding: 9px 18px;
  background: linear-gradient(90deg, var(--nx-green) 0%, var(--nx-blue) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nx-btn:hover { opacity: 0.92; }

.nx-btn-secondary {
  background: #fff;
  color: var(--nx-dark);
  border: 1px solid var(--nx-border);
}

.nx-locked-banner {
  background: #fdecea;
  border: 1px solid var(--red);
  color: #7a1f18;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 16px 24px;
  font-size: 14px;
}
