:root {
  color-scheme: light;

  --nv-page-bg: #ffffff;
  --nv-header-bg: #ffffff;
  --nv-link: #e4c69f;
  --nv-link-hover: #cfae82;

  --nv-container: 1260px;
  --nv-header-height: 136px;
  --nv-logo-height: 128px;
  --nv-nav-font-size: 24px;
  --nv-nav-line-height: 30px;
  --nv-nav-item-height: 76px;

  /* Page-specific tweaks (can be overridden in page CSS) */
  --nv-logo-shift-x: -80px;
  --nv-nav-shift-x: 120px;
}

.nv-body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--nv-header-bg);
  color: #1b3a46;
  min-height: 100vh;
  padding-top: var(--nv-header-height);
}

.nv-body--wizard {
  display: flex;
  justify-content: center;
}

.nv-body--login {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nv-header-height);
  width: 100%;
  z-index: 9999;
  background: var(--nv-header-bg);
  display: flex;
  align-items: center;
  border-bottom: none;
}

.nv-header__container {
  max-width: var(--nv-container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  height: var(--nv-header-height);
  padding-right: 24px;
  padding-left: 0;
}

.nv-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: auto;
}

.nv-brand__logo {
  display: block;
  height: var(--nv-logo-height);
  width: auto;
  margin-top: -10px;
  margin-left: -2px;
  transform: translateX(var(--nv-logo-shift-x));
}

.nv-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  transform: translateX(var(--nv-nav-shift-x));
}

.nv-nav__link {
  color: var(--nv-link);
  text-decoration: none;
  font-size: var(--nv-nav-font-size);
  font-weight: 500;
  line-height: var(--nv-nav-line-height);
  padding: 0 8px;
  transition: color 160ms ease;
  display: inline-flex;
  align-items: center;
  height: var(--nv-nav-item-height);
}

.nv-nav__link:hover {
  color: var(--nv-link-hover);
}
