@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body.nk-saas-body {
  --nk-bg: #f3f3f3;
  --nk-bg-soft: #fafcff;
  --nk-surface: #ffffff;
  --nk-surface-alt: #f8faff;
  --nk-surface-muted: #f2f5fb;
  --nk-border: #e6ebf4;
  --nk-border-strong: #d6deed;
  --nk-text: #25324b;
  --nk-text-soft: #8190a9;
  --nk-heading: #16233b;
  --nk-accent: #3976f7;
  --nk-accent-soft: #edf3ff;
  --nk-accent-strong: #255fe0;
  --nk-success: #30b27a;
  --nk-shadow: 0 18px 42px rgba(31, 52, 97, 0.08);
  --nk-shadow-soft: 0 8px 18px rgba(31, 52, 97, 0.06);
  margin: 0;
  min-height: 100vh;
  color: var(--nk-text);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(57, 118, 247, 0.07), transparent 22%),
    radial-gradient(circle at bottom right, rgba(57, 118, 247, 0.05), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}

body.nk-saas-body,
body.nk-saas-body * {
  box-sizing: border-box;
}

body.nk-saas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(18, 29, 52, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 79;
}

body.nk-saas-body.nk-saas-sidebar-open::before {
  opacity: 1;
}

body.nk-saas-body a {
  color: inherit;
}

.nk-saas-app-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 18px;
  min-height: 100vh;
  padding: 18px;
  transition: grid-template-columns 0.22s ease;
}

html.nk-saas-sidebar-collapsed .nk-saas-app-shell,
body.nk-saas-sidebar-collapsed .nk-saas-app-shell {
  grid-template-columns: 82px minmax(0, 1fr);
}

.nk-saas-sidebar,
.nk-saas-topbar,
.nk-saas-content,
.nk-saas-public,
.nk-saas-login-card {
  border: 1px solid var(--nk-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--nk-shadow);
}

.nk-saas-sidebar {
  position: sticky;
  top: 18px;
  z-index: 81;
  align-self: start;
  min-height: calc(100vh - 36px);
  padding: 16px 12px 12px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nk-saas-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nk-saas-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.nk-saas-brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid var(--nk-border);
}

.nk-saas-brand-mark i {
  display: block;
  border-radius: 4px;
  background: linear-gradient(180deg, #5b91fb 0%, #3976f7 100%);
}

.nk-saas-brand-copy {
  min-width: 0;
}

.nk-saas-brand-copy strong {
  display: block;
  color: var(--nk-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nk-saas-brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--nk-text-soft);
  font-size: 11px;
  font-weight: 500;
}

.nk-saas-sidebar-toggle {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--nk-border);
  border-radius: 11px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nk-saas-sidebar-toggle:hover {
  background: var(--nk-bg-soft);
  border-color: #c7d4ee;
  transform: translateY(-1px);
}

.nk-saas-sidebar-toggle span {
  width: 13px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #50627f;
}

.nk-saas-sidebar-toggle--ghost {
  background: #ffffff;
}

.nk-saas-sidebar-section {
  padding: 0 8px;
  color: var(--nk-text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nk-saas-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nk-saas-nav a,
.nk-saas-subtabs a {
  text-decoration: none;
}

.nk-saas-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 14px;
  color: #5d6d87;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.nk-saas-nav a:hover {
  background: #f7faff;
  border-color: var(--nk-border);
  color: var(--nk-heading);
}

.nk-saas-nav a.is-active {
  background: var(--nk-accent-soft);
  border-color: rgba(57, 118, 247, 0.14);
  color: var(--nk-accent);
}

.nk-saas-nav a.is-active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 999px;
  background: var(--nk-accent);
}

.nk-saas-nav-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--nk-border);
  color: #6a7b96;
  font-size: 15px;
}

.nk-saas-nav a.is-active .nk-saas-nav-icon {
  background: #ffffff;
  border-color: rgba(57, 118, 247, 0.18);
  color: var(--nk-accent);
}

.nk-saas-nav-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nk-saas-nav-label {
  display: block;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.nk-saas-nav-copy small {
  color: var(--nk-text-soft);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
}

.nk-saas-sidebar-footer {
  margin-top: auto;
  padding: 12px 12px 11px;
  border: 1px solid var(--nk-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.nk-saas-sidebar-footer span,
.nk-saas-sidebar-footer small {
  display: block;
  color: var(--nk-text-soft);
}

.nk-saas-sidebar-footer span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 5px;
}

.nk-saas-sidebar-footer strong {
  display: block;
  color: var(--nk-heading);
  font-size: 13px;
  line-height: 1.35;
}

.nk-saas-sidebar-footer small {
  margin-top: 3px;
  font-size: 11px;
}

.nk-saas-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nk-saas-topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  padding: 16px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nk-saas-topbar-left,
.nk-saas-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-saas-topbar-right {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nk-saas-topbar-copy {
  min-width: 0;
}

.nk-saas-topbar-kicker,
.nk-saas-dashboard-kicker,
.nk-saas-view-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nk-text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nk-saas-topbar h1,
.nk-saas-dashboard-hero h1 {
  margin: 5px 0 0;
  color: var(--nk-heading);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.nk-saas-topbar p,
.nk-saas-dashboard-hero p,
.nk-saas-view-copy p {
  margin: 5px 0 0;
  color: var(--nk-text-soft);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.nk-saas-pill,
.nk-saas-badge,
.nk-saas-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--nk-border);
  background: #ffffff;
  color: #5d6d87;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.nk-saas-pill--soft,
.nk-saas-badge {
  background: var(--nk-accent-soft);
  border-color: rgba(57, 118, 247, 0.12);
  color: var(--nk-accent);
}

.nk-saas-button-quiet {
  min-height: 34px;
}

.nk-saas-content,
.nk-saas-public,
.nk-saas-login-card {
  padding: 20px;
  border-radius: 22px;
}

.nk-saas-content {
  overflow: hidden;
}

.nk-saas-dashboard-hero,
.nk-saas-view-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--nk-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--nk-shadow-soft);
}

.nk-saas-dashboard-copy,
.nk-saas-view-copy {
  max-width: 760px;
}

.nk-saas-hero-badges,
.nk-saas-chip-row,
.nk-saas-view-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nk-saas-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.nk-saas-metric,
.nk-saas-panel,
.nk-saas-embedded-admin {
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: 18px;
}

.nk-saas-metric {
  padding: 16px;
  box-shadow: var(--nk-shadow-soft);
}

.nk-saas-metric--mint,
.nk-saas-metric--soft,
.nk-saas-panel--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.nk-saas-metric-label {
  display: block;
  color: var(--nk-text-soft);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 9px;
}

.nk-saas-metric strong {
  display: block;
  color: var(--nk-heading);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-weight: 700;
}

.nk-saas-metric em {
  display: inline-flex;
  font-style: normal;
  color: var(--nk-text-soft);
  font-size: 11px;
}

.nk-saas-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.88fr);
  gap: 16px;
}

.nk-saas-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nk-saas-panel {
  padding: 16px;
  box-shadow: var(--nk-shadow-soft);
}

.nk-saas-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.nk-saas-panel h2,
.nk-saas-view-copy h2 {
  margin: 0;
  color: var(--nk-heading);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.nk-saas-panel-note {
  color: var(--nk-text-soft);
  font-size: 11px;
}

.nk-saas-summary-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nk-saas-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 13px;
  background: var(--nk-surface-alt);
  border: 1px solid var(--nk-border);
}

.nk-saas-summary-row span {
  color: var(--nk-text-soft);
  font-size: 12px;
}

.nk-saas-summary-row strong {
  color: var(--nk-heading);
  font-size: 15px;
}

.nk-saas-view-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nk-saas-embedded-admin {
  padding: 16px;
  overflow: auto;
}

.nk-saas-public {
  max-width: 1240px;
  margin: 18px auto;
}

.nk-saas-unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.nk-saas-unit-card {
  padding: 14px;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: 16px;
}

.nk-saas-unit-card h2 {
  margin: 12px 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.nk-saas-direct-bookings {
  display: grid;
  gap: 18px;
}

.nk-saas-direct-bookings-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e6ecfb;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.nk-saas-direct-bookings-copy h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
}

.nk-saas-direct-bookings-copy p {
  margin: 0;
  max-width: 760px;
  color: #667085;
  font-size: 13px;
}

.nk-saas-direct-bookings-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nk-saas-direct-bookings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nk-saas-direct-booking-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #e8edf7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.nk-saas-direct-booking-media img,
.nk-saas-direct-booking-media .rp-img,
.nk-saas-direct-booking-media .rp-img--placeholder {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.nk-saas-direct-booking-body {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.nk-saas-direct-booking-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.nk-saas-direct-booking-top h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.15;
}

.nk-saas-direct-booking-top p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.nk-saas-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nk-saas-status-badge.is-on {
  background: rgba(57, 118, 247, 0.1);
  color: #2459c6;
}

.nk-saas-status-badge.is-off {
  background: #f4f6fb;
  color: #64748b;
}

.nk-saas-direct-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nk-saas-direct-booking-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8faff;
  color: #475467;
  font-size: 12px;
}

.nk-saas-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e6ecfb;
  border-radius: 18px;
  background: #fbfdff;
}

.nk-saas-switch-copy {
  display: grid;
  gap: 4px;
}

.nk-saas-switch-copy strong {
  font-size: 14px;
  color: #0f172a;
}

.nk-saas-switch-copy small {
  color: #667085;
  font-size: 12px;
}

.nk-saas-switch {
  position: relative;
  display: inline-flex;
}

.nk-saas-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.nk-saas-switch-ui {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #d9e3f8;
  transition: background 0.18s ease;
}

.nk-saas-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease;
}

.nk-saas-switch input:checked + .nk-saas-switch-ui {
  background: #3976f7;
}

.nk-saas-switch input:checked + .nk-saas-switch-ui::after {
  transform: translateX(22px);
}

.nk-saas-direct-booking-url {
  display: grid;
  gap: 8px;
}

.nk-saas-direct-booking-url label {
  color: #475467;
  font-size: 12px;
  font-weight: 600;
}

.nk-saas-direct-booking-url-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.nk-saas-direct-booking-url-row input {
  min-width: 0;
  height: 42px;
  border: 1px solid #d8e2f4;
  border-radius: 14px;
  background: #f9fbff;
  padding: 0 14px;
  font-size: 12px;
  color: #344054;
}

.nk-saas-direct-booking-footer {
  display: flex;
  justify-content: flex-start;
}

.nk-saas-direct-bookings-save {
  display: flex;
  justify-content: flex-end;
}

.nk-saas-empty-state {
  padding: 28px;
  border: 1px dashed #c9d7f6;
  border-radius: 22px;
  background: #fbfdff;
  text-align: center;
}

.nk-saas-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background-color: #eef1f5;
  background-image: url('../images/dashboard-login-background.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.nk-saas-login-card {
  width: min(520px, 100%);
  backdrop-filter: blur(2px);
}

.nk-saas-login-card h1 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
}

.nk-saas-login-form p {
  margin: 0 0 14px;
}

.nk-saas-login-form input[type="text"],
.nk-saas-login-form input[type="password"],
.nk-saas-login-form input[type="email"],
.nk-saas-content input[type="text"],
.nk-saas-content input[type="number"],
.nk-saas-content input[type="date"],
.nk-saas-content input[type="email"],
.nk-saas-content input[type="url"],
.nk-saas-content input[type="time"],
.nk-saas-content input[type="search"],
.nk-saas-content input[type="tel"],
.nk-saas-content select,
.nk-saas-content textarea {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--nk-border-strong);
  border-radius: 11px;
  background: #ffffff;
  color: var(--nk-text);
  font-size: 13px;
  line-height: 1.4;
  box-shadow: none;
  font-family: inherit;
}

.nk-saas-content textarea {
  min-height: 118px;
  resize: vertical;
}

.nk-saas-content input:focus,
.nk-saas-content select:focus,
.nk-saas-content textarea:focus,
.nk-saas-login-form input:focus {
  outline: none;
  border-color: rgba(57, 118, 247, 0.46);
  box-shadow: 0 0 0 4px rgba(57, 118, 247, 0.09);
}

.nk-saas-body .button,
.nk-saas-body button,
.nk-saas-body input[type="submit"],
.nk-saas-body input[type="button"] {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 11px;
  border: 1px solid var(--nk-border-strong);
  background: #ffffff;
  color: var(--nk-heading);
  box-shadow: none;
  text-shadow: none;
  font-size: 12px;
  font-weight: 600;
}

.nk-saas-body .button:hover,
.nk-saas-body button:hover,
.nk-saas-body input[type="submit"]:hover,
.nk-saas-body input[type="button"]:hover {
  border-color: #c3d1ec;
  background: #f8fbff;
}

.nk-saas-body .button.button-primary,
.nk-saas-body .button-primary,
.nk-saas-body input[type="submit"].button-primary {
  border-color: var(--nk-accent);
  background: var(--nk-accent);
  color: #ffffff;
}

.nk-saas-body .button.button-primary:hover,
.nk-saas-body .button-primary:hover,
.nk-saas-body input[type="submit"].button-primary:hover {
  border-color: var(--nk-accent-strong);
  background: var(--nk-accent-strong);
  color: #ffffff;
}

.nk-saas-alert,
.nk-saas-body .notice {
  margin: 0 0 16px;
  padding: 12px 13px;
  border: 1px solid var(--nk-border);
  border-radius: 13px;
  background: #ffffff;
  color: #38475e;
  box-shadow: none;
  font-size: 13px;
}

.nk-saas-body .notice-success {
  border-color: #d5efe4;
  background: #f7fcfa;
}

.nk-saas-body .notice-warning,
.nk-saas-body .notice-error {
  border-color: #e8dff2;
  background: #fbf9ff;
}

.nk-saas-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nk-saas-subtabs a,
.nav-tab {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--nk-border);
  border-radius: 999px;
  background: #ffffff;
  color: #60718c;
  font-size: 12px;
  font-weight: 600;
}

.nk-saas-subtabs a.is-active,
.nav-tab-active {
  border-color: rgba(57, 118, 247, 0.16);
  background: var(--nk-accent-soft);
  color: var(--nk-accent);
}

.nk-saas-content .wrap,
.nk-saas-content .lbc-wrap {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.nk-saas-content .wrap h1,
.nk-saas-content .lbc-wrap h1 {
  margin: 0 0 14px;
  color: var(--nk-heading);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.nk-saas-content h2,
.nk-saas-content h3,
.nk-saas-content h4 {
  color: var(--nk-heading);
  letter-spacing: -0.02em;
}

.nk-saas-content h2 {
  font-size: 16px;
}

.nk-saas-content h3 {
  font-size: 14px;
}

.nk-saas-content p,
.nk-saas-content li,
.nk-saas-content label,
.nk-saas-content td,
.nk-saas-content th {
  font-size: 13px;
  line-height: 1.5;
}

.nk-saas-content .description,
.nk-saas-content .forminp p,
.nk-saas-content .howto {
  color: var(--nk-text-soft);
  font-size: 11px;
}

.nk-saas-content .form-table {
  width: 100%;
  border-collapse: collapse;
}

.nk-saas-content .form-table th,
.nk-saas-content .form-table td {
  padding: 11px 0;
  vertical-align: top;
}

.nk-saas-content .form-table th {
  width: 210px;
  padding-right: 16px;
  color: var(--nk-heading);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.nk-saas-content .form-table td .regular-text,
.nk-saas-content .form-table td .large-text,
.nk-saas-content .form-table td textarea,
.nk-saas-content .form-table td select {
  max-width: 720px;
}

.nk-saas-content .submit {
  margin: 0;
  padding: 10px 0 0;
}

.widefat,
.wp-list-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--nk-border);
  border-radius: 15px;
  background: #ffffff;
}

.widefat th,
.widefat td,
.wp-list-table th,
.wp-list-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #edf1f7;
  text-align: left;
  vertical-align: top;
}

.widefat thead th,
.wp-list-table thead th {
  background: #f7f9fd;
  color: var(--nk-text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widefat tbody tr:last-child td,
.wp-list-table tbody tr:last-child td {
  border-bottom: 0;
}

.widefat tbody tr:hover td,
.wp-list-table tbody tr:hover td {
  background: #fbfcff;
}

.nk-saas-content .tablenav,
.nk-saas-content .tablenav.top,
.nk-saas-content .tablenav.bottom {
  margin: 0 0 14px;
}

.nk-saas-content .subsubsub {
  margin: 0 0 12px;
  color: var(--nk-text-soft);
}

.nk-saas-content .card,
.nk-saas-content .postbox,
.nk-saas-content .stuffbox {
  width: auto;
  max-width: 100%;
  padding: 15px;
  border: 1px solid var(--nk-border) !important;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none !important;
}

.nk-saas-content .postbox-header,
.nk-saas-content .handlediv {
  border-bottom-color: var(--nk-border);
}

.nk-saas-content .nav-tab-wrapper {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nk-saas-content .components-base-control,
.nk-saas-content .components-panel__body {
  max-width: 100%;
}

.nk-saas-content .select2-container {
  min-width: 220px;
  max-width: 100%;
}

.nk-saas-content .select2-container .select2-selection--single,
.nk-saas-content .select2-container .select2-selection--multiple {
  min-height: 40px;
  border-radius: 11px;
  border-color: var(--nk-border-strong);
}

.nk-saas-content .spinner {
  float: none;
}

.nk-saas-content .dashicons {
  line-height: 1;
}

.nk-saas-content .hidden {
  display: none !important;
}

.nk-saas-content .lbc-create-unit-panel {
  margin: 12px 0 18px;
  padding: 16px;
  border: 1px solid var(--nk-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--nk-shadow-soft);
}

.nk-saas-content .lbc-create-unit-panel h3 {
  margin: 0 0 12px;
}

.nk-saas-content .lbc-create-unit-panel .button {
  margin-right: 8px;
}

html.nk-saas-sidebar-collapsed .nk-saas-sidebar,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar {
  align-items: center;
}

html.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-section,
html.nk-saas-sidebar-collapsed .nk-saas-nav-copy,
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer,
body.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-section,
body.nk-saas-sidebar-collapsed .nk-saas-nav-copy,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer {
  display: none;
}

html.nk-saas-sidebar-collapsed .nk-saas-sidebar-head,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-head {
  width: 100%;
  flex-direction: column;
}

html.nk-saas-sidebar-collapsed .nk-saas-nav,
body.nk-saas-sidebar-collapsed .nk-saas-nav {
  width: 100%;
}

html.nk-saas-sidebar-collapsed .nk-saas-nav a,
body.nk-saas-sidebar-collapsed .nk-saas-nav a {
  justify-content: center;
  padding-left: 8px;
  padding-right: 8px;
}

html.nk-saas-sidebar-collapsed .nk-saas-nav a.is-active::before,
body.nk-saas-sidebar-collapsed .nk-saas-nav a.is-active::before {
  left: 50%;
  top: auto;
  bottom: -6px;
  width: 16px;
  height: 3px;
  transform: translateX(-50%);
}

@media (max-width: 1180px) {
  .nk-saas-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .nk-saas-topbar,
  .nk-saas-dashboard-hero,
  .nk-saas-view-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nk-saas-topbar-right {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .nk-saas-app-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  html.nk-saas-sidebar-collapsed .nk-saas-app-shell,
  body.nk-saas-sidebar-collapsed .nk-saas-app-shell {
    grid-template-columns: 1fr;
  }

  .nk-saas-topbar {
    position: sticky;
    top: 12px;
  }

  .nk-saas-sidebar {
    position: fixed;
    top: 12px;
    left: 12px;
    bottom: 12px;
    width: min(280px, calc(100vw - 24px));
    min-height: auto;
    transform: translateX(calc(-100% - 18px));
    transition: transform 0.22s ease;
    overflow: auto;
  }

  body.nk-saas-body.nk-saas-sidebar-open .nk-saas-sidebar {
    transform: translateX(0);
  }

  .nk-saas-nav {
    gap: 6px;
  }

  .nk-saas-nav a {
    min-width: 100%;
  }

  html.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
  html.nk-saas-sidebar-collapsed .nk-saas-sidebar-section,
  html.nk-saas-sidebar-collapsed .nk-saas-nav-copy,
  html.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer,
  body.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-section,
  body.nk-saas-sidebar-collapsed .nk-saas-nav-copy,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer {
    display: block;
  }

  html.nk-saas-sidebar-collapsed .nk-saas-sidebar-head,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-head {
    flex-direction: row;
  }

  html.nk-saas-sidebar-collapsed .nk-saas-nav a,
  body.nk-saas-sidebar-collapsed .nk-saas-nav a {
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  html.nk-saas-sidebar-collapsed .nk-saas-nav a.is-active::before,
  body.nk-saas-sidebar-collapsed .nk-saas-nav a.is-active::before {
    left: -12px;
    top: 9px;
    bottom: 9px;
    width: 3px;
    height: auto;
    transform: none;
  }
}

@media (max-width: 700px) {
  .nk-saas-sidebar,
  .nk-saas-topbar,
  .nk-saas-content,
  .nk-saas-public,
  .nk-saas-login-card {
    border-radius: 18px;
  }

  .nk-saas-sidebar,
  .nk-saas-topbar,
  .nk-saas-content,
  .nk-saas-public,
  .nk-saas-login-card,
  .nk-saas-view-head,
  .nk-saas-dashboard-hero {
    padding: 15px;
  }

  .nk-saas-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .nk-saas-content .form-table th,
  .nk-saas-content .form-table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .nk-saas-topbar-right {
    width: 100%;
  }

  .nk-saas-direct-bookings-head,
  .nk-saas-direct-booking-card,
  .nk-saas-direct-bookings-grid,
  .nk-saas-direct-booking-url-row {
    grid-template-columns: 1fr;
  }

  .nk-saas-direct-bookings-save {
    justify-content: stretch;
  }

  .nk-saas-direct-bookings-save .button,
  .nk-saas-direct-booking-url-row .button,
  .nk-saas-direct-booking-footer .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .nk-saas-app-shell {
    padding: 10px;
    gap: 10px;
  }

  .nk-saas-sidebar {
    top: 10px;
    left: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .nk-saas-metrics {
    grid-template-columns: 1fr;
  }

  .nk-saas-topbar-right,
  .nk-saas-hero-badges,
  .nk-saas-chip-row,
  .nk-saas-view-meta {
    width: 100%;
  }

  .nk-saas-pill,
  .nk-saas-badge,
  .nk-saas-chip,
  .nk-saas-body .button.nk-saas-button-quiet {
    width: 100%;
    justify-content: center;
  }
}

/* Nordkeys app: remove default browser underlines from all app buttons and links. */
body.nk-saas-body a,
body.nk-saas-body a:hover,
body.nk-saas-body a:focus,
body.nk-saas-body .button,
body.nk-saas-body .button:hover,
body.nk-saas-body .button:focus,
body.nk-saas-body button,
body.nk-saas-body button:hover,
body.nk-saas-body button:focus {
  text-decoration: none !important;
}


/* ===== NK SaaS v16: button text and pricing landing ===== */
.nk-saas-app a,
.nk-saas-app a:hover,
.nk-saas-app a:focus { text-decoration: none !important; }
.nk-saas-app .button,
.nk-saas-app button,
.nk-saas-app input[type="submit"],
.nk-saas-app a.button,
.nk-saas-embedded-admin .button,
.nk-saas-embedded-admin button,
.nk-saas-embedded-admin input[type="submit"],
.nk-saas-embedded-admin a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  line-height: 1.15 !important;
  text-align: center !important;
  text-decoration: none !important;
}
.nk-pricing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 24px;
}
.nk-pricing-choice-card {
  display: block;
  padding: 22px;
  border: 1px solid #dbe4f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18,29,52,.06);
  color: #1f2d46;
}
.nk-pricing-choice-card:hover,
.nk-pricing-choice-card:focus {
  border-color: #3f73f6;
  box-shadow: 0 16px 36px rgba(63,115,246,.12);
}
.nk-pricing-choice-card strong { display:block; font-size:20px; margin-bottom:8px; color:#17233d; }
.nk-pricing-choice-card small { display:block; color:#65758f; font-size:13px; line-height:1.5; }
.nk-pricing-back { margin-bottom:16px; }
@media (max-width: 760px) { .nk-pricing-choice-grid { grid-template-columns: 1fr; } }


/* v19 sidebar compact cleanup */
.nk-saas-sidebar {
  gap: 12px;
  padding: 14px 10px 10px;
}

.nk-saas-brand {
  gap: 9px;
}

.nk-saas-brand-copy span,
.nk-saas-sidebar-section,
.nk-saas-nav-copy small,
.nk-saas-sidebar-footer small,
.nk-saas-sidebar-footer span {
  display: none !important;
}

.nk-saas-brand-copy strong {
  font-size: 15px;
}

.nk-saas-nav {
  gap: 1px;
}

.nk-saas-nav a {
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px;
  border-radius: 12px;
}

.nk-saas-nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
}

.nk-saas-nav a.is-active .nk-saas-nav-icon,
.nk-saas-nav a:hover .nk-saas-nav-icon {
  background: transparent;
  border-color: transparent;
}

.nk-saas-nav-copy {
  gap: 0;
}

.nk-saas-nav-label {
  font-size: 14px;
  line-height: 1.2;
}

.nk-saas-sidebar-footer {
  padding: 10px 12px;
}

.nk-saas-sidebar-footer strong {
  font-size: 12px;
}

html.nk-saas-sidebar-collapsed .nk-saas-nav a,
body.nk-saas-sidebar-collapsed .nk-saas-nav a {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

html.nk-saas-sidebar-collapsed .nk-saas-nav-label,
body.nk-saas-sidebar-collapsed .nk-saas-nav-label,
html.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
body.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer {
  display: none !important;
}


/* v22 report date picker: same modern style as Add Reservation */
.nk-report-date-display {
  cursor: pointer !important;
  background: #fff !important;
}
.lbc-reservation-date-popup {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100001 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  background: rgba(18,29,52,.34) !important;
}
.lbc-reservation-date-popup[hidden] {
  display: none !important;
}
.lbc-reservation-date-card {
  width: min(520px, 94vw) !important;
  background: #fff !important;
  border: 1px solid #dbe4f2 !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 70px rgba(18,29,52,.24) !important;
  padding: 22px !important;
}
.lbc-reservation-date-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}
.lbc-reservation-date-head strong {
  font-size: 22px !important;
  color: #1f2d46 !important;
}
.lbc-reservation-date-head button {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  border: 1px solid #d7e2f3 !important;
  background: #f8fbff !important;
  color: #1f2d46 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lbc-reservation-date-week,
.lbc-reservation-date-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 9px !important;
  text-align: center !important;
}
.lbc-reservation-date-week {
  margin-bottom: 10px !important;
  color: #65758f !important;
  font-weight: 700 !important;
}
.lbc-reservation-date-day,
.lbc-reservation-date-empty {
  min-height: 48px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}
.lbc-reservation-date-day {
  border: 0 !important;
  background: #f3f3f3 !important;
  color: #1f2d46 !important;
  cursor: pointer !important;
}
.lbc-reservation-date-day:hover {
  background: #edf3ff !important;
}
.lbc-reservation-date-day.is-selected {
  background: #3f73f6 !important;
  color: #fff !important;
}
.lbc-reservation-date-day.is-disabled {
  opacity: .32 !important;
  cursor: not-allowed !important;
}



/* v23 pricing logos */
.nk-pricing-choice-logo-wrap {
  display:flex;
  align-items:center;
  justify-content:flex-start;
  height:52px;
  min-height:52px;
  margin: 0 0 8px;
}
.nk-pricing-choice-logo {
  display:block;
  height:52px;
  width:auto;
  max-width:150px;
  object-fit:contain;
  object-position:left center;
}
.nk-pricing-choice-logo--wide {
  height:52px;
  width:auto;
  max-width:150px;
}


/* v29 direct bookings autosave */
.nk-saas-switch-row.is-saving {
  opacity: .72;
  pointer-events: none;
}
.nk-saas-direct-bookings-save {
  display: none !important;
}


/* v30 direct booking requirements */
.nk-saas-direct-booking-card.has-missing-requirements {
  border-color: rgba(220, 38, 38, .24) !important;
}
.nk-saas-direct-booking-missing {
  margin: 8px 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(220, 38, 38, .22);
  border-radius: 12px;
  background: #fff7f7;
  color: #991b1b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}


/* v59 Direct Bookings public page button */
.nk-saas-direct-bookings-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nk-saas-direct-bookings-actions .nk-saas-view-booking-page {
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
}


/* v72 topbar save button for long editable pages */
.nk-saas-topbar {
  position: sticky;
  top: 18px;
  z-index: 70;
}
.nk-saas-topbar-save {
  min-height: 34px !important;
  border-radius: 999px !important;
  padding: 7px 16px !important;
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 14px rgba(73, 117, 240, .20) !important;
  text-decoration: none !important;
}
.nk-saas-topbar-save:hover,
.nk-saas-topbar-save:focus {
  background: #315fd4 !important;
  border-color: #315fd4 !important;
  color: #fff !important;
}
.nk-saas-topbar-save:disabled {
  opacity: .7;
  cursor: wait;
}
@media (max-width: 900px) {
  .nk-saas-topbar-save {
    width: 100%;
    justify-content: center;
  }
}


/* v73 topbar save position + dirty state */
.nk-saas-topbar-right .nk-saas-topbar-save {
  order: 99;
  margin-left: 2px;
}
.nk-saas-topbar-save {
  background: #ffffff !important;
  border-color: var(--nk-border) !important;
  color: #5d6d87 !important;
  box-shadow: none !important;
}
.nk-saas-topbar-save.is-dirty {
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(73, 117, 240, .20) !important;
}
.nk-saas-topbar-save.is-dirty:hover,
.nk-saas-topbar-save.is-dirty:focus {
  background: #315fd4 !important;
  border-color: #315fd4 !important;
  color: #fff !important;
}
.nk-saas-topbar-save:not(.is-dirty):hover,
.nk-saas-topbar-save:not(.is-dirty):focus {
  background: #f8fafc !important;
  border-color: #c7d4ee !important;
  color: #334155 !important;
}


/* v74 save button remains clickable even when clean */
.nk-saas-topbar-save[aria-disabled="true"] {
  cursor: pointer !important;
}


/* v76 save changes dirty state refinement */
.nk-saas-topbar-save:not(.is-dirty) {
  background: #ffffff !important;
  border-color: #d9e3f1 !important;
  color: #5d6d87 !important;
  box-shadow: none !important;
}
.nk-saas-topbar-save.is-dirty,
.nk-saas-topbar-save.is-dirty.button-primary {
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(73, 117, 240, .22) !important;
}


/* v80 simplified client workspace topbar */
.nk-saas-topbar--simple .nk-saas-topbar-left {
  gap: 0 !important;
}
.nk-saas-topbar--simple .nk-saas-sidebar-toggle,
.nk-saas-topbar--simple .nk-saas-topbar-kicker,
.nk-saas-topbar--simple .nk-saas-topbar-copy p,
.nk-saas-topbar--simple .nk-saas-pill--soft {
  display: none !important;
}
.nk-saas-topbar--simple .nk-saas-topbar-copy h1 {
  margin: 0 !important;
}

/* v81 dashboard shell refresh inspired by OTA dashboard layout */
body.nk-saas-body {
  background: #f3f3f3;
}

body.nk-saas-body .nk-saas-app-shell {
  grid-template-columns: 256px minmax(0, 1fr);
  gap: 22px;
  padding: 16px;
}

html.nk-saas-sidebar-collapsed .nk-saas-app-shell,
body.nk-saas-sidebar-collapsed .nk-saas-app-shell {
  grid-template-columns: 82px minmax(0, 1fr);
}

body.nk-saas-body .nk-saas-sidebar,
body.nk-saas-body .nk-saas-topbar,
body.nk-saas-body .nk-saas-content {
  background: #fff;
  box-shadow: none;
  border-color: #e5e9f2;
}

body.nk-saas-body .nk-saas-sidebar {
  top: 16px;
  min-height: calc(100vh - 32px);
  padding: 14px 10px 12px;
  border-radius: 20px;
  gap: 14px;
}

body.nk-saas-body .nk-saas-sidebar-head {
  padding: 2px 6px 6px;
  border-bottom: 1px solid #eef1f6;
}

body.nk-saas-body .nk-saas-brand {
  gap: 10px;
}

body.nk-saas-body .nk-saas-brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 5px;
  border-radius: 11px;
  background: linear-gradient(180deg, #4d7df2 0%, #3f73ef 100%);
  border-color: #4d7df2;
}

body.nk-saas-body .nk-saas-brand-mark i {
  background: rgba(255,255,255,.92);
}

body.nk-saas-body .nk-saas-brand-copy strong {
  font-size: 15px;
}

body.nk-saas-body .nk-saas-brand-copy span {
  margin-top: 2px;
  font-size: 11px;
  color: #7b879c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

body.nk-saas-body .nk-saas-sidebar-toggle {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 10px;
  border-color: #e4e9f2;
}

body.nk-saas-body .nk-saas-sidebar-section {
  padding: 0 8px;
  font-size: 11px;
  letter-spacing: .08em;
  color: #9aa5b5;
}

body.nk-saas-body .nk-saas-nav {
  gap: 4px;
}

body.nk-saas-body .nk-saas-nav a {
  min-height: 44px;
  padding: 10px 12px;
  gap: 10px;
  border-radius: 10px;
  border-color: transparent;
  color: #25344d;
  font-weight: 600;
}

body.nk-saas-body .nk-saas-nav a:hover {
  background: #f5f8fe;
  border-color: transparent;
}

body.nk-saas-body .nk-saas-nav a.is-active {
  background: #edf3ff;
  color: #2f6ff2;
  border-color: #dfe9ff;
}

body.nk-saas-body .nk-saas-nav a.is-active::before {
  left: -10px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #2f6ff2;
}

body.nk-saas-body .nk-saas-nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: #66748c;
  font-size: 18px;
}

body.nk-saas-body .nk-saas-nav a.is-active .nk-saas-nav-icon {
  background: transparent;
  border: 0;
  color: #2f6ff2;
}

body.nk-saas-body .nk-saas-nav-copy {
  gap: 0;
}

body.nk-saas-body .nk-saas-nav-label {
  font-size: 14px;
  font-weight: 600;
}

body.nk-saas-body .nk-saas-nav-copy small {
  display: none;
}

body.nk-saas-body .nk-saas-sidebar-footer {
  margin-top: auto;
  padding: 12px 8px 2px;
  border: 0;
  border-top: 1px solid #eef1f6;
  border-radius: 0;
  background: transparent;
}

body.nk-saas-body .nk-saas-sidebar-footer strong {
  font-size: 13px;
  font-weight: 600;
  color: #6a768a;
}

body.nk-saas-body .nk-saas-main {
  gap: 18px;
}

body.nk-saas-body .nk-saas-topbar {
  top: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  min-height: 78px;
}

body.nk-saas-body .nk-saas-topbar-left,
body.nk-saas-body .nk-saas-topbar-right {
  gap: 12px;
}

body.nk-saas-body .nk-saas-topbar-copy h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
}

body.nk-saas-body .nk-saas-pill,
body.nk-saas-body .nk-saas-button-quiet,
body.nk-saas-body .nk-saas-topbar-save {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  border-color: #e3e8f0;
  font-size: 13px;
  font-weight: 600;
}

body.nk-saas-body .nk-saas-button-quiet {
  background: #fff;
}

body.nk-saas-body .nk-saas-topbar-save {
  box-shadow: none;
}

body.nk-saas-body .nk-saas-content {
  border-radius: 18px;
}

body.nk-saas-body .nk-saas-dashboard-hero,
body.nk-saas-body .nk-saas-view-head,
body.nk-saas-body .nk-saas-panel,
body.nk-saas-body .nk-saas-embedded-admin,
body.nk-saas-body .nk-saas-metric {
  border-radius: 16px;
  box-shadow: none;
}

@media (max-width: 960px) {
  body.nk-saas-body .nk-saas-app-shell {
    gap: 16px;
    padding: 12px;
  }

  body.nk-saas-body .nk-saas-topbar {
    padding: 16px;
  }

  body.nk-saas-body .nk-saas-topbar-copy h1 {
    font-size: 22px;
  }
}

/* v82 sidebar restyle: flush, lighter, closer to reference */
body.nk-saas-body .nk-saas-app-shell {
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 18px;
  padding: 0 18px 18px 0;
}

html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-app-shell,
body.nk-saas-sidebar-collapsed .nk-saas-app-shell {
  grid-template-columns: 88px minmax(0, 1fr);
}

body.nk-saas-body .nk-saas-sidebar {
  top: 0;
  min-height: 100vh;
  padding: 18px 14px 12px;
  border-radius: 0;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #eceef3;
  gap: 10px;
}

body.nk-saas-body .nk-saas-sidebar-head {
  padding: 0 6px 14px;
  border-bottom: 1px solid #f0f1f4;
}

body.nk-saas-body .nk-saas-brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  padding: 6px;
  background: #111317;
  border-color: #111317;
}

body.nk-saas-body .nk-saas-brand-copy strong {
  font-size: 15px;
  font-weight: 700;
  color: #21252e;
}

body.nk-saas-body .nk-saas-brand-copy span {
  margin-top: 1px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b0b5bf;
}

body.nk-saas-body .nk-saas-sidebar-toggle {
  border: 0;
  background: transparent;
  border-radius: 8px;
}

body.nk-saas-body .nk-saas-sidebar-toggle:hover {
  background: #f6f7f9;
}

body.nk-saas-body .nk-saas-sidebar-section {
  padding: 14px 8px 4px;
}

body.nk-saas-body .nk-saas-sidebar-section span {
  display: block;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c0c4cd;
}

body.nk-saas-body .nk-saas-nav {
  gap: 1px;
}

body.nk-saas-body .nk-saas-nav a {
  min-height: 42px;
  padding: 10px 12px;
  gap: 12px;
  border-radius: 12px;
  font-weight: 500;
  color: #6f7480;
  border: 0;
}

body.nk-saas-body .nk-saas-nav a:hover {
  background: #f6f7f9;
}

body.nk-saas-body .nk-saas-nav a.is-active {
  background: #f5f6f8;
  color: #1f232b;
  border: 0;
}

body.nk-saas-body .nk-saas-nav a.is-active::before {
  display: none;
}

body.nk-saas-body .nk-saas-nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 18px;
  color: #8a909b;
}

body.nk-saas-body .nk-saas-nav-label {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

body.nk-saas-body .nk-saas-nav a.is-active .nk-saas-nav-icon,
body.nk-saas-body .nk-saas-nav a.is-active .nk-saas-nav-label {
  color: #20242c;
}

body.nk-saas-body .nk-saas-sidebar-footer {
  margin-top: auto;
  padding: 14px 8px 6px;
  border-top: 1px solid #f0f1f4;
}

body.nk-saas-body .nk-saas-sidebar-footer strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #3b4049;
}

@media (max-width: 960px) {
  body.nk-saas-body .nk-saas-app-shell {
    padding: 0 12px 12px 0;
  }

  body.nk-saas-body .nk-saas-sidebar {
    min-height: calc(100vh - 12px);
  }
}


/* ===== NK SaaS v83: stronger tablet/mobile responsiveness ===== */
.nk-saas-content,
.nk-saas-embedded-admin,
.nk-saas-content .wrap,
.nk-saas-content .lbc-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.nk-saas-embedded-admin {
  overflow-x: auto;
}

@media (max-width: 1024px) {
  .nk-saas-main,
  .nk-saas-content,
  .nk-saas-embedded-admin,
  .nk-saas-content .wrap,
  .nk-saas-content .lbc-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .nk-saas-content {
    overflow: visible;
  }

  .nk-saas-topbar,
  .nk-saas-dashboard-hero,
  .nk-saas-view-head {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .nk-saas-topbar-left,
  .nk-saas-topbar-right {
    width: 100%;
  }

  .nk-saas-topbar-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nk-saas-topbar-right > * {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .nk-saas-topbar h1,
  .nk-saas-dashboard-hero h1 {
    font-size: 28px;
  }

  .nk-saas-topbar-right {
    grid-template-columns: 1fr;
  }
}


/* ===== NK SaaS v84: fix tablet/mobile clipped layout after sidebar redesign ===== */
@media (max-width: 1280px) {
  body.nk-saas-body .nk-saas-app-shell,
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-app-shell,
  body.nk-saas-sidebar-collapsed .nk-saas-app-shell {
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 12px !important;
    overflow-x: hidden !important;
  }

  body.nk-saas-body .nk-saas-main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.nk-saas-body .nk-saas-topbar,
  body.nk-saas-body .nk-saas-content,
  body.nk-saas-body .nk-saas-embedded-admin {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.nk-saas-body .nk-saas-sidebar {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    bottom: 12px !important;
    width: min(300px, calc(100vw - 24px)) !important;
    min-height: auto !important;
    border-radius: 18px !important;
    border: 1px solid #eceef3 !important;
    transform: translateX(calc(-100% - 24px)) !important;
    transition: transform .22s ease !important;
    overflow: auto !important;
  }

  body.nk-saas-body.nk-saas-sidebar-open .nk-saas-sidebar {
    transform: translateX(0) !important;
  }

  body.nk-saas-body .nk-saas-content {
    overflow: visible !important;
    padding: 14px !important;
  }
}

@media (max-width: 760px) {
  body.nk-saas-body .nk-saas-app-shell {
    padding: 10px !important;
  }

  body.nk-saas-body .nk-saas-topbar {
    padding: 18px !important;
  }

  body.nk-saas-body .nk-saas-topbar-right {
    grid-template-columns: 1fr !important;
  }
}


/* ===== NK SaaS v85: mobile menu button restored ===== */
.nk-saas-topbar--simple .nk-saas-sidebar-toggle--mobile {
  display: none !important;
}

@media (max-width: 1280px) {
  .nk-saas-topbar--simple .nk-saas-sidebar-toggle--mobile {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border: 1px solid #dfe7f3 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
  }

  .nk-saas-topbar--simple .nk-saas-sidebar-toggle--mobile span {
    width: 16px !important;
    height: 2px !important;
    background: #25324b !important;
  }

  .nk-saas-topbar--simple .nk-saas-topbar-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }
}

@media (max-width: 560px) {
  .nk-saas-topbar--simple .nk-saas-sidebar-toggle--mobile {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }
}


/* v86 hide top header save on Business Settings because page has its own floating save */
body.nk-saas-view-business-settings .nk-saas-topbar-save {
  display: none !important;
}


/* v103 required information indicators */
.nk-saas-required-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 7px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  vertical-align: middle;
  box-shadow: 0 0 0 2px #fff;
}


/* v111 Direct Bookings edit button required indicator */
.nk-saas-edit-property-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.nk-saas-button-required-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(255,255,255,.95);
}
.nk-saas-edit-property-btn.has-required-warning {
  padding-right: 10px !important;
}


/* v112 Stripe requirements */
.nk-saas-stripe-intro {
  max-width: 860px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid #dfe7f3;
  border-radius: 14px;
  background: #f8fafc;
  color: #24324a;
}
.nk-saas-stripe-intro p {
  margin: 0 0 8px;
  line-height: 1.5;
}
.nk-saas-stripe-intro p:last-child {
  margin-bottom: 0;
}
.nk-saas-stripe-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9f1239;
  font-weight: 700;
}


/* v113 Stripe mode cards and floating save */
.nk-saas-stripe-form {
  position: relative;
}

.nk-saas-floating-save {
  position: fixed;
  top: 118px;
  right: 32px;
  z-index: 9990;
  animation: nkSaasSaveDrop .18s ease-out;
}

.nk-saas-floating-save .button {
  min-width: 190px;
  min-height: 54px;
  border-radius: 16px !important;
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 16px 35px rgba(73,117,240,.22);
}

@keyframes nkSaasSaveDrop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.nk-saas-stripe-mode-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.nk-saas-stripe-mode-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid #dfe7f3;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
}

.nk-saas-stripe-mode-card.is-selected {
  border-color: #4975f0;
  background: #f5f8ff;
  box-shadow: inset 0 0 0 1px #4975f0;
}

.nk-saas-stripe-mode-card input {
  margin-top: 5px;
}

.nk-saas-stripe-mode-card strong {
  display: block;
  color: #13213b;
  font-size: 20px;
  line-height: 1.2;
}

.nk-saas-stripe-mode-card small {
  display: block;
  margin-top: 8px;
  color: #6b7a92;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.nk-saas-stripe-mode-help {
  font-weight: 400 !important;
}

.nk-saas-stripe-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #dfe7f3;
  border-radius: 18px;
  background: #fff;
}

.nk-saas-stripe-panel h2 {
  margin-top: 0;
}

.nk-saas-stripe-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.nk-saas-stripe-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: #18243c;
}

.nk-saas-stripe-field input {
  width: 100%;
  max-width: 720px;
  min-height: 44px;
  border-radius: 10px;
}

.nk-saas-stripe-inline-save .button {
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  min-height: 44px;
  padding-inline: 22px !important;
}

@media (max-width: 800px) {
  .nk-saas-stripe-mode-cards {
    grid-template-columns: 1fr;
  }
  .nk-saas-floating-save {
    top: auto;
    right: 14px;
    bottom: 18px;
  }
}


/* v118 sidebar logo + duplicate title cleanup */
.nk-saas-brand-logo {
  overflow: hidden;
  background: transparent !important;
  border-radius: 12px;
}

.nk-saas-brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nk-saas-embedded-admin > .wrap > h1:first-child,
.nk-saas-embedded-admin > h1:first-child {
  display: none !important;
}


/* v119 bigger sidebar logo without outline */
body.nk-saas-body .nk-saas-brand-logo,
.nk-saas-brand-logo {
  width: 58px !important;
  height: 58px !important;
  flex: 0 0 58px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.nk-saas-body .nk-saas-brand-logo img,
.nk-saas-brand-logo img {
  width: 58px;
  height: 58px;
  max-width: 58px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}


/* v121 slightly smaller sidebar logo */
body.nk-saas-body .nk-saas-brand-logo,
.nk-saas-brand-logo {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

body.nk-saas-body .nk-saas-brand-logo img,
.nk-saas-brand-logo img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}


/* v122 Direct Bookings normal preview button with icon */
.nk-saas-direct-bookings-actions .nk-saas-view-booking-page {
  background: #fff !important;
  color: #14213a !important;
  border-color: #d9e3f2 !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.nk-saas-direct-bookings-actions .nk-saas-view-booking-page:hover {
  background: #f8fafc !important;
  color: #14213a !important;
  border-color: #cbd8ea !important;
}

.nk-saas-direct-bookings-actions .nk-saas-view-booking-page .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
}


/* v123 Booking page URL preview icon */
.nk-saas-url-preview-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.nk-saas-url-preview-btn .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
  line-height: 17px;
}

/* v125 direct bookings property card layout aligned to reference */
.nk-saas-direct-bookings-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.nk-saas-direct-booking-card {
  grid-template-columns: minmax(280px, 380px) minmax(340px, 1fr);
  grid-template-areas:
    "media body"
    "bottom bottom";
  gap: 24px 28px;
  padding: 28px;
  border-radius: 26px;
  box-shadow: none;
  align-items: start;
}

.nk-saas-direct-booking-media {
  grid-area: media;
}

.nk-saas-direct-booking-media img,
.nk-saas-direct-booking-media .rp-img,
.nk-saas-direct-booking-media .rp-img--placeholder {
  height: 300px;
  border-radius: 26px;
}

.nk-saas-direct-booking-body {
  grid-area: body;
  align-content: start;
  gap: 18px;
}

.nk-saas-direct-booking-top {
  display: block;
}

.nk-saas-direct-booking-top h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #13213b;
}

.nk-saas-direct-booking-top p,
.nk-saas-status-badge,
.nk-saas-direct-booking-meta,
.nk-saas-direct-booking-footer {
  display: none !important;
}

.nk-saas-switch-row {
  min-height: 160px;
  padding: 28px 30px;
  border-color: #dde6f5;
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(230, 236, 251, 0.35);
}

.nk-saas-switch-copy {
  gap: 10px;
  max-width: 380px;
}

.nk-saas-switch-copy strong {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #13213b;
}

.nk-saas-switch-copy small {
  font-size: 18px;
  line-height: 1.45;
  color: #6b7a92;
  font-weight: 500;
}

.nk-saas-switch-ui {
  width: 104px;
  height: 58px;
  background: #d6e1f4;
}

.nk-saas-switch-ui::after {
  top: 6px;
  left: 6px;
  width: 46px;
  height: 46px;
}

.nk-saas-switch input:checked + .nk-saas-switch-ui::after {
  transform: translateX(46px);
}

.nk-saas-direct-booking-missing {
  margin-top: 2px;
}

.nk-saas-direct-booking-bottom {
  grid-area: bottom;
}

.nk-saas-direct-booking-url {
  gap: 12px;
}

.nk-saas-direct-booking-url label {
  color: #475467;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.nk-saas-direct-booking-url-row {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
}

.nk-saas-direct-booking-url-row input {
  min-width: 0;
  height: 66px;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 16px;
  background: #fff;
}

.nk-saas-direct-booking-url-row .button,
.nk-saas-edit-property-btn {
  min-height: 66px !important;
  border-radius: 18px !important;
  padding: 0 22px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap;
}

.nk-saas-edit-property-btn {
  min-width: 320px;
  padding-inline: 28px !important;
}

@media (max-width: 1180px) {
  .nk-saas-direct-booking-card {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 20px 22px;
  }

  .nk-saas-direct-booking-url-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nk-saas-edit-property-btn {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .nk-saas-direct-booking-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "body"
      "bottom";
    padding: 20px;
  }

  .nk-saas-direct-booking-media img,
  .nk-saas-direct-booking-media .rp-img,
  .nk-saas-direct-booking-media .rp-img--placeholder {
    height: 240px;
  }

  .nk-saas-direct-booking-top h3 {
    font-size: 22px;
  }

  .nk-saas-switch-row {
    min-height: 0;
    padding: 20px;
  }

  .nk-saas-switch-copy strong {
    font-size: 18px;
  }

  .nk-saas-switch-copy small {
    font-size: 15px;
  }

  .nk-saas-direct-booking-url-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nk-saas-direct-booking-url-row .button,
  .nk-saas-edit-property-btn,
  .nk-saas-direct-booking-url-row input {
    width: 100%;
  }
}


/* v126 Direct Bookings: two property cards per row on desktop */
.nk-saas-direct-bookings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.nk-saas-direct-booking-card {
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "media"
    "body"
    "bottom" !important;
  gap: 18px !important;
  padding: 22px !important;
}

.nk-saas-direct-booking-media img,
.nk-saas-direct-booking-media .rp-img,
.nk-saas-direct-booking-media .rp-img--placeholder {
  height: 240px !important;
}

.nk-saas-direct-booking-top h3 {
  font-size: 24px !important;
}

.nk-saas-switch-row {
  min-height: 128px !important;
  padding: 22px !important;
}

.nk-saas-switch-copy strong {
  font-size: 19px !important;
}

.nk-saas-switch-copy small {
  font-size: 15px !important;
}

.nk-saas-switch-ui {
  width: 76px !important;
  height: 42px !important;
}

.nk-saas-switch-ui::after {
  top: 5px !important;
  left: 5px !important;
  width: 32px !important;
  height: 32px !important;
}

.nk-saas-switch input:checked + .nk-saas-switch-ui::after {
  transform: translateX(34px) !important;
}

.nk-saas-direct-booking-url-row {
  grid-template-columns: 1fr auto auto !important;
  gap: 12px !important;
}

.nk-saas-direct-booking-url-row input,
.nk-saas-direct-booking-url-row .button,
.nk-saas-edit-property-btn {
  min-height: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
}

.nk-saas-edit-property-btn {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0 !important;
}

@media (max-width: 1180px) {
  .nk-saas-direct-bookings-grid {
    grid-template-columns: 1fr !important;
  }

  .nk-saas-direct-booking-card {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) !important;
    grid-template-areas:
      "media body"
      "bottom bottom" !important;
  }

  .nk-saas-direct-booking-media img,
  .nk-saas-direct-booking-media .rp-img,
  .nk-saas-direct-booking-media .rp-img--placeholder {
    height: 240px !important;
  }

  .nk-saas-edit-property-btn {
    width: auto;
  }
}

@media (max-width: 900px) {
  .nk-saas-direct-booking-card {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "media"
      "body"
      "bottom" !important;
  }

  .nk-saas-direct-booking-url-row {
    grid-template-columns: 1fr !important;
  }

  .nk-saas-direct-booking-url-row .button,
  .nk-saas-edit-property-btn,
  .nk-saas-direct-booking-url-row input {
    width: 100% !important;
  }
}


/* v127 Pricing landing sync design */
.nk-pricing-landing--sync {
  position: relative;
}

.nk-pricing-intro {
  margin: 0 0 18px !important;
  color: #7a879b !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.nk-pricing-choice-grid--sync {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card {
  min-height: 210px;
  padding: 34px 36px;
  border-radius: 24px;
  box-shadow: none;
  text-decoration: none !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card strong {
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card small {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.45;
  color: #63718a;
  font-weight: 500;
}

.nk-pricing-choice-logo-wrap--ota {
  width: auto;
  height: 44px;
  justify-content: flex-start;
  background: transparent;
  box-shadow: none;
}

.nk-pricing-choice-logo-wrap--ota .nk-pricing-choice-logo--wide {
  width: 150px;
  height: 44px;
  max-width: 150px;
  object-fit: contain;
}

.nk-pricing-sync-card {
  position: relative;
  width: min(850px, 100%);
  margin: -6px 28px 0 auto;
  padding: 34px 34px;
  border: 1px solid #dce5f4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.nk-pricing-sync-card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 34px;
  right: 34px;
  height: 1px;
  background: #d5dce7;
}

.nk-pricing-sync-copy {
  display: grid;
  gap: 8px;
}

.nk-pricing-sync-copy > strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.nk-pricing-sync-copy > span {
  color: #7a879b;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.nk-pricing-sync-settings {
  margin-top: 8px;
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
}

.nk-pricing-sync-settings .dashicons {
  width: 31px;
  height: 31px;
  font-size: 31px;
  line-height: 31px;
}

.nk-pricing-sync-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.nk-pricing-sync-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.nk-pricing-sync-switch span {
  position: relative;
  width: 76px;
  height: 42px;
  border-radius: 999px;
  background: #d8e2f4;
  transition: background .18s ease;
}

.nk-pricing-sync-switch span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 9px rgba(15, 23, 42, .18);
  transition: transform .18s ease;
}

.nk-pricing-sync-switch input:checked + span {
  background: #4975f0;
}

.nk-pricing-sync-switch input:checked + span::after {
  transform: translateX(34px);
}

.nk-pricing-sync-modal[hidden] {
  display: none !important;
}

.nk-pricing-sync-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, .35);
  display: grid;
  place-items: center;
  padding: 20px;
}

.nk-pricing-sync-modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
}

.nk-pricing-sync-modal-card h2 {
  margin: 0 0 8px;
  color: #14213a;
  font-size: 25px;
}

.nk-pricing-sync-modal-card p {
  margin: 0 0 22px;
  color: #6b7a92;
  font-size: 15px;
  line-height: 1.5;
}

.nk-pricing-sync-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nk-pricing-sync-fields {
  display: grid;
  gap: 16px;
}

.nk-pricing-sync-fields label {
  display: grid;
  gap: 8px;
  color: #14213a;
  font-weight: 800;
}

.nk-pricing-sync-fields select,
.nk-pricing-sync-fields input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce5f4;
  border-radius: 14px;
  padding: 0 14px;
  font-size: 15px;
}

.nk-pricing-sync-fields small {
  color: #7a879b;
  font-weight: 500;
}

.nk-pricing-sync-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .nk-pricing-choice-grid--sync {
    grid-template-columns: 1fr;
  }

  .nk-pricing-sync-card {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* v128 Pricing page: sync option inside Direct Booking card + restore previous sizing */
.nk-pricing-choice-grid--sync {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch;
  margin-bottom: 0 !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card {
  min-height: 0 !important;
  padding: 28px 32px !important;
  border-radius: 24px !important;
  box-shadow: none !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card strong {
  margin-top: 14px !important;
  margin-bottom: 10px !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card small {
  max-width: none !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  color: #63718a !important;
  font-weight: 500 !important;
}

.nk-pricing-choice-logo-wrap--ota {
  width: 170px !important;
  height: 44px !important;
  background: transparent !important;
  box-shadow: none !important;
  justify-content: flex-start !important;
}

.nk-pricing-choice-logo-wrap--ota .nk-pricing-choice-logo--wide {
  width: 170px !important;
  height: 44px !important;
  max-width: 170px !important;
  object-fit: contain !important;
}

.nk-pricing-choice-card--direct-sync {
  display: grid !important;
  gap: 22px !important;
  cursor: default !important;
}

.nk-pricing-direct-main-link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

.nk-pricing-direct-main-link strong,
.nk-pricing-direct-main-link small {
  display: block;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-sync-card {
  width: 100% !important;
  margin: 12px 0 0 !important;
  padding: 22px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid #d5dce7 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 18px !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-sync-card::before {
  display: none !important;
}

.nk-pricing-sync-copy > strong {
  font-size: 15px !important;
  line-height: 1.3 !important;
}

.nk-pricing-sync-copy > span {
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.nk-pricing-sync-settings {
  margin-top: 6px !important;
  font-size: 13px !important;
}

.nk-pricing-sync-settings .dashicons {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
  line-height: 24px !important;
}

.nk-pricing-sync-switch span {
  width: 64px !important;
  height: 36px !important;
}

.nk-pricing-sync-switch span::after {
  top: 4px !important;
  left: 4px !important;
  width: 28px !important;
  height: 28px !important;
}

.nk-pricing-sync-switch input:checked + span::after {
  transform: translateX(28px) !important;
}

@media (max-width: 900px) {
  .nk-pricing-choice-grid--sync {
    grid-template-columns: 1fr !important;
  }

  .nk-pricing-choice-card--direct-sync .nk-pricing-sync-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}


/* v129 Pricing typography restored lighter/smaller */
.nk-pricing-landing--sync .nk-pricing-intro {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #71809a !important;
  letter-spacing: 0 !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card strong,
.nk-pricing-choice-grid--sync .nk-pricing-direct-main-link strong {
  font-size: 21px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  color: #18243c !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card small,
.nk-pricing-choice-grid--sync .nk-pricing-direct-main-link small {
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  color: #66758d !important;
}

.nk-pricing-choice-grid--sync .nk-pricing-choice-card {
  padding: 26px 30px !important;
}

.nk-pricing-choice-logo-wrap {
  width: 34px !important;
  height: 34px !important;
}

.nk-pricing-choice-logo {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.nk-pricing-choice-logo-wrap--ota {
  width: 145px !important;
  height: 38px !important;
}

.nk-pricing-choice-logo-wrap--ota .nk-pricing-choice-logo--wide {
  width: 145px !important;
  height: 38px !important;
  max-width: 145px !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-sync-card {
  margin-top: 10px !important;
  padding-top: 18px !important;
  gap: 12px !important;
}

.nk-pricing-sync-copy > strong {
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  color: #18243c !important;
}

.nk-pricing-sync-copy > span {
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  color: #75839a !important;
}

.nk-pricing-sync-settings {
  font-size: 13px !important;
  font-weight: 500 !important;
  gap: 6px !important;
}

.nk-pricing-sync-settings .dashicons {
  width: 21px !important;
  height: 21px !important;
  font-size: 21px !important;
  line-height: 21px !important;
}

.nk-pricing-sync-switch span {
  width: 52px !important;
  height: 30px !important;
}

.nk-pricing-sync-switch span::after {
  top: 3px !important;
  left: 3px !important;
  width: 24px !important;
  height: 24px !important;
}

.nk-pricing-sync-switch input:checked + span::after {
  transform: translateX(22px) !important;
}


/* v130 Pricing direct booking logo same visual size as OTA logo */
.nk-pricing-choice-card--direct-sync .nk-pricing-choice-logo-wrap {
  width: 145px !important;
  height: 38px !important;
  justify-content: flex-start !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-choice-logo {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
}


/* v131 Pricing direct booking logo visible/bigger */
.nk-pricing-choice-card--direct-sync .nk-pricing-choice-logo-wrap {
  width: 145px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-choice-logo {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  display: block !important;
}


/* v132 restore Pricing direct booking logo to wide previous size */
.nk-pricing-choice-card--direct-sync .nk-pricing-direct-main-link .nk-pricing-choice-logo-wrap {
  width: 145px !important;
  height: 38px !important;
  min-width: 145px !important;
  min-height: 38px !important;
  max-width: 145px !important;
  max-height: 38px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-direct-main-link .nk-pricing-choice-logo-wrap img.nk-pricing-choice-logo {
  width: 145px !important;
  height: 38px !important;
  min-width: 145px !important;
  min-height: 38px !important;
  max-width: 145px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}


/* v133 Direct booking price sync guard modal */
.nk-pricing-sync-guard-modal[hidden] {
  display: none !important;
}

.nk-pricing-sync-guard-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .38);
}

.nk-pricing-sync-guard-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
}

.nk-pricing-sync-guard-card h2 {
  margin: 0 0 10px;
  color: #14213a;
  font-size: 24px;
  line-height: 1.2;
}

.nk-pricing-sync-guard-card p {
  margin: 0;
  color: #6b7a92;
  font-size: 15px;
  line-height: 1.5;
}

.nk-pricing-sync-guard-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nk-pricing-sync-guard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.nk-pricing-sync-guard-disable-form {
  margin: 0;
}


/* v137 Direct pricing sync popup */
.nk-pricing-direct-sync-popup[hidden] {
  display: none !important;
}

.nk-pricing-direct-sync-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .38);
}

.nk-pricing-direct-sync-popup-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
}

.nk-pricing-direct-sync-popup-card h2 {
  margin: 0 0 10px;
  color: #14213a;
  font-size: 24px;
  line-height: 1.2;
}

.nk-pricing-direct-sync-popup-card p {
  margin: 0;
  color: #6b7a92;
  font-size: 15px;
  line-height: 1.5;
}

.nk-pricing-direct-sync-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nk-pricing-direct-sync-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}


/* v155 Direct Bookings: 3 accommodation cards per row + title above image */
.nk-saas-direct-bookings-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.nk-saas-direct-booking-card {
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "title"
    "media"
    "body"
    "bottom" !important;
  gap: 12px !important;
  padding: 18px !important;
}

.nk-saas-direct-booking-card-title {
  grid-area: title;
  min-width: 0;
}

.nk-saas-direct-booking-card-title h3 {
  margin: 0 0 5px !important;
  font-size: 20px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  color: #13213b !important;
}

.nk-saas-direct-booking-card-title p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  color: #667085 !important;
}

.nk-saas-direct-booking-media {
  grid-area: media !important;
}

.nk-saas-direct-booking-body {
  grid-area: body !important;
}

.nk-saas-direct-booking-bottom {
  grid-area: bottom !important;
}

.nk-saas-direct-booking-top {
  min-height: 0 !important;
}

.nk-saas-direct-booking-top h3,
.nk-saas-direct-booking-top p {
  display: none !important;
}

.nk-saas-direct-booking-media img,
.nk-saas-direct-booking-media .rp-img,
.nk-saas-direct-booking-media .rp-img--placeholder {
  height: 185px !important;
  border-radius: 20px !important;
}

.nk-saas-switch-row {
  min-height: 110px !important;
  padding: 18px !important;
}

.nk-saas-direct-booking-url-row {
  grid-template-columns: 1fr !important;
}

.nk-saas-direct-booking-url-row .button,
.nk-saas-edit-property-btn {
  width: 100% !important;
}

@media (max-width: 1280px) {
  .nk-saas-direct-bookings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .nk-saas-direct-bookings-grid {
    grid-template-columns: 1fr !important;
  }
}


/* v156 Direct Bookings refinements + unified floating save button style */
.nk-saas-direct-booking-card-title p,
.nk-saas-direct-booking-card-desc {
  display: none !important;
}

.nk-saas-direct-booking-card-title h3 {
  margin-bottom: 0 !important;
}

.nk-saas-direct-booking-media img,
.nk-saas-direct-booking-media .rp-img,
.nk-saas-direct-booking-media .rp-img--placeholder {
  height: 170px !important;
}

.nk-saas-switch-row {
  min-height: 76px !important;
  padding: 14px 16px !important;
  border-radius: 16px !important;
}

.nk-saas-switch-copy strong {
  font-size: 15px !important;
}

.nk-saas-switch-copy small {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.nk-saas-switch-ui {
  width: 54px !important;
  height: 30px !important;
}

.nk-saas-switch-ui::after {
  top: 3px !important;
  left: 3px !important;
  width: 24px !important;
  height: 24px !important;
}

.nk-saas-switch input:checked + .nk-saas-switch-ui::after {
  transform: translateX(24px) !important;
}

/* Make existing floating save buttons match the Pricing page Save button */
.nk-saas-floating-save,
.nk-floating-save,
.rp-floating-save,
.rp-settings-floating-save,
.rp-business-floating-save,
.rp-stripe-floating-save,
.rp-property-floating-save,
button[data-nk-floating-save],
button[data-rp-floating-save] {
  position: fixed !important;
  top: 96px !important;
  right: 32px !important;
  z-index: 9990 !important;
  width: auto !important;
  min-width: 92px !important;
  max-width: none !important;
  min-height: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  padding: 0 22px !important;
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  box-shadow: 0 14px 30px rgba(73,117,240,.20) !important;
}


/* v157 unified dashboard Save buttons */
.nk-saas-floating-save,
.nk-floating-save,
.rp-floating-save,
.rp-settings-floating-save,
.rp-business-floating-save,
.rp-stripe-floating-save,
.rp-property-floating-save,
[data-nk-saas-floating-save],
[data-rp-business-floating-save],
[data-rp-property-floating-save] {
  position: fixed !important;
  top: 108px !important;
  right: 32px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 9990 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: block !important;
  animation: nkSaasSaveDrop .18s ease-out !important;
}

.nk-saas-floating-save[hidden],
.nk-floating-save[hidden],
.rp-floating-save[hidden],
.rp-settings-floating-save[hidden],
.rp-business-floating-save[hidden],
.rp-stripe-floating-save[hidden],
.rp-property-floating-save[hidden],
[data-nk-saas-floating-save][hidden],
[data-rp-business-floating-save][hidden],
[data-rp-property-floating-save][hidden] {
  display: none !important;
}

.nk-saas-floating-save .button,
.nk-floating-save .button,
.rp-floating-save .button,
.rp-settings-floating-save .button,
.rp-business-floating-save .button,
.rp-stripe-floating-save .button,
.rp-property-floating-save .button,
[data-nk-saas-floating-save] .button,
[data-rp-business-floating-save] .button,
[data-rp-property-floating-save] .button,
button.nk-saas-floating-save,
button.nk-floating-save,
button.rp-floating-save,
button.rp-settings-floating-save,
button.rp-business-floating-save,
button.rp-stripe-floating-save,
button.rp-property-floating-save,
button[data-nk-floating-save],
button[data-rp-floating-save] {
  width: auto !important;
  min-width: 82px !important;
  max-width: none !important;
  min-height: 40px !important;
  height: 40px !important;
  border-radius: 13px !important;
  padding: 0 18px !important;
  background: #4975f0 !important;
  border-color: #4975f0 !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  line-height: 40px !important;
  box-shadow: 0 12px 26px rgba(73,117,240,.20) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

@media (max-width: 700px) {
  .nk-saas-floating-save,
  .nk-floating-save,
  .rp-floating-save,
  .rp-settings-floating-save,
  .rp-business-floating-save,
  .rp-stripe-floating-save,
  .rp-property-floating-save,
  [data-nk-saas-floating-save],
  [data-rp-business-floating-save],
  [data-rp-property-floating-save] {
    top: auto !important;
    right: 14px !important;
    bottom: 18px !important;
  }
}


/* v161 hide direct booking sync settings when sync is off */
.nk-pricing-sync-card.is-sync-off .nk-pricing-sync-settings {
  display: none !important;
}

.nk-pricing-sync-card.is-sync-on .nk-pricing-sync-settings {
  display: inline-flex !important;
}


/* v184 Property Settings back button no overlap */
.rp-property-backbar {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.rp-property-backbar .button {
  min-height: 40px !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
}


/* v222 Pricing: only direct booking card title/description and logo are muted when OTA sync is enabled.
   The sync toggle text remains normal and is not affected by enable/disable state. */
.nk-pricing-choice-card--direct-sync.is-direct-sync-on .nk-pricing-direct-main-link strong,
.nk-pricing-choice-card--direct-sync.is-direct-sync-on .nk-pricing-direct-main-link small {
  color: #c3cad6 !important;
}

.nk-pricing-choice-card--direct-sync.is-direct-sync-on .nk-pricing-direct-main-link .nk-pricing-choice-logo-wrap,
.nk-pricing-choice-card--direct-sync.is-direct-sync-on .nk-pricing-direct-main-link .nk-pricing-choice-logo {
  opacity: 0.5 !important;
  transition: opacity 0.18s ease;
}

.nk-pricing-choice-card--direct-sync.is-direct-sync-off .nk-pricing-direct-main-link .nk-pricing-choice-logo-wrap,
.nk-pricing-choice-card--direct-sync.is-direct-sync-off .nk-pricing-direct-main-link .nk-pricing-choice-logo {
  opacity: 1 !important;
}

.nk-pricing-choice-card--direct-sync.is-direct-sync-off .nk-pricing-direct-main-link strong {
  color: #18243c !important;
}

.nk-pricing-choice-card--direct-sync.is-direct-sync-off .nk-pricing-direct-main-link small {
  color: #66758d !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-sync-copy > strong {
  color: #18243c !important;
}

.nk-pricing-choice-card--direct-sync .nk-pricing-sync-copy > span {
  color: #75839a !important;
}

/* Compact sidebar submenus */
.nk-saas-nav-submenu {
  margin: -7px 0 4px 44px;
  padding: 2px 0 2px 10px;
  border-left: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nk-saas-nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 8px;
  color: #7b8798;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
}

.nk-saas-nav-submenu a:hover {
  color: #334155;
  background: rgba(15, 23, 42, 0.035);
}

.nk-saas-nav-submenu a.is-active {
  color: #0c5ee8;
  background: rgba(12, 94, 232, 0.08);
}

html.nk-saas-sidebar-collapsed .nk-saas-nav-submenu--housekeeping,
body.nk-saas-sidebar-collapsed .nk-saas-nav-submenu {
  display: none;
}

@media (max-width: 768px) {
  .nk-saas-nav-submenu {
    margin-left: 38px;
  }
}

/* Sidebar submenu visibility + arrow */
.nk-saas-nav a.has-submenu .nk-saas-nav-copy {
  flex: 1 1 auto;
}

.nk-saas-nav-arrow {
  width: 7px;
  height: 7px;
  margin-left: auto;
  margin-right: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.58;
  flex: 0 0 auto;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.nk-saas-nav a.has-submenu:hover .nk-saas-nav-arrow,
.nk-saas-nav a.has-submenu.is-active .nk-saas-nav-arrow {
  opacity: 0.9;
}

.nk-saas-nav a.has-submenu.is-submenu-open .nk-saas-nav-arrow {
  transform: rotate(225deg);
}

html.nk-saas-sidebar-collapsed .nk-saas-nav-arrow,
body.nk-saas-sidebar-collapsed .nk-saas-nav-arrow {
  display: none;
}


/* Collapsible sidebar submenu state */
.nk-saas-nav a.has-submenu.is-submenu-collapsed + .nk-saas-nav-submenu {
  display: none;
}

.nk-saas-nav a.has-submenu.is-submenu-collapsed .nk-saas-nav-arrow {
  transform: rotate(45deg);
}

/* Larger clickable area for sidebar submenu arrows without changing visual size */
.nk-saas-nav-arrow {
  width: 30px !important;
  height: 30px !important;
  margin-left: auto !important;
  margin-right: -8px !important;
  border: 0 !important;
  transform: none !important;
  opacity: 0.75 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  position: relative !important;
  flex: 0 0 30px !important;
  transition: background 0.16s ease, opacity 0.16s ease !important;
}

.nk-saas-nav-arrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.16s ease;
}

.nk-saas-nav a.has-submenu:hover .nk-saas-nav-arrow {
  background: rgba(15, 23, 42, 0.055);
  opacity: 1 !important;
}

.nk-saas-nav a.has-submenu.is-submenu-open .nk-saas-nav-arrow::before {
  transform: rotate(225deg);
}

.nk-saas-nav a.has-submenu.is-submenu-collapsed .nk-saas-nav-arrow::before {
  transform: rotate(45deg);
}

/* v288: Match Client App login interface with the housekeeping login style */
.nk-saas-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nk-saas-login-card {
  width: min(450px, 100%);
  margin: 34px auto;
  padding: 38px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8edf5;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(31, 66, 135, 0.08);
  backdrop-filter: blur(2px);
  text-align: center;
  box-sizing: border-box;
}

.nk-saas-login-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.nk-saas-login-hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: #f3f6fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f67e7;
}

.nk-saas-login-hero-icon svg {
  width: 76px;
  height: 76px;
  display: block;
}

.nk-saas-login-card h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #142347;
}

.nk-saas-login-subtitle {
  margin: 0 0 24px;
  color: #667085;
  font-size: 15px;
  line-height: 1.45;
}

.nk-saas-login-form {
  margin-top: 0;
  text-align: left;
}

.nk-saas-login-field {
  margin: 0 0 20px;
}

.nk-saas-login-field label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #172554;
}

.nk-saas-login-input-wrap {
  position: relative;
}

.nk-saas-login-form input[type="text"],
.nk-saas-login-form input[type="password"] {
  width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 0 52px 0 50px;
  margin: 0;
  border: 1px solid #d5deea;
  border-radius: 15px;
  background: #ffffff;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.2;
  color: #0f172a;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.02) inset;
  font-family: inherit;
}

.nk-saas-login-form input[type="text"]:focus,
.nk-saas-login-form input[type="password"]:focus {
  outline: none;
  border-color: #2f6fed;
  box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.12);
}

.nk-saas-login-input-icon,
.nk-saas-login-input-eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #90a0bc;
  pointer-events: none;
}

.nk-saas-login-input-icon {
  left: 16px;
  width: 22px;
  height: 22px;
}

.nk-saas-login-input-eye {
  right: 16px;
  width: 22px;
  height: 22px;
}

.nk-saas-login-input-icon svg,
.nk-saas-login-input-eye svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nk-saas-login-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #1f2f4f;
}

.nk-saas-login-remember input {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  accent-color: #1f67e7;
}

.nk-saas-login-btn {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #1f74ff 0%, #0956e8 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(20, 84, 232, 0.22);
  font-family: inherit;
}

.nk-saas-login-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nk-saas-login-btn-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.nk-saas-login-alert {
  background: #ffe9e9;
  color: #9b1111;
  padding: 14px 16px;
  border-radius: 14px;
  margin: 0 0 18px;
  font-size: 16px;
  text-align: left;
  border: 0;
}

@media (max-width: 520px) {
  .nk-saas-login-shell {
    padding: 16px;
  }
  .nk-saas-login-card {
    padding: 30px 22px;
    border-radius: 24px;
  }
  .nk-saas-login-card h1 {
    font-size: 38px;
  }
  .nk-saas-login-form input[type="text"],
  .nk-saas-login-form input[type="password"] {
    height: 62px;
    min-height: 62px;
    padding: 0 56px 0 52px;
    font-size: 20px;
    border-radius: 16px;
  }
}


/* v290: make /app login match housekeeping login exactly and enable clickable password reveal */
.nk-saas-login-card h1{margin:0 0 22px;font-size:44px;line-height:.98;font-weight:800;letter-spacing:-.035em;color:#142347}
.nk-saas-login-subtitle{display:none!important}
.nk-saas-login-logo{width:100%;height:100%;object-fit:contain;display:block;border-radius:inherit;padding:12px;box-sizing:border-box}
.nk-saas-login-input-eye{pointer-events:auto;border:0;background:transparent;margin:0;padding:0;cursor:pointer;color:#90a0bc}
.nk-saas-login-input-eye:hover{color:#1f67e7}
@media (max-width:520px){.nk-saas-login-card h1{font-size:46px;margin-bottom:24px}.nk-saas-login-hero{margin-bottom:18px}.nk-saas-login-hero-icon{width:112px;height:112px}.nk-saas-login-hero-icon svg{width:74px;height:74px}.nk-saas-login-logo{padding:10px}.nk-saas-login-btn{height:68px;font-size:24px;border-radius:18px}.nk-saas-login-btn-icon,.nk-saas-login-btn-icon svg{width:28px;height:28px}.nk-saas-login-input-eye{right:16px;width:24px;height:24px}.nk-saas-login-input-icon svg,.nk-saas-login-input-eye svg{width:24px;height:24px}}


/* v291: exact login visual polish */
.nk-saas-login-card h1{
  margin:0 0 22px!important;
  font-size:34px!important;
  line-height:1.02!important;
  font-weight:800!important;
  letter-spacing:-.035em!important;
  color:#142347!important;
}
.nk-saas-login-btn{
  width:100%!important;
  height:60px!important;
  border:0!important;
  border-radius:16px!important;
  background:linear-gradient(180deg,#1f74ff 0%,#0956e8 100%)!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:700!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:14px!important;
  cursor:pointer!important;
  box-shadow:0 16px 28px rgba(20,84,232,.22)!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  text-decoration:none!important;
}
.nk-saas-login-btn:hover,.nk-saas-login-btn:focus{
  background:linear-gradient(180deg,#2f7dff 0%,#0753e2 100%)!important;
  color:#fff!important;
}
.nk-saas-login-input-eye{
  position:absolute!important;
  right:16px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:28px!important;
  height:28px!important;
  min-width:28px!important;
  min-height:28px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:#90a0bc!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  pointer-events:auto!important;
  appearance:none!important;
  -webkit-appearance:none!important;
}
.nk-saas-login-input-eye svg{
  width:22px!important;
  height:22px!important;
  display:block!important;
  opacity:1!important;
}
.nk-saas-login-input-eye:hover{color:#1f67e7!important;background:transparent!important}
@media (max-width:520px){.nk-saas-login-card h1{font-size:34px!important;margin-bottom:22px!important}.nk-saas-login-btn{height:68px!important;font-size:24px!important;border-radius:18px!important}}


/* v298: Admin client switcher for viewing client workspaces */
.nk-saas-admin-client-switcher{display:flex;align-items:center;margin-right:8px;}
.nk-saas-admin-client-switcher label{display:flex;align-items:center;gap:8px;margin:0;font-size:12px;font-weight:800;color:#64748b;}
.nk-saas-admin-client-switcher select{min-width:190px;max-width:260px;height:42px;border:1px solid #d7e1ef;border-radius:14px;background:#fff;color:#12213a;font-weight:800;padding:0 34px 0 12px;box-shadow:0 6px 18px rgba(15,23,42,.04);}
@media (max-width:900px){.nk-saas-admin-client-switcher{width:100%;margin:8px 0}.nk-saas-admin-client-switcher label{width:100%;justify-content:space-between}.nk-saas-admin-client-switcher select{flex:1;min-width:0}}

/* v335b: dashboard wrapper should be transparent without outline */
body.nk-saas-body .nk-saas-content.nk-saas-content--dashboard{
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* v310 host-style dashboard overview */
.nk-host-overview{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.nk-host-welcome{
  padding:8px 2px 2px;
}
.nk-host-welcome h1{
  margin:0 0 6px;
  color:#111c36;
  font-size:clamp(24px,2.4vw,32px);
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:800;
}
.nk-host-welcome p{
  margin:0;
  color:#60708c;
  font-size:15px;
  font-weight:500;
}
.nk-host-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.nk-host-stat-card,
.nk-host-card{
  background:#fff;
  border:1px solid #e3e8f2;
  border-radius:18px;
  box-shadow:0 18px 44px rgba(17,28,54,.05);
}
.nk-host-stat-card{
  min-height:118px;
  display:grid;
  grid-template-columns:64px minmax(0,1fr) 24px;
  align-items:center;
  gap:14px;
  padding:18px 20px;
}
.nk-host-stat-card div span{
  display:block;
  color:#121c34;
  font-size:14px;
  line-height:1.25;
  font-weight:700;
}
.nk-host-stat-card strong{
  display:block;
  margin-top:8px;
  color:#111c36;
  font-size:28px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:800;
}
.nk-host-stat-card em{
  display:block;
  margin-top:8px;
  color:#60708c;
  font-style:normal;
  font-size:13px;
  font-weight:500;
}
.nk-host-stat-card a{
  color:#516280;
  text-decoration:none;
  font-size:34px;
  line-height:1;
}
.nk-host-icon{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  flex:0 0 56px;
}
.nk-host-icon .dashicons{
  width:28px;
  height:28px;
  font-size:28px;
}
.nk-host-icon--blue{background:#ecf3ff;color:#2f6ff2;}
.nk-host-icon--green{background:#eafaf0;color:#25b768;}
.nk-host-icon--purple{background:#f4ecff;color:#8b50f7;}
.nk-host-icon--orange{background:#fff1e8;color:#ff7a1a;}
.nk-host-icon--red{background:#fff0f0;color:#ef3f4b;}
.nk-host-dashboard-grid{
  display:grid;
  grid-template-columns:minmax(320px,.95fr) minmax(480px,1.45fr);
  gap:16px;
}
.nk-host-card{
  padding:18px;
  min-width:0;
}
.nk-host-card h2{
  margin:0;
  color:#121c34;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.025em;
}
.nk-host-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.nk-host-card-head a{
  color:#1768ff;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}
.nk-host-focus-list,
.nk-host-activity-list{
  display:flex;
  flex-direction:column;
  gap:0;
  border:1px solid #edf1f7;
  border-radius:14px;
  overflow:hidden;
}
.nk-host-focus-row{
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 34px 18px;
  align-items:center;
  gap:12px;
  padding:14px;
  border-bottom:1px solid #edf1f7;
  background:#fff;
}
.nk-host-focus-row:last-child{border-bottom:0;}
.nk-host-focus-row .nk-host-icon{
  width:40px;
  height:40px;
  flex-basis:40px;
  border-radius:10px;
}
.nk-host-focus-row .nk-host-icon .dashicons{
  width:21px;
  height:21px;
  font-size:21px;
}
.nk-host-focus-row strong{
  display:block;
  color:#121c34;
  font-size:14px;
  font-weight:750;
}
.nk-host-focus-row small{
  display:block;
  margin-top:3px;
  color:#53627c;
  font-size:13px;
  line-height:1.25;
}
.nk-host-focus-row b{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eef4ff;
  color:#266bf2;
  font-size:13px;
}
.nk-host-focus-row > .dashicons{
  color:#72809a;
  font-size:18px;
}
.nk-host-arrivals,
.nk-host-activity{min-height:100%;}
.nk-host-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.nk-host-table th{
  padding:11px 10px;
  border-bottom:1px solid #e6ebf3;
  color:#66748d;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:left;
  font-weight:800;
}
.nk-host-table td{
  padding:13px 10px;
  border-bottom:1px solid #edf1f7;
  color:#16223b;
  font-weight:600;
  vertical-align:middle;
}
.nk-host-table tr:last-child td{border-bottom:0;}
.nk-host-dot{
  width:20px;
  height:20px;
  display:inline-flex;
  vertical-align:middle;
  margin-right:12px;
  border-radius:50%;
  border:2px solid currentColor;
  position:relative;
}
.nk-host-dot:after{
  content:'✓';
  position:absolute;
  inset:0;
  font-size:12px;
  line-height:16px;
  text-align:center;
  font-weight:900;
}
.nk-host-dot--green{color:#25b768;}
.nk-host-dot--orange{color:#ff7a1a;}
.nk-host-tag{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
}
.nk-host-tag--green{background:#eafaf0;color:#24a85f;}
.nk-host-tag--orange{background:#fff1e8;color:#ff7a1a;}
.nk-host-housekeeping-body{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  align-items:center;
  gap:18px;
  padding:10px 6px 4px;
}
.nk-host-donut{
  width:176px;
  height:176px;
  margin:0 auto;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:conic-gradient(#32ba72 calc(var(--nk-progress) * 1%), #5c92ff 0 75%, #ff8a3d 0 88%, #e7ebf1 0);
  position:relative;
  color:#101b35;
}
.nk-host-donut:before{
  content:'';
  position:absolute;
  inset:28px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 1px #edf1f7;
}
.nk-host-donut span,
.nk-host-donut small{
  position:relative;
  z-index:1;
}
.nk-host-donut span{
  font-size:34px;
  font-weight:850;
  letter-spacing:-.04em;
}
.nk-host-donut small{
  color:#60708c;
  font-size:14px;
  font-weight:650;
}
.nk-host-legend{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.nk-host-legend-row{
  display:grid;
  grid-template-columns:12px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  color:#22304a;
  font-size:14px;
  font-weight:600;
}
.nk-host-legend-row strong{
  color:#53627c;
  font-weight:700;
}
.nk-host-legend-dot{
  width:10px;
  height:10px;
  border-radius:50%;
}
.nk-host-legend-dot--green{background:#32ba72;}
.nk-host-legend-dot--blue{background:#5c92ff;}
.nk-host-legend-dot--orange{background:#ff8a3d;}
.nk-host-legend-dot--gray{background:#d8dde6;}
.nk-host-activity-row{
  display:grid;
  grid-template-columns:40px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  padding:13px 14px;
  border-bottom:1px solid #edf1f7;
}
.nk-host-activity-row:last-child{border-bottom:0;}
.nk-host-activity-row > .dashicons{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:#eafaf0;
  color:#25b768;
  font-size:22px;
}
.nk-host-activity-row strong{
  display:block;
  color:#121c34;
  font-size:14px;
  font-weight:750;
}
.nk-host-activity-row small{
  display:block;
  margin-top:2px;
  color:#60708c;
  font-size:13px;
}
.nk-host-activity-row time{
  color:#60708c;
  font-size:13px;
  font-weight:700;
}
.nk-host-empty{
  margin:8px 0 0;
  padding:18px;
  border:1px dashed #dbe3ef;
  border-radius:14px;
  color:#60708c;
  background:#f8fbff;
}
@media (max-width:1280px){
  .nk-host-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .nk-host-dashboard-grid{grid-template-columns:1fr;}
}
@media (max-width:720px){
  .nk-host-stat-grid{grid-template-columns:1fr;}
  .nk-host-stat-card{grid-template-columns:56px minmax(0,1fr) 18px;padding:16px;}
  .nk-host-housekeeping-body{grid-template-columns:1fr;}
  .nk-host-table{display:block;overflow-x:auto;white-space:nowrap;}
}

/* v311 compact overview polish */
body.nk-saas-body .nk-saas-topbar-right .nk-saas-admin-client-switcher,
body.nk-saas-body .nk-saas-topbar-right .nk-saas-pill:first-of-type:is(.nk-saas-pill){ }
.nk-saas-topbar-icon{
  width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid #dfe6f2;border-radius:12px;background:#fff;color:#2f6ff2;text-decoration:none;
  box-shadow:0 8px 20px rgba(17,28,54,.04);
}
.nk-saas-topbar-icon .dashicons{font-size:20px;width:20px;height:20px;line-height:20px;}
.nk-host-overview{gap:12px;}
.nk-host-welcome{padding:2px 2px 0;}
.nk-host-welcome h1{font-size:26px;line-height:1.1;margin-bottom:4px;font-weight:750;letter-spacing:-.025em;}
.nk-host-welcome p{font-size:13px;}
.nk-host-stat-grid{gap:12px;}
.nk-host-stat-card{min-height:92px;grid-template-columns:48px minmax(0,1fr) 18px;gap:12px;padding:14px 16px;border-radius:15px;}
.nk-host-stat-card div span{font-size:13px;font-weight:700;}
.nk-host-stat-card strong{font-size:24px;margin-top:5px;font-weight:760;}
.nk-host-stat-card em{font-size:12px;margin-top:5px;}
.nk-host-stat-card a{font-size:28px;}
.nk-host-icon{width:46px;height:46px;flex-basis:46px;border-radius:12px;}
.nk-host-icon .dashicons{font-size:23px;width:23px;height:23px;}
.nk-host-dashboard-grid{grid-template-columns:minmax(300px,.9fr) minmax(470px,1.45fr);gap:12px;}
.nk-host-card{padding:14px;border-radius:15px;box-shadow:0 12px 32px rgba(17,28,54,.04);}
.nk-host-card h2{font-size:16px;font-weight:750;}
.nk-host-card-head{margin-bottom:9px;}
.nk-host-card-head a{font-size:13px;}
.nk-host-focus-row{grid-template-columns:38px minmax(0,1fr) 30px 16px;gap:10px;padding:10px 12px;}
.nk-host-focus-row .nk-host-icon{width:34px;height:34px;flex-basis:34px;border-radius:9px;}
.nk-host-focus-row .nk-host-icon .dashicons{font-size:18px;width:18px;height:18px;}
.nk-host-focus-row strong{font-size:13px;font-weight:700;}
.nk-host-focus-row small{font-size:12px;margin-top:2px;}
.nk-host-focus-row b{width:24px;height:24px;font-size:12px;font-weight:700;}
.nk-host-table{font-size:13px;}
.nk-host-table th{padding:8px 8px;font-size:10px;}
.nk-host-table td{padding:9px 8px;font-weight:600;}
.nk-host-dot{width:18px;height:18px;margin-right:8px;}
.nk-host-dot:after{font-size:11px;line-height:14px;}
.nk-host-tag{min-height:22px;padding:3px 9px;border-radius:7px;font-size:12px;}
.nk-host-housekeeping-body{grid-template-columns:170px minmax(0,1fr);gap:12px;padding:4px 4px 0;}
.nk-host-donut{width:138px;height:138px;}
.nk-host-donut:before{inset:23px;}
.nk-host-donut span{font-size:28px;font-weight:780;}
.nk-host-donut small{font-size:12px;}
.nk-host-legend{gap:10px;}
.nk-host-legend-row{font-size:13px;gap:9px;}
.nk-host-activity-row{grid-template-columns:34px minmax(0,1fr) auto;gap:10px;padding:9px 12px;}
.nk-host-source-icon{width:30px;height:30px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#f2f6ff;border:1px solid #e2e8f4;overflow:hidden;}
.nk-host-source-icon img{width:22px;height:22px;object-fit:contain;display:block;}
.nk-host-activity-row strong{font-size:13px;font-weight:700;}
.nk-host-activity-row small{font-size:12px;margin-top:1px;}
.nk-host-activity-row time{font-size:12px;}
@media (min-width:1281px){
  .nk-host-overview{max-height:calc(100vh - 132px);overflow:hidden;}
}

/* v312 dashboard lighter typography + thinner header */
body.nk-saas-body .nk-saas-topbar{
  top:0 !important;
  min-height:54px !important;
  padding:9px 20px !important;
  border-radius:0 0 14px 14px !important;
}
body.nk-saas-body .nk-saas-topbar-copy h1{
  font-size:20px !important;
  line-height:1.15 !important;
  font-weight:400 !important;
  letter-spacing:-.015em !important;
}
body.nk-saas-body .nk-saas-pill,
body.nk-saas-body .nk-saas-button-quiet,
body.nk-saas-body .nk-saas-topbar-save,
.nk-saas-topbar-icon{
  min-height:36px !important;
  height:36px !important;
  padding:7px 12px !important;
  border-radius:50% !important;
  font-weight:400 !important;
}
.nk-saas-topbar-icon{width:36px !important;padding:0 !important;}
.nk-saas-topbar-icon .dashicons{font-size:18px !important;width:18px !important;height:18px !important;line-height:18px !important;}

.nk-host-overview,
.nk-host-overview *{
  font-weight:400 !important;
}
.nk-host-welcome h1{
  font-size:22px !important;
  line-height:1.14 !important;
  font-weight:400 !important;
  letter-spacing:-.015em !important;
}
.nk-host-welcome p{
  font-size:13px !important;
  font-weight:400 !important;
}
.nk-host-card h2{
  font-size:15px !important;
  font-weight:400 !important;
  letter-spacing:0 !important;
}
.nk-host-stat-card div span,
.nk-host-stat-card strong,
.nk-host-stat-card em,
.nk-host-focus-row strong,
.nk-host-focus-row small,
.nk-host-focus-row b,
.nk-host-table th,
.nk-host-table td,
.nk-host-tag,
.nk-host-legend-row,
.nk-host-legend-row strong,
.nk-host-activity-row strong,
.nk-host-activity-row small,
.nk-host-activity-row time,
.nk-host-card-head a{
  font-weight:400 !important;
}
.nk-host-stat-card strong{font-size:22px !important;}
.nk-host-stat-card div span{font-size:12.5px !important;}
.nk-host-focus-row strong,
.nk-host-activity-row strong{font-size:12.5px !important;}
.nk-host-table td{font-size:12.5px !important;}
.nk-host-table th{font-size:9.5px !important;}
.nk-host-donut:before{
  inset:16px !important;
}
.nk-host-donut span{
  font-size:26px !important;
  font-weight:400 !important;
}
.nk-host-donut small{
  font-size:12px !important;
  font-weight:400 !important;
}

/* v313: make dashboard housekeeping donut ring thinner */
.nk-host-dashboard .nk-host-donut:before,
.nk-host-housekeeping .nk-host-donut:before{
  inset:16px !important;
}

/* v314 overview requested refinements */
body.nk-saas-body .nk-saas-topbar{
  border-radius:0 !important;
}
body.nk-saas-body .nk-saas-topbar-copy h1{
  font-weight:700 !important;
}
.nk-host-welcome h1{
  font-size:20px !important;
  font-weight:400 !important;
}
.nk-host-card h2,
.nk-host-stat-card div span{
  font-weight:700 !important;
}
.nk-host-focus h2{
  margin-bottom:12px !important;
}
.nk-host-card-head h2{
  font-weight:700 !important;
}
.nk-host-activity-row{
  grid-template-columns:42px minmax(0,1fr) auto !important;
}
.nk-host-source-icon{
  width:36px !important;
  height:36px !important;
  border-radius:10px !important;
}
.nk-host-source-icon img{
  width:28px !important;
  height:28px !important;
}
.nk-host-donut:before{
  inset:34px !important;
}
.nk-host-housekeeping .nk-host-donut:before{
  inset:34px !important;
}

/* v315: overview revenue section */
.nk-host-bottom-grid{
  display:grid;
  grid-template-columns:minmax(250px,.85fr) minmax(360px,1.35fr) minmax(330px,1.1fr);
  gap:12px;
}
.nk-host-revenue{
  min-width:0;
}
.nk-host-range{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:4px 10px;
  border:1px solid #e2e8f4;
  border-radius:9px;
  color:#516280;
  background:#fff;
  font-size:12px;
  font-weight:400 !important;
}
.nk-host-revenue-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  margin:2px 0 8px;
  border-bottom:1px solid #edf1f7;
  padding-bottom:9px;
}
.nk-host-revenue-stats div{
  padding:0 12px;
  border-right:1px solid #e7edf6;
}
.nk-host-revenue-stats div:first-child{padding-left:0;}
.nk-host-revenue-stats div:last-child{border-right:0;padding-right:0;}
.nk-host-revenue-stats span{
  display:block;
  color:#60708c;
  font-size:12px;
  line-height:1.2;
  font-weight:400 !important;
}
.nk-host-revenue-stats strong{
  display:block;
  margin-top:4px;
  color:#111c36;
  font-size:18px;
  line-height:1.1;
  font-weight:700 !important;
  letter-spacing:-.02em;
}
.nk-host-revenue-chart{
  height:112px;
  display:flex;
  align-items:flex-end;
  gap:4px;
  padding:8px 0 0;
}
.nk-host-revenue-chart span{
  flex:1 1 0;
  min-width:4px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(180deg,#3a76f8 0%,#2f6ff2 100%);
  box-shadow:0 3px 8px rgba(47,111,242,.15);
}
.nk-host-revenue-axis{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:6px;
  color:#60708c;
  font-size:11px;
  font-weight:400 !important;
}
.nk-host-card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  color:#1768ff;
  text-decoration:none;
  font-size:13px;
  font-weight:400 !important;
}
.nk-host-card-link span{font-size:20px;line-height:1;}
.nk-host-housekeeping .nk-host-donut:before,
.nk-host-donut:before{
  inset:16px !important;
}
@media (max-width:1280px){
  .nk-host-bottom-grid{grid-template-columns:1fr;}
}


/* v316 housekeeping summary layout fix */
.nk-host-housekeeping-body{
  grid-template-columns:150px minmax(0,1fr) !important;
  align-items:center !important;
}
.nk-host-housekeeping .nk-host-donut{
  background:conic-gradient(#32ba72 calc(var(--nk-progress) * 1%), #ff8a3d 0 100%) !important;
}
.nk-host-housekeeping .nk-host-legend{
  gap:14px !important;
  align-self:center;
}
.nk-host-housekeeping .nk-host-legend-row{
  display:grid !important;
  grid-template-columns:12px minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:10px !important;
  font-size:13px !important;
  line-height:1.25 !important;
}
.nk-host-housekeeping .nk-host-legend-row strong{
  white-space:nowrap;
  text-align:right;
}
@media (max-width:1280px){
  .nk-host-housekeeping-body{
    grid-template-columns:1fr !important;
  }
  .nk-host-housekeeping .nk-host-legend{
    width:100%;
  }
}


/* v317 housekeeping summary legend below chart */
.nk-host-housekeeping-body{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:18px !important;
  padding:6px 4px 0 !important;
}
.nk-host-housekeeping .nk-host-legend{
  width:100% !important;
  max-width:240px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
  margin:0 auto !important;
}
.nk-host-housekeeping .nk-host-legend-row{
  display:grid !important;
  grid-template-columns:12px minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:10px !important;
  width:100% !important;
}
.nk-host-housekeeping .nk-host-legend-row strong{
  min-width:70px;
  text-align:right !important;
}


/* v318 revenue overview clarity */
.nk-host-revenue .nk-host-card-head{
  align-items:flex-start !important;
}
.nk-host-card-subtitle{
  margin:3px 0 0 !important;
  color:#60708c !important;
  font-size:12px !important;
  line-height:1.25 !important;
  font-weight:400 !important;
}
.nk-host-revenue-stats{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:8px !important;
  border-bottom:0 !important;
  padding-bottom:4px !important;
}
.nk-host-revenue-stats div{
  border:1px solid #e7edf6 !important;
  border-radius:12px !important;
  padding:9px 10px !important;
  background:#fbfdff !important;
}
.nk-host-revenue-stats strong{
  font-size:16px !important;
}
.nk-host-revenue-stats em{
  display:block;
  margin-top:4px;
  color:#60708c;
  font-style:normal;
  font-size:10.5px;
  line-height:1.2;
  font-weight:400 !important;
}
.nk-host-revenue-note{
  margin:6px 0 2px !important;
  color:#6b7890 !important;
  font-size:11px !important;
  line-height:1.35 !important;
  font-weight:400 !important;
}
.nk-host-revenue-chart{
  height:86px !important;
}
@media (max-width:720px){
  .nk-host-revenue-stats{
    grid-template-columns:1fr !important;
  }
}


/* v325 overview revenue + housekeeping empty state */
.nk-host-housekeeping-empty{
  min-height:150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:6px;
  padding:18px 10px;
  color:#60708c;
}
.nk-host-housekeeping-empty .dashicons{
  width:34px;
  height:34px;
  font-size:34px;
  color:#32ba72;
}
.nk-host-housekeeping-empty p{
  margin:4px 0 0 !important;
  color:#111c36 !important;
  font-size:14px !important;
  font-weight:700 !important;
}
.nk-host-housekeeping-empty small{
  color:#60708c;
  font-size:12px;
  font-weight:400 !important;
}
.nk-host-revenue-axis--two{
  justify-content:space-between !important;
}


/* v327 remove middle revenue metric */
.nk-host-revenue .nk-host-revenue-stats{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
}
@media (max-width:720px){
  .nk-host-revenue .nk-host-revenue-stats{
    grid-template-columns:1fr !important;
  }
}

/* v332 fix overview bottom cards clipping */
@media (min-width:1281px){
  .nk-host-overview{
    max-height:none !important;
    overflow:visible !important;
  }
}
.nk-host-bottom-grid{
  align-items:start !important;
}
.nk-host-bottom-grid .nk-host-card{
  height:auto !important;
  min-height:0 !important;
  overflow:visible !important;
}
.nk-host-activity-list,
.nk-host-focus-list{
  overflow:visible !important;
}
.nk-host-housekeeping,
.nk-host-revenue,
.nk-host-activity{
  padding-bottom:18px !important;
}

/* v333 overview custom stat icons */
.nk-host-icon .nk-host-custom-icon{
  width:30px;
  height:30px;
  display:block;
  object-fit:contain;
}

/* v335: Overview text cleanup and transparent welcome header */
.nk-host-welcome{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}
.nk-host-welcome:before,
.nk-host-welcome:after{
  display:none !important;
}

.nk-host-focus-row[href]{text-decoration:none;color:inherit;transition:background .16s ease, transform .16s ease;}
.nk-host-focus-row[href]:hover{background:#f8fbff;transform:translateY(-1px);}
.nk-host-detail-subtitle{margin:4px 0 0;color:#64748b;font-size:13px;}
.nk-host-detail-card .nk-host-table{margin-top:12px;}

/* v343 Overview detail action buttons */
.nk-host-inline-form{margin:0;display:inline-flex;align-items:center;justify-content:flex-start;}
.nk-host-mini-button{border:1px solid #16a34a;border-radius:10px;padding:8px 12px;font-size:12px;font-weight:750;cursor:pointer;white-space:nowrap;background:#16a34a;color:#fff;box-shadow:0 8px 18px rgba(22,163,74,.14);}
.nk-host-mini-button.is-mark{background:#16a34a;border-color:#16a34a;color:#fff;box-shadow:0 8px 18px rgba(22,163,74,.14);}
.nk-host-mini-button.is-undo{background:#fff;color:#166534;box-shadow:none;border:1px solid #16a34a;}
 .nk-host-mini-button:hover{filter:brightness(.97);}
.nk-host-mini-button.is-mark:hover,.nk-host-mini-button.is-mark:focus{background:#15803d!important;border-color:#15803d!important;color:#fff!important;box-shadow:0 8px 18px rgba(22,163,74,.18);}
.nk-host-mini-button.is-undo:hover,.nk-host-mini-button.is-undo:focus{background:#f0fdf4!important;border-color:#16a34a!important;color:#166534!important;}

/* v346 Financials detail page opened from Overview */
.nk-financials-page{
  gap:22px !important;
  max-height:none !important;
  overflow:visible !important;
}
.nk-fin-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:4px 2px 10px;
}
.nk-fin-header h1{
  margin:0 0 8px;
  color:#111c36;
  font-size:28px;
  line-height:1.1;
  font-weight:800 !important;
  letter-spacing:-.035em;
}
.nk-fin-header p{
  margin:0;
  color:#53627c;
  font-size:15px;
  font-weight:400 !important;
}
.nk-fin-filters{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.nk-fin-filters label{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  background:#fff;
  border:1px solid #e0e7f2;
  border-radius:13px;
  box-shadow:0 10px 28px rgba(17,28,54,.04);
  color:#31415f;
}
.nk-fin-filters label > .dashicons{
  color:#5a6b8b;
}
.nk-fin-filters select,
.nk-fin-filters input{
  height:36px;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  color:#111c36;
  font-weight:700;
  background:transparent;
}
.nk-fin-filters button{
  min-height:52px;
  padding:0 18px;
  border:0;
  border-radius:13px;
  background:#1768ff;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.nk-fin-filter-sep{color:#72809a;}
.nk-fin-summary-grid,
.nk-fin-breakdown-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.nk-fin-value-card,
.nk-fin-card,
.nk-fin-note{
  background:#fff;
  border:1px solid #e3e8f2;
  border-radius:18px;
  box-shadow:0 18px 44px rgba(17,28,54,.05);
}
.nk-fin-value-card{
  min-height:170px;
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:28px;
}
.nk-fin-icon{
  width:64px;
  height:64px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:34px;
  font-weight:800 !important;
}
.nk-fin-icon--green{background:#e9f9ee;color:#20a85d;}
.nk-fin-icon--purple{background:#f1e7ff;color:#914ff7;}
.nk-fin-icon .dashicons{font-size:31px;width:31px;height:31px;}
.nk-fin-value-card h2,
.nk-fin-card h2{
  margin:0 0 8px;
  color:#111c36;
  font-size:18px;
  font-weight:800 !important;
  letter-spacing:-.02em;
}
.nk-fin-value-card p,
.nk-fin-card-head p{
  margin:0;
  color:#53627c;
  font-size:15px;
}
.nk-fin-value-card strong{
  display:block;
  margin-top:24px;
  color:#07132d;
  font-size:34px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:850 !important;
}
.nk-fin-value-card small{
  display:block;
  margin-top:16px;
  color:#60708c;
  font-size:14px;
}
.nk-fin-card{
  padding:28px;
}
.nk-fin-card-head{margin-bottom:24px;}
.nk-fin-breakdown-body{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  align-items:center;
  gap:34px;
}
.nk-fin-donut{
  width:220px;
  height:220px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  margin:auto;
}
.nk-fin-donut:before{
  content:'';
  position:absolute;
  inset:48px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 1px #edf1f7;
}
.nk-fin-donut span,
.nk-fin-donut small{
  position:relative;
  z-index:1;
}
.nk-fin-donut span{
  color:#07132d;
  font-size:22px;
  font-weight:850 !important;
  letter-spacing:-.03em;
}
.nk-fin-donut small{
  margin-top:6px;
  color:#53627c;
  font-size:14px;
}
.nk-fin-source-list{display:flex;flex-direction:column;}
.nk-fin-source-row{
  display:grid;
  grid-template-columns:12px minmax(0,1fr) auto 44px;
  align-items:center;
  gap:13px;
  min-height:44px;
  border-bottom:1px solid #edf1f7;
  color:#111c36;
  font-size:14px;
}
.nk-fin-source-row:last-child{border-bottom:0;}
.nk-fin-source-row strong{font-weight:750 !important;}
.nk-fin-source-row em{font-style:normal;color:#53627c;text-align:right;font-weight:650 !important;}
.nk-fin-source-dot{width:11px;height:11px;border-radius:50%;}
.nk-fin-source-dot--direct{background:#2f6ff2;}
.nk-fin-source-dot--booking{background:#0b327a;}
.nk-fin-source-dot--airbnb{background:#ff6470;}
.nk-fin-source-dot--expedia{background:#ffbf47;}
.nk-fin-source-dot--other{background:#8b5cf6;}
.nk-fin-note{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  color:#53627c;
}
.nk-fin-note .dashicons{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#1768ff;
  color:#fff;
  font-size:22px;
}
.nk-fin-note p{margin:0;font-size:14px;line-height:1.45;}
@media (max-width:1100px){
  .nk-fin-header{flex-direction:column;}
  .nk-fin-summary-grid,.nk-fin-breakdown-grid{grid-template-columns:1fr;}
}
@media (max-width:720px){
  .nk-fin-filters{width:100%;}
  .nk-fin-filters label{width:100%;flex-wrap:wrap;}
  .nk-fin-filters button{width:100%;}
  .nk-fin-value-card{grid-template-columns:1fr;padding:20px;}
  .nk-fin-card{padding:20px;}
  .nk-fin-breakdown-body{grid-template-columns:1fr;gap:18px;}
  .nk-fin-donut{width:180px;height:180px;}
  .nk-fin-donut:before{inset:40px;}
}

/* v347 Financials compact layout + working accommodation selector */
.nk-financials-page{
  gap:14px !important;
  padding-bottom:8px !important;
}
.nk-fin-header{
  gap:12px !important;
  padding:0 2px 4px !important;
  align-items:center !important;
}
.nk-fin-header h1{
  font-size:23px !important;
  margin-bottom:5px !important;
}
.nk-fin-header p{
  font-size:13px !important;
}
.nk-fin-filters{
  gap:10px !important;
}
.nk-fin-filters label{
  min-height:44px !important;
  padding:0 12px !important;
  border-radius:12px !important;
}
.nk-fin-filters select,
.nk-fin-filters input{
  height:31px !important;
  font-size:13px !important;
}
.nk-fin-filters button{
  min-height:44px !important;
  padding:0 15px !important;
  border-radius:12px !important;
  font-size:13px !important;
}
.nk-fin-summary-grid,
.nk-fin-breakdown-grid{
  gap:14px !important;
}
.nk-fin-value-card{
  min-height:118px !important;
  grid-template-columns:52px minmax(0,1fr) !important;
  gap:16px !important;
  padding:18px 24px !important;
  border-radius:15px !important;
}
.nk-fin-icon{
  width:50px !important;
  height:50px !important;
  font-size:27px !important;
}
.nk-fin-icon .dashicons{
  font-size:24px !important;
  width:24px !important;
  height:24px !important;
}
.nk-fin-value-card h2,
.nk-fin-card h2{
  font-size:15px !important;
  margin-bottom:5px !important;
}
.nk-fin-value-card p,
.nk-fin-card-head p{
  font-size:13px !important;
}
.nk-fin-value-card strong{
  font-size:27px !important;
  margin-top:15px !important;
}
.nk-fin-value-card small{
  font-size:12px !important;
  margin-top:10px !important;
}
.nk-fin-card{
  padding:18px 22px !important;
  border-radius:15px !important;
}
.nk-fin-card-head{
  margin-bottom:12px !important;
}
.nk-fin-breakdown-body{
  grid-template-columns:168px minmax(0,1fr) !important;
  gap:24px !important;
}
.nk-fin-donut{
  width:150px !important;
  height:150px !important;
}
.nk-fin-donut:before{
  inset:35px !important;
}
.nk-fin-donut span{
  font-size:18px !important;
}
.nk-fin-donut small{
  font-size:12px !important;
  margin-top:3px !important;
}
.nk-fin-source-row{
  grid-template-columns:10px minmax(0,1fr) auto 36px !important;
  gap:9px !important;
  min-height:34px !important;
  font-size:12.5px !important;
}
.nk-fin-source-dot{
  width:9px !important;
  height:9px !important;
}
.nk-fin-note{
  gap:12px !important;
  padding:13px 18px !important;
  border-radius:15px !important;
}
.nk-fin-note .dashicons{
  width:30px !important;
  height:30px !important;
  font-size:18px !important;
}
.nk-fin-note p{
  font-size:12.5px !important;
}
@media (min-width:1101px){
  .nk-financials-page .nk-fin-summary-grid,
  .nk-financials-page .nk-fin-breakdown-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-fin-breakdown-body{
    grid-template-columns:140px minmax(0,1fr) !important;
    gap:18px !important;
  }
  .nk-fin-donut{
    width:130px !important;
    height:130px !important;
  }
  .nk-fin-donut:before{
    inset:30px !important;
  }
  .nk-fin-source-row{
    font-size:12px !important;
    min-height:31px !important;
  }
}

/* v349 Financials dynamic period label + uploaded SVG summary icons */
.nk-fin-icon--image{
  background:transparent !important;
  color:inherit !important;
  overflow:hidden;
}
.nk-fin-icon--image img{
  width:100% !important;
  height:100% !important;
  display:block;
  object-fit:contain;
}

/* v350 Financials summary SVG icons smaller + fully visible */
.nk-fin-summary-grid .nk-fin-icon--image{
  overflow:visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.nk-fin-summary-grid .nk-fin-icon--image img{
  width:38px !important;
  height:38px !important;
  max-width:38px !important;
  max-height:38px !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  margin:0 auto !important;
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-fin-summary-grid .nk-fin-icon--image img{
    width:34px !important;
    height:34px !important;
    max-width:34px !important;
    max-height:34px !important;
  }
}

/* v351 Financials summary SVG icons restore soft colored backgrounds */
.nk-fin-summary-grid .nk-fin-icon--image{
  border-radius:50% !important;
  overflow:visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.nk-fin-summary-grid .nk-fin-value-card:first-child .nk-fin-icon--image{
  background:#e9f9ee !important;
}
.nk-fin-summary-grid .nk-fin-value-card:nth-child(2) .nk-fin-icon--image{
  background:#f1e7ff !important;
}
.nk-fin-summary-grid .nk-fin-icon--image img{
  width:34px !important;
  height:34px !important;
  max-width:34px !important;
  max-height:34px !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  margin:0 auto !important;
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-fin-summary-grid .nk-fin-icon--image img{
    width:31px !important;
    height:31px !important;
    max-width:31px !important;
    max-height:31px !important;
  }
}

/* v352 Currency lock note in client Business Settings */
.nk-saas-embedded-admin select[data-nk-currency-locked="1"]{
  background:#f3f6fb !important;
  color:#53627c !important;
  cursor:not-allowed !important;
  border-color:#d9e0ec !important;
}
.nk-currency-lock-note{
  margin:8px 0 0 !important;
  color:#60708c !important;
  font-size:12.5px !important;
  line-height:1.45 !important;
}

/* v355 header notification icon replaced with uploaded SVG */
.nk-saas-topbar-icon img{
  width:18px;
  height:18px;
  display:block;
  object-fit:contain;
}
.nk-saas-topbar-icon .dashicons{display:none;}

/* v366 Financials donut graphs thinner + smaller center amount */
.nk-financials-page .nk-fin-donut{
  width:150px !important;
  height:150px !important;
}
.nk-financials-page .nk-fin-donut:before{
  inset:42px !important;
}
.nk-financials-page .nk-fin-donut span{
  font-size:15px !important;
  line-height:1.05 !important;
}
.nk-financials-page .nk-fin-donut small{
  font-size:11px !important;
  margin-top:2px !important;
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-financials-page .nk-fin-donut{
    width:130px !important;
    height:130px !important;
  }
  .nk-financials-page .nk-fin-donut:before{
    inset:36px !important;
  }
  .nk-financials-page .nk-fin-donut span{
    font-size:14px !important;
  }
}
@media (max-width:720px){
  .nk-financials-page .nk-fin-donut{
    width:138px !important;
    height:138px !important;
  }
  .nk-financials-page .nk-fin-donut:before{
    inset:38px !important;
  }
}

/* v367 Financials donut larger inner white circle */
.nk-financials-page .nk-fin-donut:before{
  inset:48px !important;
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-financials-page .nk-fin-donut:before{
    inset:40px !important;
  }
}
@media (max-width:720px){
  .nk-financials-page .nk-fin-donut:before{
    inset:43px !important;
  }
}

/* v368 Financials donut bigger inner hole + thinner ring */
.nk-financials-page .nk-fin-donut{
  width:150px !important;
  height:150px !important;
}
.nk-financials-page .nk-fin-donut:before{
  inset:28px !important;
}
.nk-financials-page .nk-fin-donut span{
  font-size:14px !important;
  line-height:1.05 !important;
}
.nk-financials-page .nk-fin-donut small{
  font-size:11px !important;
  margin-top:2px !important;
}
@media (max-width:1280px) and (min-width:1101px){
  .nk-financials-page .nk-fin-donut{
    width:130px !important;
    height:130px !important;
  }
  .nk-financials-page .nk-fin-donut:before{
    inset:24px !important;
  }
  .nk-financials-page .nk-fin-donut span{
    font-size:13px !important;
  }
}
@media (max-width:720px){
  .nk-financials-page .nk-fin-donut{
    width:138px !important;
    height:138px !important;
  }
  .nk-financials-page .nk-fin-donut:before{
    inset:26px !important;
  }
}


/* v416: force Recent activity source logos to render as true circles */
.nk-host-activity-row .nk-host-source-icon{
  width:36px !important;
  height:36px !important;
  min-width:36px !important;
  border-radius:50% !important;
  overflow:hidden !important;
  padding:0 !important;
  background:#f2f6ff !important;
}
.nk-host-activity-row .nk-host-source-icon img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
  border-radius:50% !important;
}





/* v418: header controls should be soft rectangles, not pill buttons */
body.nk-saas-body .nk-saas-topbar-right .nk-saas-pill,
body.nk-saas-body .nk-saas-topbar-right .nk-saas-button-quiet,
body.nk-saas-body .nk-saas-topbar-right .button,
body.nk-saas-body .nk-saas-topbar-right .nk-saas-topbar-icon{
  border-radius:6px !important;
}


/* v419 global notification center */
.nk-saas-topbar-icon--notifications{position:relative;overflow:visible !important;}
.nk-saas-notification-badge{position:absolute;top:-7px;right:-7px;min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:#ef4444;color:#fff;border:2px solid #fff;font-size:10px;font-weight:800;line-height:18px;text-align:center;box-shadow:0 8px 18px rgba(239,68,68,.28);}
.nk-saas-notification-center{display:flex;flex-direction:column;gap:18px;}
.nk-saas-notification-feed{display:flex;flex-direction:column;gap:12px;}
.nk-saas-notification-item{display:grid;grid-template-columns:14px minmax(0,1fr);gap:14px;padding:18px;border:1px solid #e2e8f0;border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(15,23,42,.04);}
.nk-saas-notification-item.is-unread{border-color:#bfdbfe;background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);}
.nk-saas-notification-dot{width:10px;height:10px;margin-top:8px;border-radius:50%;background:#cbd5e1;}
.nk-saas-notification-item.is-unread .nk-saas-notification-dot{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.12);}
.nk-saas-notification-title-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.nk-saas-notification-title-row h2{margin:0;color:#111c36;font-size:18px;font-weight:800;letter-spacing:-.02em;}
.nk-saas-notification-title-row span{display:inline-flex;align-items:center;height:22px;padding:0 8px;border-radius:999px;background:#fee2e2;color:#b91c1c;font-size:11px;font-weight:800;}
.nk-saas-notification-body time{display:block;margin-top:4px;color:#71809a;font-size:12px;font-weight:700;}
.nk-saas-notification-message{margin-top:12px;color:#334155;font-size:14px;line-height:1.6;}
.nk-saas-notification-message p{margin:0 0 10px;}
.nk-saas-notification-message p:last-child{margin-bottom:0;}
.nk-saas-notification-link{display:inline-flex;align-items:center;gap:6px;margin-top:14px;padding:10px 13px;border-radius:10px;background:#2563eb;color:#fff !important;text-decoration:none;font-size:13px;font-weight:800;}
.nk-saas-notification-link:hover{background:#1d4ed8;color:#fff !important;}
.nk-saas-empty-state{padding:22px;border:1px dashed #cbd5e1;border-radius:18px;background:#f8fafc;color:#64748b;}
.nk-saas-empty-state h2{margin:0 0 6px;color:#111c36;font-size:18px;}
.nk-saas-empty-state p{margin:0;}
@media(max-width:720px){.nk-saas-notification-item{padding:15px;border-radius:14px}.nk-saas-notification-title-row h2{font-size:16px}}


/* v420 header notification dropdown */
.nk-saas-notification-menu{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.nk-saas-notification-menu .nk-saas-topbar-icon{
  cursor:pointer;
}
.nk-saas-notification-popover{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  width:min(380px, calc(100vw - 32px));
  max-height:min(520px, calc(100vh - 140px));
  overflow:auto;
  z-index:120;
  border:1px solid #dbe3ef;
  border-radius:16px;
  background:#fff;
  box-shadow:0 24px 70px rgba(15,23,42,.18);
  padding:10px;
}
.nk-saas-notification-popover[hidden]{
  display:none !important;
}
.nk-saas-notification-popover:before{
  content:"";
  position:absolute;
  top:-7px;
  right:18px;
  width:12px;
  height:12px;
  transform:rotate(45deg);
  border-left:1px solid #dbe3ef;
  border-top:1px solid #dbe3ef;
  background:#fff;
}
.nk-saas-notification-popover-head{
  padding:10px 10px 12px;
  border-bottom:1px solid #edf2f7;
  color:#111c36;
  font-size:15px;
}
.nk-saas-notification-popover-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:8px;
}
.nk-saas-notification-popover-empty{
  padding:18px 12px;
  color:#64748b;
  font-size:14px;
}
.nk-saas-notification-popover-item{
  padding:12px;
  border:1px solid #e8edf5;
  border-radius:12px;
  background:#fff;
}
.nk-saas-notification-popover-item.is-unread{
  border-color:#bfdbfe;
  background:#f8fbff;
}
.nk-saas-notification-popover-title{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:space-between;
}
.nk-saas-notification-popover-title strong{
  color:#111c36;
  font-size:14px;
  line-height:1.25;
}
.nk-saas-notification-popover-title span{
  flex:0 0 auto;
  padding:3px 7px;
  border-radius:999px;
  background:#fee2e2;
  color:#b91c1c;
  font-size:10px;
  font-weight:800;
}
.nk-saas-notification-popover-item time{
  display:block;
  margin-top:4px;
  color:#71809a;
  font-size:11px;
  font-weight:700;
}
.nk-saas-notification-popover-message{
  margin-top:8px;
  color:#334155;
  font-size:13px;
  line-height:1.5;
}
.nk-saas-notification-popover-message p{
  margin:0 0 8px;
}
.nk-saas-notification-popover-message p:last-child{
  margin-bottom:0;
}
.nk-saas-notification-popover-link{
  display:inline-flex;
  margin-top:10px;
  color:#2563eb !important;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}
.nk-saas-notification-mark-read{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  min-height:30px;
  padding:6px 10px;
  border:1px solid #dbe3ef;
  border-radius:8px;
  background:#fff;
  color:#334155;
  cursor:pointer;
  font-size:12px;
  font-weight:800;
}
.nk-saas-notification-mark-read:hover{
  background:#f8fafc;
}
.nk-saas-notification-mark-read:disabled{
  opacity:.65;
  cursor:wait;
}
@media(max-width:720px){
  .nk-saas-notification-popover{
    right:-10px;
    width:min(340px, calc(100vw - 24px));
  }
}


/* v421 notification button/dropdown reliability */
.nk-saas-topbar{
  overflow:visible !important;
}
.nk-saas-topbar-right{
  overflow:visible !important;
}
.nk-saas-notification-menu{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  overflow:visible !important;
}
.nk-saas-notification-menu .nk-saas-topbar-icon{
  appearance:none;
  -webkit-appearance:none;
  text-decoration:none !important;
  cursor:pointer !important;
  overflow:visible !important;
}
.nk-saas-notification-popover{
  display:block;
  pointer-events:auto;
}
.nk-saas-notification-popover[hidden]{
  display:none !important;
}


/* v422: notification icon is popup-only button, not page navigation */
.nk-saas-notification-menu button.nk-saas-topbar-icon{
  border:1px solid var(--nk-border) !important;
  background:#ffffff !important;
  padding:0 !important;
  font:inherit !important;
  color:inherit !important;
}


/* v423 notification dropdown uses native details/summary so the popup opens reliably */
details.nk-saas-notification-menu{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  overflow:visible !important;
}
details.nk-saas-notification-menu > summary{
  list-style:none !important;
}
details.nk-saas-notification-menu > summary::-webkit-details-marker{
  display:none !important;
}
details.nk-saas-notification-menu > .nk-saas-notification-popover{
  display:none !important;
}
details.nk-saas-notification-menu[open] > .nk-saas-notification-popover{
  display:block !important;
}
details.nk-saas-notification-menu > summary.nk-saas-topbar-icon{
  border:1px solid var(--nk-border) !important;
  background:#ffffff !important;
  padding:0 !important;
  font:inherit !important;
  color:inherit !important;
  cursor:pointer !important;
  border-radius:6px !important;
}
details.nk-saas-notification-menu > summary.nk-saas-topbar-icon:focus{
  outline:2px solid rgba(37,99,235,.22);
  outline-offset:2px;
}


/* v424 notification popup polish */
.nk-saas-notification-badge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-sizing:border-box !important;
  min-width:20px !important;
  width:auto !important;
  height:20px !important;
  padding:0 6px !important;
  line-height:20px !important;
  text-align:center !important;
}
.nk-saas-notification-link span{
  display:none !important;
}
.nk-saas-notification-popover-link{
  text-decoration:none !important;
}
.nk-saas-notification-popover-link::after,
.nk-saas-notification-link::after{
  content:none !important;
  display:none !important;
}


/* v425 notification dropdown and live clock polish */
details.nk-saas-notification-menu[open] > .nk-saas-notification-popover{
  display:block !important;
}
.nk-saas-notification-popover{
  z-index:9999 !important;
}


/* v426 reliable notification close backdrop + mark-read form */
.nk-saas-notification-backdrop{
  display:none;
  position:fixed;
  inset:0;
  z-index:9990;
  border:0;
  background:transparent;
  cursor:default;
  padding:0;
}
details.nk-saas-notification-menu[open] > .nk-saas-notification-backdrop{
  display:block !important;
}
details.nk-saas-notification-menu[open] > .nk-saas-notification-popover{
  z-index:10000 !important;
}
.nk-saas-notification-mark-read-form{
  margin:0;
  padding:0;
  display:inline;
}


/* v427 notification dropdown: small popup under bell, no page overlay */
.nk-saas-notification-backdrop{
  display:none !important;
}
.nk-saas-notification-menu{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  overflow:visible !important;
}
.nk-saas-notification-popover{
  position:absolute !important;
  top:calc(100% + 10px) !important;
  right:0 !important;
  left:auto !important;
  width:380px !important;
  max-width:calc(100vw - 32px) !important;
  z-index:9999 !important;
  background:#fff !important;
}
details.nk-saas-notification-menu[open] > .nk-saas-notification-popover{
  display:block !important;
}
@media(max-width:720px){
  .nk-saas-notification-popover{
    right:-8px !important;
    width:min(340px, calc(100vw - 24px)) !important;
  }
}


/* v428 notification close button + hide empty badge */
.nk-saas-notification-badge[hidden],
.nk-saas-notification-badge:empty{
  display:none !important;
}
.nk-saas-notification-popover-head{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
}
.nk-saas-notification-close{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dbe3ef;
  border-radius:8px;
  background:#fff;
  color:#475569;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  padding:0;
}
.nk-saas-notification-close:hover{
  background:#f8fafc;
  color:#111827;
}


/* v429: avoid header clock width jumping when seconds update */
[data-nk-live-time]{
  min-width:82px;
  justify-content:center;
}


/* v430 live header clock width */
[data-nk-live-time]{
  min-width:82px;
  justify-content:center;
}


/* v432 date pill for short month format */
[data-nk-live-date]{
  min-width:84px;
  justify-content:center;
}


/* v433: cleaner mobile header layout, hide date/time on mobile */
@media (max-width: 768px){
  .nk-saas-topbar{
    padding: 18px 18px 16px !important;
  }

  .nk-saas-topbar--simple{
    display:flex !important;
    align-items:flex-start !important;
    justify-content:space-between !important;
    gap:14px !important;
    flex-wrap:nowrap !important;
  }

  .nk-saas-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    min-width:0 !important;
    flex:1 1 auto !important;
  }

  .nk-saas-topbar-copy{
    min-width:0 !important;
    flex:1 1 auto !important;
  }

  .nk-saas-topbar-copy h1{
    margin:0 !important;
    font-size:28px !important;
    line-height:1.15 !important;
  }

  .nk-saas-topbar-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:10px !important;
    margin-left:auto !important;
    flex:0 0 auto !important;
    width:auto !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time]{
    display:none !important;
  }

  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    width:72px !important;
    height:72px !important;
    min-width:72px !important;
    border-radius:18px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    width:28px !important;
  }

  .nk-saas-notification-menu{
    margin:0 !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 10px) !important;
    right:0 !important;
    width:min(340px, calc(100vw - 24px)) !important;
    max-width:min(340px, calc(100vw - 24px)) !important;
  }
}


/* v434: refine mobile header proportions and alignment */
@media (max-width: 768px){
  .nk-saas-topbar{
    padding: 14px 14px 12px !important;
  }

  .nk-saas-topbar--simple{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    flex-wrap:nowrap !important;
    min-height:auto !important;
  }

  .nk-saas-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
    min-width:0 !important;
    flex:1 1 auto !important;
  }

  .nk-saas-topbar-copy{
    min-width:0 !important;
    flex:1 1 auto !important;
  }

  .nk-saas-topbar-copy h1{
    margin:0 !important;
    font-size:22px !important;
    line-height:1.15 !important;
    font-weight:800 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .nk-saas-topbar-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    margin-left:auto !important;
    flex:0 0 auto !important;
    width:auto !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time],
  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-topbar-right .nk-saas-pill,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    border-radius:14px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    width:22px !important;
    height:3px !important;
    border-radius:3px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:24px !important;
    max-height:24px !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 8px) !important;
    right:0 !important;
    width:min(320px, calc(100vw - 24px)) !important;
    max-width:min(320px, calc(100vw - 24px)) !important;
  }
}


/* v435: mobile header aligned like design reference */
@media (max-width: 768px){
  .nk-saas-topbar{
    padding: 16px 18px 16px !important;
  }

  .nk-saas-topbar--simple{
    display:grid !important;
    grid-template-columns: 76px 1fr 76px !important;
    align-items:center !important;
    column-gap:16px !important;
    min-height:96px !important;
  }

  .nk-saas-topbar-left{
    display:contents !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    grid-column:1 !important;
    grid-row:1 !important;
    justify-self:start !important;
    align-self:center !important;
  }

  .nk-saas-topbar-copy{
    grid-column:2 !important;
    grid-row:1 !important;
    min-width:0 !important;
    align-self:center !important;
  }

  .nk-saas-topbar-copy h1{
    margin:0 !important;
    font-size:34px !important;
    line-height:1.05 !important;
    font-weight:800 !important;
    letter-spacing:-0.02em !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    text-align:left !important;
  }

  .nk-saas-topbar-right{
    grid-column:3 !important;
    grid-row:1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:0 !important;
    margin-left:0 !important;
    width:auto !important;
    min-width:0 !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time],
  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:76px !important;
    height:76px !important;
    min-width:76px !important;
    border-radius:20px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    width:28px !important;
    height:3px !important;
    border-radius:999px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:30px !important;
    max-height:30px !important;
  }

  .nk-saas-notification-badge{
    min-width:28px !important;
    height:28px !important;
    line-height:28px !important;
    padding:0 8px !important;
    font-size:18px !important;
    font-weight:800 !important;
    top:-8px !important;
    right:-8px !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 10px) !important;
    right:0 !important;
    width:min(340px, calc(100vw - 24px)) !important;
    max-width:min(340px, calc(100vw - 24px)) !important;
  }
}

/* Slightly tighter phones */
@media (max-width: 520px){
  .nk-saas-topbar{
    padding: 14px 14px 14px !important;
  }

  .nk-saas-topbar--simple{
    grid-template-columns: 70px 1fr 70px !important;
    column-gap:14px !important;
    min-height:86px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:70px !important;
    height:70px !important;
    min-width:70px !important;
    border-radius:18px !important;
  }

  .nk-saas-topbar-copy h1{
    font-size:30px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:28px !important;
    max-height:28px !important;
  }
}


/* v436: mobile header fix - show title, 3-line menu icon, smaller button borders */
@media (max-width: 768px){
  .nk-saas-topbar{
    padding: 14px 16px !important;
  }

  .nk-saas-topbar--simple{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:14px !important;
    min-height:88px !important;
  }

  .nk-saas-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:16px !important;
    flex:1 1 auto !important;
    min-width:0 !important;
  }

  .nk-saas-topbar-copy{
    display:block !important;
    flex:1 1 auto !important;
    min-width:0 !important;
  }

  .nk-saas-topbar-copy h1{
    display:block !important;
    margin:0 !important;
    font-size:31px !important;
    line-height:1.05 !important;
    font-weight:800 !important;
    letter-spacing:-0.02em !important;
    color:#172544 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .nk-saas-topbar-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:0 !important;
    flex:0 0 auto !important;
    margin-left:auto !important;
    width:auto !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time],
  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:64px !important;
    height:64px !important;
    min-width:64px !important;
    border-radius:16px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-width:1px !important;
  }

  /* force 3-line menu icon */
  .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    position:relative !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::after,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    content:"";
    display:block !important;
    position:absolute !important;
    left:50% !important;
    width:26px !important;
    height:3px !important;
    margin-left:-13px !important;
    background:#27304a !important;
    border-radius:999px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top:22px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    top:30px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span{
    top:38px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:24px !important;
    max-height:24px !important;
  }

  .nk-saas-notification-badge{
    min-width:24px !important;
    height:24px !important;
    line-height:24px !important;
    padding:0 7px !important;
    font-size:16px !important;
    font-weight:800 !important;
    top:-8px !important;
    right:-8px !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 8px) !important;
    right:0 !important;
    width:min(340px, calc(100vw - 24px)) !important;
    max-width:min(340px, calc(100vw - 24px)) !important;
  }
}

@media (max-width: 520px){
  .nk-saas-topbar{
    padding: 12px 14px !important;
  }

  .nk-saas-topbar--simple{
    min-height:80px !important;
    gap:12px !important;
  }

  .nk-saas-topbar-left{
    gap:14px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:58px !important;
    height:58px !important;
    min-width:58px !important;
    border-radius:15px !important;
  }

  .nk-saas-topbar-copy h1{
    font-size:28px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top:20px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    top:28px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span{
    top:36px !important;
  }
}


/* v437: sticky header + one-line mobile layout */
.nk-saas-topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 220 !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06) !important;
}
body.admin-bar .nk-saas-topbar{
  top: 32px !important;
}
@media (max-width: 782px){
  body.admin-bar .nk-saas-topbar{
    top: 46px !important;
  }
}

@media (max-width: 768px){
  .nk-saas-topbar{
    padding: 12px 14px !important;
  }

  .nk-saas-topbar--simple{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    min-height:76px !important;
    flex-wrap:nowrap !important;
  }

  .nk-saas-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    flex:1 1 auto !important;
    min-width:0 !important;
  }

  .nk-saas-topbar-copy{
    display:block !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    overflow:hidden !important;
  }

  .nk-saas-topbar-copy h1{
    display:block !important;
    margin:0 !important;
    font-size:26px !important;
    line-height:1.05 !important;
    font-weight:800 !important;
    letter-spacing:-0.02em !important;
    color:#172544 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .nk-saas-topbar-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:0 !important;
    flex:0 0 auto !important;
    margin-left:0 !important;
    width:auto !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time],
  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:56px !important;
    height:56px !important;
    min-width:56px !important;
    border-radius:14px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-width:1px !important;
  }

  /* 3 equal hamburger lines */
  .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    position:relative !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::after,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    content:"";
    display:block !important;
    position:absolute !important;
    left:50% !important;
    width:24px !important;
    height:3px !important;
    margin-left:-12px !important;
    background:#27304a !important;
    border-radius:999px !important;
    box-sizing:border-box !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top:19px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    top:26px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span{
    top:33px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:22px !important;
    max-height:22px !important;
  }

  .nk-saas-notification-badge{
    min-width:22px !important;
    height:22px !important;
    line-height:22px !important;
    padding:0 6px !important;
    font-size:14px !important;
    font-weight:800 !important;
    top:-6px !important;
    right:-6px !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 8px) !important;
    right:0 !important;
    width:min(340px, calc(100vw - 24px)) !important;
    max-width:min(340px, calc(100vw - 24px)) !important;
  }
}

@media (max-width: 420px){
  .nk-saas-topbar-copy h1{
    font-size:24px !important;
  }
  .nk-saas-topbar-left{
    gap:12px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    border-radius:13px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top:17px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    top:24px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span{
    top:31px !important;
  }
}


/* v438: force mobile header into one clean row */
@media (max-width: 768px){
  .nk-saas-topbar,
  .nk-saas-topbar.nk-saas-topbar--simple{
    position: sticky !important;
    top: 0 !important;
    z-index: 220 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex-wrap:nowrap !important;
    min-height:76px !important;
    padding:12px 14px !important;
    gap:12px !important;
    overflow:visible !important;
  }

  body.admin-bar .nk-saas-topbar,
  body.admin-bar .nk-saas-topbar.nk-saas-topbar--simple{
    top:46px !important;
  }

  .nk-saas-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    width:auto !important;
    max-width:none !important;
  }

  .nk-saas-topbar-copy{
    display:block !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    width:auto !important;
    overflow:hidden !important;
  }

  .nk-saas-topbar-copy h1{
    display:block !important;
    margin:0 !important;
    font-size:26px !important;
    line-height:1.1 !important;
    font-weight:800 !important;
    color:#172544 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .nk-saas-topbar-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex:0 0 auto !important;
    width:auto !important;
    min-width:56px !important;
    margin:0 !important;
    padding:0 !important;
    gap:0 !important;
    position:static !important;
  }

  .nk-saas-topbar-right [data-nk-live-date],
  .nk-saas-topbar-right [data-nk-live-time],
  .nk-saas-topbar-right .nk-saas-button-quiet{
    display:none !important;
  }

  .nk-saas-notification-menu{
    display:inline-flex !important;
    position:relative !important;
    margin:0 !important;
    flex:0 0 auto !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:56px !important;
    height:56px !important;
    min-width:56px !important;
    max-width:56px !important;
    border-radius:14px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:0 0 56px !important;
    border-width:1px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    position:relative !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::after,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    content:"" !important;
    display:block !important;
    position:absolute !important;
    left:50% !important;
    width:24px !important;
    height:3px !important;
    margin-left:-12px !important;
    background:#27304a !important;
    border-radius:999px !important;
    opacity:1 !important;
    transform:none !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top:19px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span{
    top:26px !important;
  }

  .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span,
  .nk-saas-topbar-left .nk-saas-sidebar-toggle::after{
    top:33px !important;
  }

  .nk-saas-topbar-right img,
  .nk-saas-notification-menu > summary img{
    max-width:22px !important;
    max-height:22px !important;
  }

  .nk-saas-notification-popover{
    top:calc(100% + 8px) !important;
    right:0 !important;
    left:auto !important;
    width:min(340px, calc(100vw - 24px)) !important;
    max-width:min(340px, calc(100vw - 24px)) !important;
  }
}

@media (max-width: 420px){
  .nk-saas-topbar-copy h1{
    font-size:24px !important;
  }
  .nk-saas-topbar,
  .nk-saas-topbar.nk-saas-topbar--simple{
    gap:10px !important;
    padding:10px 12px !important;
  }
  .nk-saas-topbar-left{
    gap:10px !important;
  }
  .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar-right .nk-saas-topbar-icon,
  .nk-saas-notification-menu > summary.nk-saas-topbar-icon{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    max-width:52px !important;
    flex-basis:52px !important;
  }
}

/* v439: /app header one-row tablet/mobile layout (menu + title + notifications) */
@media (max-width: 1280px){
  body.nk-saas-body .nk-saas-topbar,
  body.nk-saas-body .nk-saas-topbar.nk-saas-topbar--simple{
    position: sticky !important;
    top: 0 !important;
    z-index: 260 !important;
    display: grid !important;
    grid-template-columns: clamp(54px, 7vw, 82px) minmax(0, 1fr) clamp(54px, 7vw, 82px) !important;
    align-items: center !important;
    column-gap: clamp(10px, 2vw, 22px) !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    min-height: clamp(72px, 9vw, 112px) !important;
    width: 100% !important;
    padding: clamp(10px, 1.7vw, 18px) clamp(12px, 2vw, 22px) !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06) !important;
  }

  body.admin-bar .nk-saas-topbar,
  body.admin-bar .nk-saas-topbar.nk-saas-topbar--simple{
    top: 32px !important;
  }

  body.nk-saas-body .nk-saas-topbar-left{
    display: contents !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: relative !important;
  }

  body.nk-saas-body .nk-saas-topbar-copy{
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: block !important;
    min-width: 0 !important;
    width: auto !important;
    overflow: hidden !important;
  }

  body.nk-saas-body .nk-saas-topbar-copy h1{
    display: block !important;
    margin: 0 !important;
    color: #172544 !important;
    font-size: clamp(24px, 5vw, 46px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
  }

  body.nk-saas-body .nk-saas-topbar-right{
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    position: static !important;
  }

  body.nk-saas-body .nk-saas-topbar-right [data-nk-live-date],
  body.nk-saas-body .nk-saas-topbar-right [data-nk-live-time],
  body.nk-saas-body .nk-saas-topbar-right .nk-saas-button-quiet{
    display: none !important;
  }

  body.nk-saas-body .nk-saas-notification-menu{
    display: inline-flex !important;
    position: relative !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  body.nk-saas-body .nk-saas-notification-menu > summary.nk-saas-topbar-icon,
  body.nk-saas-body .nk-saas-topbar-right .nk-saas-topbar-icon{
    width: clamp(54px, 7vw, 82px) !important;
    height: clamp(54px, 7vw, 82px) !important;
    min-width: clamp(54px, 7vw, 82px) !important;
    max-width: clamp(54px, 7vw, 82px) !important;
    flex: 0 0 clamp(54px, 7vw, 82px) !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #dfe6f2 !important;
    border-radius: clamp(14px, 1.7vw, 22px) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(17, 28, 54, 0.04) !important;
  }

  /* exactly 3 equal hamburger lines */
  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle::before,
  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle::after,
  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle span:first-child{
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    width: clamp(23px, 3vw, 36px) !important;
    height: 3px !important;
    margin-left: calc(clamp(23px, 3vw, 36px) / -2) !important;
    background: #27304a !important;
    border-radius: 999px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle span + span{
    display: none !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle::before{
    top: calc(50% - 10px) !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle span:first-child{
    top: calc(50% - 1.5px) !important;
  }

  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle::after{
    top: calc(50% + 7px) !important;
  }

  body.nk-saas-body .nk-saas-notification-menu > summary img,
  body.nk-saas-body .nk-saas-topbar-right img{
    width: clamp(22px, 3vw, 34px) !important;
    height: clamp(22px, 3vw, 34px) !important;
    max-width: clamp(22px, 3vw, 34px) !important;
    max-height: clamp(22px, 3vw, 34px) !important;
  }

  body.nk-saas-body .nk-saas-notification-badge{
    min-width: clamp(22px, 2.8vw, 32px) !important;
    height: clamp(22px, 2.8vw, 32px) !important;
    line-height: clamp(22px, 2.8vw, 32px) !important;
    padding: 0 7px !important;
    font-size: clamp(13px, 1.8vw, 19px) !important;
    font-weight: 800 !important;
    top: -7px !important;
    right: -7px !important;
  }

  body.nk-saas-body .nk-saas-notification-popover{
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(360px, calc(100vw - 24px)) !important;
    max-width: min(360px, calc(100vw - 24px)) !important;
  }
}

@media (max-width: 782px){
  body.admin-bar .nk-saas-topbar,
  body.admin-bar .nk-saas-topbar.nk-saas-topbar--simple{
    top: 46px !important;
  }
}

@media (max-width: 420px){
  body.nk-saas-body .nk-saas-topbar,
  body.nk-saas-body .nk-saas-topbar.nk-saas-topbar--simple{
    grid-template-columns: 52px minmax(0, 1fr) 52px !important;
    column-gap: 10px !important;
    min-height: 70px !important;
    padding: 9px 12px !important;
  }
  body.nk-saas-body .nk-saas-topbar-copy h1{
    font-size: 23px !important;
  }
  body.nk-saas-body .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  body.nk-saas-body .nk-saas-notification-menu > summary.nk-saas-topbar-icon,
  body.nk-saas-body .nk-saas-topbar-right .nk-saas-topbar-icon{
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    flex-basis: 52px !important;
    border-radius: 13px !important;
  }
}

/* v440: smaller /app mobile/tablet header title + keep slide menu above sticky header */
@media (max-width: 1280px){
  body.nk-saas-body .nk-saas-topbar-copy h1{
    font-size: clamp(21px, 4vw, 38px) !important;
    letter-spacing: -0.03em !important;
  }

  body.nk-saas-body .nk-saas-sidebar{
    z-index: 520 !important;
  }

  body.nk-saas-body.nk-saas-sidebar-open::before{
    z-index: 500 !important;
  }
}

@media (max-width: 420px){
  body.nk-saas-body .nk-saas-topbar-copy h1{
    font-size: 21px !important;
  }
}
/* v442 Direct Bookings intro card: mobile-only stacked actions, keep desktop layout/colors */
@media (max-width: 700px) {
  .nk-saas-direct-bookings-head {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .nk-saas-direct-bookings-copy {
    width: 100% !important;
  }

  .nk-saas-direct-bookings-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .nk-saas-direct-bookings-actions .button {
    width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 10px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.2 !important;
  }
}

/* v443 Overview mobile: stack Today's focus and Today's arrivals/departures cards */
@media (max-width: 900px) {
  .nk-host-dashboard-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .nk-host-dashboard-grid > .nk-host-card,
  .nk-host-focus,
  .nk-host-arrivals {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .nk-host-arrivals .nk-host-card-head {
    align-items: flex-start !important;
  }

  .nk-host-arrivals .nk-host-card-head h2 {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.2 !important;
  }

  .nk-host-arrivals .nk-host-empty {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* v444: keep Calendar accommodation dropdown visible on mobile app view */
@media (max-width: 720px) {
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls,
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-group,
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-picker,
  body.nk-saas-body .nk-saas-content #lbc-calendar #lbc-unit-select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-picker {
    display: block !important;
  }

  body.nk-saas-body .nk-saas-content #lbc-calendar #lbc-unit-select {
    display: block !important;
    height: 54px !important;
    min-height: 54px !important;
  }
}

/* v445: keep Calendar accommodation dropdown fully visible on tablet app view too */
@media (max-width: 1180px) {
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls,
  body.nk-saas-body .nk-saas-content .lbc-calendar-controls {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-group,
  body.nk-saas-body .nk-saas-content .lbc-calendar-controls .lbc-property-group,
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-picker,
  body.nk-saas-body .nk-saas-content .lbc-calendar-controls .lbc-property-picker {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls .lbc-property-picker,
  body.nk-saas-body .nk-saas-content .lbc-calendar-controls .lbc-property-picker {
    display: block !important;
  }

  body.nk-saas-body .nk-saas-content #lbc-calendar #lbc-unit-select,
  body.nk-saas-body .nk-saas-content .lbc-calendar-controls #lbc-unit-select,
  body.nk-saas-body .nk-saas-content .lbc-units-bar.lbc-calendar-controls #lbc-unit-select {
    display: block !important;
    width: 100% !important;
    max-width: 540px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}


/* v446: make tablet menu behave like mobile drawer */
@media (max-width: 1280px){
  body.nk-saas-body .nk-saas-app-shell{
    grid-template-columns: 1fr !important;
  }

  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-app-shell,
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-app-shell{
    grid-template-columns: 1fr !important;
  }

  body.nk-saas-body .nk-saas-sidebar{
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    bottom: 12px !important;
    width: min(300px, calc(100vw - 24px)) !important;
    min-height: auto !important;
    transform: translateX(calc(-100% - 22px)) !important;
    transition: transform 0.22s ease !important;
    overflow: auto !important;
    z-index: 520 !important;
  }

  body.admin-bar.nk-saas-body .nk-saas-sidebar{
    top: 44px !important;
  }

  body.nk-saas-body.nk-saas-sidebar-open .nk-saas-sidebar{
    transform: translateX(0) !important;
  }

  body.nk-saas-body.nk-saas-sidebar-open::before{
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(17, 24, 39, 0.38) !important;
    z-index: 500 !important;
  }
}

@media (max-width: 782px){
  body.admin-bar.nk-saas-body .nk-saas-sidebar{
    top: 58px !important;
  }
}

/* v447: tablet drawer should show the full mobile menu, not collapsed icon-only sidebar */
@media (min-width: 783px) and (max-width: 1280px){
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-sidebar,
  body.nk-saas-body .nk-saas-sidebar{
    align-items: stretch !important;
    width: min(420px, calc(100vw - 32px)) !important;
    padding: 18px 16px 16px !important;
    border-radius: 0 0 22px 0 !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-brand-copy,
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-section,
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav-copy,
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-footer,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-brand-copy,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-sidebar-section,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-nav-copy,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer{
    display: block !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-head,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-sidebar-head,
  body.nk-saas-body .nk-saas-sidebar-head{
    width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-brand,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-brand,
  body.nk-saas-body .nk-saas-brand{
    justify-content: flex-start !important;
    width: auto !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-nav,
  body.nk-saas-body .nk-saas-nav{
    width: 100% !important;
    align-items: stretch !important;
    gap: 6px !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav a,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-nav a,
  body.nk-saas-body .nk-saas-nav a{
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 9px 12px !important;
    gap: 12px !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav a.is-active::before,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-nav a.is-active::before{
    left: -12px !important;
    top: 9px !important;
    bottom: 9px !important;
    width: 3px !important;
    height: auto !important;
    transform: none !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav-submenu,
  body.nk-saas-body.nk-saas-sidebar-collapsed .nk-saas-nav-submenu,
  body.nk-saas-body .nk-saas-nav-submenu{
    display: flex !important;
  }
}

/* v448: desktop collapsed sidebar icons left aligned */
@media (min-width: 1181px) {
  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar {
    align-items: stretch;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-head,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-head {
    align-items: flex-start;
    justify-content: flex-start;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-brand,
  body.nk-saas-sidebar-collapsed .nk-saas-brand {
    width: 100%;
    justify-content: flex-start;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-toggle,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-toggle {
    margin-left: 0;
    align-self: flex-start;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav a,
  body.nk-saas-sidebar-collapsed .nk-saas-nav a {
    justify-content: flex-start !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav-icon,
  body.nk-saas-sidebar-collapsed .nk-saas-nav-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 24px;
  }

  html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-nav-arrow,
  body.nk-saas-sidebar-collapsed .nk-saas-nav-arrow {
    margin-left: auto;
  }
}

/* v454 Extras & Services first version */
.nk-extras-admin-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 0 18px}.nk-extras-admin-head h2{margin:0 0 4px}.nk-extras-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:0 0 18px}.nk-extras-stat-grid>div{background:#fff;border:1px solid #e5eaf1;border-radius:16px;padding:16px;box-shadow:0 10px 24px rgba(15,23,42,.04)}.nk-extras-stat-grid strong{display:block;font-size:24px;color:#0f172a}.nk-extras-stat-grid span{display:block;font-size:12px;font-weight:800;color:#64748b;text-transform:uppercase;letter-spacing:.04em}.nk-extras-list{display:grid;gap:12px}.nk-extra-admin-card{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.nk-extra-admin-card h3{margin:8px 0 6px;font-size:18px}.nk-extra-admin-card p{margin:0 0 8px;color:#64748b}.nk-extra-chip-admin{display:inline-flex;border-radius:999px;background:#eef6ff;color:#0c5ee8;padding:5px 9px;font-size:12px;font-weight:800}.nk-extra-admin-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}.nk-extra-admin-actions .is-on,.nk-extra-admin-actions .is-off,.nk-extra-status{display:inline-flex;border-radius:999px;padding:6px 9px;font-size:12px;font-weight:800;background:#ecfdf5;color:#047857}.nk-extra-admin-actions .is-off{background:#f1f5f9;color:#64748b}.nk-extra-admin-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.nk-extra-admin-grid label{display:flex;flex-direction:column;gap:6px;font-weight:800;color:#334155}.nk-extra-admin-grid input,.nk-extra-admin-grid select,.nk-extra-admin-grid textarea{width:100%;max-width:100%;border:1px solid #d8dee8;border-radius:10px;padding:10px 12px;background:#fff}.nk-extra-admin-grid .wide{grid-column:1/-1}.nk-extra-check{flex-direction:row!important;align-items:center;font-weight:700!important}.nk-extra-check input{width:auto!important}.nk-extra-delete-form{margin-top:14px}.nk-extra-orders-table small{color:#64748b}.nk-extras-public{max-width:1420px;margin:0 auto;padding:28px 18px 46px}.nk-extras-public::after{content:"";display:block;clear:both}.nk-extras-hero{position:relative;background:linear-gradient(180deg,#fff 0%,#fbfbfb 100%);border:1px solid #ede7df;border-radius:34px;padding:42px 36px 34px;margin:0 auto 26px;box-shadow:0 22px 56px rgba(15,23,42,.08);text-align:center;overflow:hidden}.nk-extras-hero:before{content:"";position:absolute;left:-120px;top:-10px;width:340px;height:340px;background:radial-gradient(circle at center,rgba(231,223,211,.38) 0,rgba(231,223,211,0) 70%);opacity:.7}.nk-extras-hero:after{content:"";position:absolute;right:-70px;bottom:-60px;width:320px;height:220px;border-radius:58% 42% 0 0/84% 70% 0 0;background:linear-gradient(135deg,rgba(232,227,221,.2),rgba(232,227,221,.55));opacity:.8}.nk-extras-public-logo{position:relative;z-index:2;display:flex;justify-content:center;align-items:center;padding:0 0 18px}.nk-extras-public-logo img{display:block;max-width:156px;max-height:130px;width:auto;height:auto;object-fit:contain;border-radius:14px}.nk-extras-kicker{position:relative;z-index:2;display:block;font-size:14px!important;text-transform:uppercase;letter-spacing:.26em;font-weight:900;color:#152548!important;margin:0 0 10px!important}.nk-extras-hero-divider{position:relative;z-index:2;display:block;width:58px;height:2px;background:#d8c1a0;border-radius:999px;margin:0 auto 16px}.nk-extras-hero h1{position:relative;z-index:2;margin:0 0 14px;font-size:64px;line-height:.98;color:#152548;font-family:Georgia,"Times New Roman",serif;font-weight:500;letter-spacing:-.02em}.nk-extras-hero p{position:relative;z-index:2;max-width:760px;margin:0 auto;color:#606f88;font-size:17px;line-height:1.65}.nk-extras-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;align-items:stretch}.nk-extra-card{background:#fff;border:1px solid #ece7df;border-radius:24px;overflow:hidden;box-shadow:0 18px 48px rgba(15,23,42,.08);padding:14px;display:flex;flex-direction:column}.nk-extra-card-img{height:270px;border-radius:18px;background-size:cover;background-position:center;background-color:#f4f1ec}.nk-extra-card-body{padding:18px 14px 12px;display:flex;flex-direction:column;flex:1}.nk-extra-chip{display:inline-flex;align-self:flex-start;border-radius:999px;background:#f6f1e8;color:#8e6b2b;padding:7px 14px;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.nk-extra-card h2{font-size:25px;line-height:1.15;margin:16px 0 10px;color:#152548;font-family:Georgia,"Times New Roman",serif;font-weight:500}.nk-extra-card p{color:#5f6f87;margin:0 0 16px;font-size:16px;line-height:1.55}.nk-extra-vat-note{margin:8px 0 0;color:#8a97ab;font-size:12px;font-weight:800}.nk-extra-card-body:after{content:"";display:block;width:100%;height:1px;background:#ece7df;margin:4px 0 16px}.nk-extra-price{display:flex;align-items:flex-end;gap:10px;flex-wrap:wrap;font-size:22px;margin:0;color:#152548;font-weight:900}.nk-extra-price small{font-size:14px;color:#606f88;font-weight:800;margin-bottom:2px}.nk-extra-submit{display:inline-flex;align-items:center;justify-content:center;min-width:220px;border:0;border-radius:14px;background:linear-gradient(135deg,#091a45,#0f2c66);color:#fff!important;text-decoration:none;font-weight:900;padding:17px 20px;margin-top:0;cursor:pointer;box-shadow:0 10px 24px rgba(9,26,69,.18)}.nk-extra-submit:hover{filter:brightness(1.02)}.nk-extra-card .nk-extra-submit{margin-left:auto}.nk-extra-notice{border-radius:16px;padding:14px 16px;margin:0 0 18px;font-weight:800}.nk-extra-success{background:#ecfdf5;color:#047857;border:1px solid #bbf7d0}.nk-extra-error{background:#fef2f2;color:#b91c1c;border:1px solid #fecaca}.nk-extras-empty{background:#fff;border:1px solid #e5eaf1;border-radius:18px;padding:18px;color:#64748b}.nk-extra-checkout-layout{display:grid;grid-template-columns:minmax(0,1.1fr) 420px;gap:22px;align-items:start}.nk-extra-checkout-main,.nk-extra-checkout-summary{background:#fff;border:1px solid #ece7df;border-radius:24px;box-shadow:0 18px 48px rgba(15,23,42,.08)}.nk-extra-checkout-main{padding:24px 24px 22px}.nk-extra-checkout-summary{overflow:hidden}.nk-extra-back-link{display:inline-flex;align-items:center;gap:6px;color:#0f2c66;text-decoration:none;font-weight:900;margin-bottom:12px}.nk-extra-checkout-main h1{margin:0 0 10px;font-size:40px;color:#152548;font-family:Georgia,"Times New Roman",serif;font-weight:500}.nk-extra-muted{color:#606f88;margin:0 0 16px;line-height:1.6}.nk-extra-checkout-form .nk-extra-submit{margin-top:18px}.nk-extra-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}.nk-extra-form-grid label{display:flex;flex-direction:column;gap:6px;font-size:13px;font-weight:800;color:#334155}.nk-extra-form-grid input,.nk-extra-form-grid textarea{border:1px solid #d8dee8;border-radius:12px;padding:12px;background:#fff;width:100%}.nk-extra-form-grid .wide{grid-column:1/-1}@media(max-width:1180px){.nk-extras-grid{grid-template-columns:1fr 1fr}.nk-extra-checkout-layout{grid-template-columns:1fr 360px}.nk-extras-hero h1{font-size:54px}}@media(max-width:900px){.nk-extras-grid,.nk-extra-checkout-layout,.nk-extra-form-grid{grid-template-columns:1fr}.nk-extra-card-img{height:240px}.nk-extra-submit{min-width:180px}.nk-extra-card .nk-extra-submit{width:100%;margin-left:0;margin-top:6px}.nk-extras-hero{padding:34px 22px 28px}.nk-extras-hero h1{font-size:42px}.nk-extras-hero p{font-size:16px}}@media(max-width:680px){.nk-extras-admin-head,.nk-extra-admin-card{flex-direction:column;align-items:stretch}.nk-extras-stat-grid,.nk-extra-admin-grid,.nk-extra-form-grid{grid-template-columns:1fr}.nk-extras-public{padding:18px 12px 34px}.nk-extras-public-logo img{max-width:130px;max-height:110px}.nk-extras-kicker{font-size:12px!important;letter-spacing:.2em}.nk-extras-hero h1{font-size:34px}.nk-extra-card{padding:10px}.nk-extra-card-body{padding:16px 10px 10px}.nk-extra-card h2{font-size:22px}.nk-extra-card-img{height:210px}.nk-extra-price{font-size:20px}}

/* v455 Extras checkout + image upload polish */
.nk-extra-current-image{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.nk-extra-current-image small{color:#64748b;font-weight:700}.nk-extra-checkout-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:20px;align-items:start}.nk-extra-checkout-main,.nk-extra-checkout-summary{background:#fff;border:1px solid #e5eaf1;border-radius:24px;box-shadow:0 18px 48px rgba(15,23,42,.06);overflow:hidden}.nk-extra-checkout-main{padding:26px}.nk-extra-checkout-main h1{margin:8px 0 8px;color:#0f172a;font-size:32px;line-height:1.1}.nk-extra-muted{color:#64748b;margin:0 0 18px}.nk-extra-back-link{display:inline-flex;color:#0c5ee8;font-weight:900;text-decoration:none}.nk-extra-checkout-form{margin-top:14px}.nk-extra-checkout-summary .nk-extra-card-img{border-radius:0;height:190px}.nk-extra-checkout-summary{position:sticky;top:18px}.nk-extra-checkout-summary .nk-extra-card-body{padding:20px}@media(max-width:860px){.nk-extra-checkout-layout{grid-template-columns:1fr}.nk-extra-checkout-summary{position:static}.nk-extra-checkout-main{padding:20px}.nk-extra-checkout-main h1{font-size:28px}}

/* v456: Extras image picker with WordPress gallery selection */
.nk-extra-image-picker{display:flex;flex-direction:column;gap:10px;font-weight:800;color:#334155}
.nk-extra-image-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.nk-extra-upload-fallback{display:inline-flex!important;flex-direction:row!important;align-items:center!important;gap:8px!important;font-weight:700!important;color:#64748b!important;margin:0!important}
.nk-extra-upload-fallback input{width:auto!important;border:0!important;padding:0!important;background:transparent!important}
.nk-extra-clear-image{color:#b91c1c!important;border-color:#fecaca!important;background:#fff!important}

/* v457: Extras list cards like clean product/service rows */
.nk-extras-list{
  display:grid !important;
  gap:18px !important;
}
.nk-extra-admin-row{
  display:grid;
  grid-template-columns:210px minmax(0,1fr) 260px;
  align-items:center;
  gap:28px;
  background:#fff;
  border:1px solid #e3eaf4;
  border-radius:22px;
  padding:22px 28px;
  box-shadow:0 14px 36px rgba(15,23,42,.045);
}
.nk-extra-admin-media img,
.nk-extra-admin-placeholder{
  width:210px;
  height:138px;
  border-radius:14px;
  display:block;
  object-fit:cover;
  background:#f1f5f9;
}
.nk-extra-admin-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#94a3b8;
}
.nk-extra-admin-placeholder .dashicons{
  width:42px;
  height:42px;
  font-size:42px;
}
.nk-extra-admin-main{
  min-width:0;
}
.nk-extra-admin-main h3{
  margin:10px 0 8px !important;
  font-size:24px !important;
  line-height:1.15;
  color:#0f172a;
}
.nk-extra-admin-main p{
  max-width:680px;
  margin:0 0 14px !important;
  color:#667085 !important;
  font-size:15px;
  line-height:1.45;
}
.nk-extra-admin-price{
  display:flex;
  align-items:baseline;
  gap:8px;
  color:#0f172a;
  font-size:20px;
  line-height:1.2;
}
.nk-extra-admin-price span{
  color:#1f2937;
  font-size:15px;
  font-weight:700;
}
.nk-extra-chip-admin{
  display:inline-flex !important;
  align-items:center;
  border-radius:999px !important;
  background:#eef6ff !important;
  color:#0c5ee8 !important;
  padding:6px 11px !important;
  font-size:13px !important;
  font-weight:900 !important;
  line-height:1 !important;
}
.nk-extra-admin-side{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  justify-self:end;
  min-width:220px;
}
.nk-extra-admin-side .is-on,
.nk-extra-admin-side .is-off{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:9px 14px;
  font-size:14px;
  font-weight:900;
  background:#dcfce7;
  color:#047857;
}
.nk-extra-admin-side .is-off{
  background:#f1f5f9;
  color:#64748b;
}
.nk-extra-status-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:currentColor;
  display:inline-block;
}
.nk-extra-admin-side small{
  color:#667085;
  font-size:14px;
}
.nk-extra-admin-row-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:32px;
}
.nk-extra-edit-button,
.nk-extra-more-button{
  min-height:48px !important;
  border-radius:12px !important;
  border-color:#d9e2ef !important;
  background:#fff !important;
  color:#0f172a !important;
  box-shadow:none !important;
  font-weight:800 !important;
}
.nk-extra-edit-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px;
  min-width:132px;
}
.nk-extra-edit-button .dashicons,
.nk-extra-more-button .dashicons{
  line-height:1;
}
.nk-extra-more-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:58px;
  padding:0 !important;
}

@media(max-width:980px){
  .nk-extra-admin-row{
    grid-template-columns:150px minmax(0,1fr);
    gap:18px;
  }
  .nk-extra-admin-media img,
  .nk-extra-admin-placeholder{
    width:150px;
    height:110px;
  }
  .nk-extra-admin-side{
    grid-column:1/-1;
    justify-self:stretch;
    min-width:0;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
  }
  .nk-extra-admin-row-actions{
    margin-top:0;
  }
}
@media(max-width:640px){
  .nk-extra-admin-row{
    grid-template-columns:1fr;
    padding:18px;
  }
  .nk-extra-admin-media img,
  .nk-extra-admin-placeholder{
    width:100%;
    height:190px;
  }
  .nk-extra-admin-main h3{
    font-size:22px !important;
  }
  .nk-extra-admin-side{
    align-items:stretch;
  }
  .nk-extra-admin-row-actions{
    width:100%;
  }
  .nk-extra-edit-button{
    flex:1;
  }
}


/* v463 Extras & Services: hide the extra header menu button only on desktop.
   Mobile/tablet keeps the same working menu behavior as v457. */
@media (min-width: 1281px) {
  body.nk-saas-view-extras-services .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  body.nk-saas-view-extras-add .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  body.nk-saas-view-extras-orders .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  body.nk-saas-view-extras-shop-page .nk-saas-topbar-left .nk-saas-sidebar-toggle,
  .nk-saas-topbar--extras .nk-saas-topbar-left .nk-saas-sidebar-toggle{
    display:none !important;
  }
}

@media (max-width: 1280px) {
  .nk-saas-topbar--extras .nk-saas-topbar-left .nk-saas-sidebar-toggle--mobile{
    display:inline-flex !important;
  }
}
.nk-extra-image-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}
.nk-extra-image-actions .nk-extra-select-image{
  border-radius:12px !important;
  min-height:42px;
  padding:8px 16px !important;
  font-weight:800 !important;
}
.nk-extra-current-image{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.nk-extra-switch-row{
  position:relative;
  display:flex !important;
  flex-direction:row !important;
  align-items:center;
  gap:12px !important;
  padding:14px 16px;
  border:1px solid #dbe4f0;
  border-radius:16px;
  background:#fff;
  cursor:pointer;
}
.nk-extra-switch-row > span{
  display:flex;
  flex-direction:column;
  gap:3px;
  flex:1 1 auto;
}
.nk-extra-switch-row small{
  color:#64748b;
  font-weight:700;
}
.nk-extra-switch-row input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.nk-extra-switch-row i{
  width:48px;
  height:28px;
  border-radius:999px;
  background:#d9e2ef;
  position:relative;
  flex:0 0 auto;
  transition:background .16s ease;
}
.nk-extra-switch-row i::after{
  content:"";
  width:22px;
  height:22px;
  border-radius:50%;
  background:#fff;
  position:absolute;
  top:3px;
  left:3px;
  box-shadow:0 2px 8px rgba(15,23,42,.18);
  transition:transform .16s ease;
}
.nk-extra-switch-row input:checked + i{
  background:#16a34a;
}
.nk-extra-switch-row input:checked + i::after{
  transform:translateX(20px);
}
.nk-extra-switch-row em{
  font-style:normal;
  font-weight:900;
  color:#0f172a;
  min-width:56px;
}
.nk-extra-upload-fallback{
  display:none !important;
}

/* v460 extras VAT included notes */
.nk-extra-vat-note{margin:6px 0 12px;color:#64748b;font-size:13px;font-weight:800}

/* v465 public extras client logo */
.nk-extras-public-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:28px 16px 8px;
}
.nk-extras-public-logo img{
  display:block;
  max-width:220px;
  max-height:90px;
  width:auto;
  height:auto;
  object-fit:contain;
}
@media(max-width:640px){
  .nk-extras-public-logo{
    padding-top:22px;
  }
  .nk-extras-public-logo img{
    max-width:180px;
    max-height:74px;
  }
}

/* v444: Recent activity click details popup */
.nk-host-activity-click-row {
  cursor: pointer;
}
.nk-host-activity-click-row:hover,
.nk-host-activity-click-row:focus {
  background: #f8fafc;
  outline: none;
}
.nk-host-activity-modal[hidden] {
  display: none !important;
}
.nk-host-activity-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.42);
}
.nk-host-activity-modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  padding: 24px;
}
.nk-host-activity-modal-card h3 {
  margin: 0 44px 18px 0;
  font-size: 20px;
  line-height: 1.25;
  color: #0f172a;
}
.nk-host-activity-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.nk-host-activity-modal-line {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}
.nk-host-activity-modal-line strong {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.nk-host-activity-modal-line span {
  color: #0f172a;
  font-size: 14px;
  word-break: break-word;
}
@media (max-width: 640px) {
  .nk-host-activity-modal {
    align-items: flex-end;
    padding: 12px;
  }
  .nk-host-activity-modal-card {
    border-radius: 20px;
    padding: 20px;
  }
  .nk-host-activity-modal-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* v444 extras store layout refinements */
.nk-extras-public-logo img{
  max-width:260px !important;
  max-height:120px !important;
}
.nk-extras-hero--compact{
  padding-top:26px !important;
  padding-bottom:30px !important;
}
.nk-extras-hero--compact h1{
  margin-bottom:0 !important;
}
.nk-extra-card-img{
  height:340px !important;
}
.nk-extra-card .nk-extra-submit{
  margin-left:0 !important;
  align-self:flex-start !important;
}
@media(max-width:900px){
  .nk-extra-card-img{height:300px !important;}
}
@media(max-width:680px){
  .nk-extras-public-logo img{max-width:220px !important;max-height:100px !important;}
  .nk-extra-card-img{height:270px !important;}
}

/* v444 extras title cleanup */
.nk-extras-hero--compact{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:10px 0 24px !important;
  margin:0 auto 22px !important;
  overflow:visible !important;
}
.nk-extras-hero--compact:before,
.nk-extras-hero--compact:after{
  display:none !important;
}
.nk-extras-hero--compact h1{
  font-family:inherit !important;
  font-size:42px !important;
  line-height:1.16 !important;
  font-weight:600 !important;
  letter-spacing:-0.01em !important;
  margin:0 !important;
}
.nk-extra-card .nk-extra-submit{
  margin-top:18px !important;
}
@media(max-width:900px){
  .nk-extras-hero--compact h1{font-size:34px !important;}
}
@media(max-width:680px){
  .nk-extras-hero--compact{padding:6px 0 18px !important;margin-bottom:18px !important;}
  .nk-extras-hero--compact h1{font-size:30px !important;}
}

/* v465 Extra service checkout polish: button visibility and tax summary */
.nk-extra-checkout-form button.nk-extra-submit,
.nk-extra-checkout-form .nk-extra-checkout-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:240px!important;
  width:auto!important;
  margin-top:26px!important;
  padding:17px 24px!important;
  border:0!important;
  border-radius:14px!important;
  background:linear-gradient(135deg,#091a45,#0f2c66)!important;
  color:#fff!important;
  font-weight:900!important;
  text-decoration:none!important;
  cursor:pointer!important;
  box-shadow:0 14px 28px rgba(9,26,69,.18)!important;
  -webkit-appearance:none!important;
  appearance:none!important;
}
.nk-extra-checkout-form button.nk-extra-submit:hover,
.nk-extra-checkout-form .nk-extra-checkout-button:hover{
  filter:brightness(1.04);
}
.nk-extra-checkout-breakdown{
  display:grid;
  gap:10px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #ece7df;
}
.nk-extra-checkout-breakdown>div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  color:#64748b;
  font-size:14px;
}
.nk-extra-checkout-breakdown strong{
  color:#152548;
  font-size:15px;
  font-weight:900;
  text-align:right;
}
.nk-extra-checkout-breakdown-total{
  margin-top:4px;
  padding-top:12px;
  border-top:1px solid #ece7df;
  color:#152548!important;
  font-weight:900;
}
.nk-extra-checkout-breakdown-total strong{
  font-size:22px;
}
.nk-extra-checkout-summary .nk-extra-vat-note{
  margin:8px 0 0!important;
  color:#64748b!important;
  font-size:13px!important;
  font-weight:800!important;
}
@media(max-width:680px){
  .nk-extra-checkout-form button.nk-extra-submit,
  .nk-extra-checkout-form .nk-extra-checkout-button{
    width:100%!important;
    min-width:0!important;
  }
}

/* Extra order received page cleanup */
.nk-extras-success-public{
  max-width:980px!important;
}
.nk-extras-success-card{
  background:#fff;
  border:1px solid #ece7df;
  border-radius:24px;
  box-shadow:0 18px 48px rgba(15,23,42,.08);
  padding:34px 36px;
  text-align:left;
}
.nk-extras-success-card h1{
  margin:0 0 12px!important;
  font-family:inherit!important;
  font-size:32px!important;
  line-height:1.15!important;
  font-weight:500!important;
  letter-spacing:0!important;
  color:#152548!important;
}
.nk-extras-success-card p{
  color:#606f88;
  font-size:16px;
  line-height:1.6;
  margin:0 0 20px;
}
.nk-extra-success-details{
  display:grid;
  gap:10px;
  margin:24px 0 22px;
  padding:18px;
  background:#fbfcfe;
  border:1px solid #e5eaf1;
  border-radius:18px;
}
.nk-extra-success-details h2{
  margin:0 0 6px!important;
  font-family:inherit!important;
  font-size:18px!important;
  font-weight:800!important;
  color:#152548!important;
}
.nk-extra-success-details>div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:8px 0;
  border-bottom:1px solid #eef2f7;
  color:#64748b;
}
.nk-extra-success-details>div:last-child{
  border-bottom:0;
}
.nk-extra-success-details span{
  font-weight:700;
}
.nk-extra-success-details strong{
  color:#152548;
  text-align:right;
  font-weight:900;
}
.nk-extra-success-total{
  margin-top:4px;
  padding-top:14px!important;
  border-top:1px solid #e5eaf1;
  font-size:17px;
}
.nk-extra-success-total strong{
  font-size:22px;
}
.nk-extra-success-actions{
  margin:0!important;
}
.nk-extra-back-small{
  min-width:0!important;
  padding:11px 16px!important;
  border-radius:11px!important;
  font-size:14px!important;
  box-shadow:0 8px 18px rgba(9,26,69,.12)!important;
}
@media(max-width:680px){
  .nk-extras-success-card{padding:26px 20px;}
  .nk-extras-success-card h1{font-size:26px!important;}
  .nk-extra-success-details>div{align-items:flex-start;flex-direction:column;gap:4px;}
  .nk-extra-success-details strong{text-align:left;}
}

/* Extras reservation choice modal */
body.nk-extra-modal-open{overflow:hidden;}
.nk-extra-reservation-modal[hidden]{display:none!important;}
.nk-extra-reservation-modal{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:22px;}
.nk-extra-reservation-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.48);backdrop-filter:blur(3px);}
.nk-extra-reservation-modal-card{position:relative;width:min(520px,100%);background:#fff;border-radius:22px;box-shadow:0 28px 80px rgba(15,23,42,.28);padding:28px;}
.nk-extra-reservation-modal-card h2{margin:0 0 8px;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:24px;font-weight:700;color:#0f172a;}
.nk-extra-reservation-modal-close{position:absolute;right:14px;top:12px;width:36px;height:36px;border:0;border-radius:999px;background:#f1f5f9;color:#0f172a;font-size:24px;line-height:1;cursor:pointer;}
.nk-extra-reservation-modal-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}
.nk-extra-submit-secondary{background:#e8eef7!important;color:#0f172a!important;border:1px solid #d6e0ef!important;}
.nk-extra-reservation-modal-form{margin-top:18px;display:grid;gap:12px;}
.nk-extra-reservation-modal-form[hidden]{display:none!important;}
.nk-extra-reservation-modal-form label{display:grid;gap:6px;font-size:13px;font-weight:800;color:#475569;}
.nk-extra-reservation-modal-form input{width:100%;border:1px solid #cbd5e1;border-radius:12px;padding:12px 14px;font:inherit;color:#0f172a;background:#fff;}
.nk-extra-reservation-modal-form small{color:#64748b;line-height:1.45;}
.nk-extra-notice.nk-extra-success{background:#ecfdf5;border:1px solid #bbf7d0;color:#166534;}
@media(max-width:640px){.nk-extra-reservation-modal-card{padding:22px 18px;border-radius:18px}.nk-extra-reservation-modal-actions .nk-extra-submit{width:100%;justify-content:center;text-align:center}}

/* v466 extras reservation popup fix */
.nk-extra-reservation-modal-card{
  width:min(760px,calc(100vw - 44px)) !important;
  padding:34px 40px !important;
}
.nk-extra-reservation-modal-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:16px !important;
  margin-top:22px !important;
}
.nk-extra-modal-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:58px !important;
  width:100% !important;
  border-radius:16px !important;
  padding:14px 20px !important;
  font-weight:900 !important;
  font-size:16px !important;
  text-align:center !important;
  cursor:pointer !important;
  text-decoration:none !important;
  box-shadow:none !important;
}
.nk-extra-modal-btn-light{
  background:#ffffff !important;
  color:#0f172a !important;
  border:1px solid #d6e0ef !important;
}
.nk-extra-modal-btn-dark{
  background:linear-gradient(135deg,#091a45,#0f2c66) !important;
  color:#ffffff !important;
  border:1px solid #091a45 !important;
}
.nk-extra-reservation-modal-form{
  margin-top:22px !important;
}
.nk-extra-reservation-modal-error{
  background:#fef2f2;
  border:1px solid #fecaca;
  color:#b91c1c;
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  font-size:13px;
}
@media(max-width:640px){
  .nk-extra-reservation-modal-card{padding:24px 18px !important;}
  .nk-extra-reservation-modal-actions{grid-template-columns:1fr !important;}
}

/* v467 extras popup/checkout polish */
.nk-extra-reservation-modal-form .nk-extra-submit,
.nk-extra-reservation-modal-form button[type="submit"]{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:260px !important;
  min-height:56px !important;
  border:0 !important;
  border-radius:14px !important;
  background:linear-gradient(135deg,#091a45,#0f2c66) !important;
  color:#ffffff !important;
  font-weight:900 !important;
  font-size:15px !important;
  text-decoration:none !important;
  cursor:pointer !important;
  box-shadow:0 10px 24px rgba(9,26,69,.18) !important;
  opacity:1 !important;
}
.nk-extra-reservation-modal-form .nk-extra-submit:disabled,
.nk-extra-reservation-modal-form button[type="submit"]:disabled{
  opacity:.75 !important;
  cursor:wait !important;
}
.nk-extra-checkout-main h1{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
  font-size:30px !important;
  line-height:1.15 !important;
  font-weight:700 !important;
  letter-spacing:-.02em !important;
}
@media(max-width:680px){
  .nk-extra-checkout-main h1{font-size:26px !important;}
  .nk-extra-reservation-modal-form .nk-extra-submit,
  .nk-extra-reservation-modal-form button[type="submit"]{width:100% !important;min-width:0 !important;}
}

/* v444: Recent activity detail page source icons */
.nk-host-table .nk-host-table-activity-label{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  min-width:0 !important;
}
.nk-host-table .nk-host-table-activity-label > span:last-child{
  min-width:0 !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.nk-host-table .nk-host-table-activity-label .nk-host-source-icon{
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  border-radius:50% !important;
  overflow:hidden !important;
  padding:0 !important;
  background:#f2f6ff !important;
}
.nk-host-table .nk-host-table-activity-label .nk-host-source-icon img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
  border-radius:50% !important;
}

/* Extra order confirmation email notice */
.nk-extras-success-card .nk-extra-success-email-note{
  margin-top:10px;
  padding:12px 14px;
  border:1px solid rgba(15,35,70,.10);
  border-radius:14px;
  background:#f7f9fc;
  color:#52627a;
  font-size:15px;
  line-height:1.45;
}

/* Stripe protected setup/status card */
.nk-saas-stripe-status-card .nk-saas-stripe-status-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:12px;
}
.nk-saas-stripe-status-card .nk-saas-stripe-status-grid > div{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px;
}
.nk-saas-stripe-status-card code{
  display:inline-block;
  margin-top:6px;
  white-space:normal;
  word-break:break-all;
}
.nk-saas-stripe-security-note{
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:12px;
  padding:12px 14px;
  color:#9a3412;
}


/* v451-safe notification popup label fix */
.nk-saas-notification-popover-link,
.nk-saas-notification-link{
  max-width:100%;
  white-space:normal !important;
  overflow-wrap:anywhere;
  word-break:normal;
  text-align:center;
}


/* v452 notification popup actions spacing */
.nk-saas-notification-popover-item .nk-saas-notification-popover-link{
  margin-right:14px !important;
  margin-bottom:10px !important;
}
.nk-saas-notification-popover-item .nk-saas-notification-mark-read-form{
  display:inline-flex !important;
  margin-top:12px !important;
  margin-left:0 !important;
}
.nk-saas-notification-popover-item .nk-saas-notification-popover-link + .nk-saas-notification-mark-read-form{
  margin-left:14px !important;
}
.nk-saas-notification-mark-read.is-loading{
  opacity:.65;
  pointer-events:none;
}


/* v453 support admin delete + notification button no-reload */
.nk-saas-notification-popover-item .nk-saas-notification-mark-read{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:12px !important;
  margin-left:14px !important;
  vertical-align:top;
}
.nk-help-admin-delete-ticket{
  color:#b42318 !important;
  border-color:#fecdca !important;
}
.nk-help-admin-delete-ticket:hover{
  background:#fef3f2 !important;
  color:#912018 !important;
}


/* v455 direct no-reload mark-read link */
.nk-saas-notification-popover-item a.nk-saas-notification-mark-read{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  margin-top:14px !important;
  margin-left:16px !important;
  padding:12px 18px !important;
  border:1px solid #d6e0f2 !important;
  border-radius:14px !important;
  background:#fff !important;
  color:#111c36 !important;
  text-decoration:none !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  cursor:pointer !important;
}
.nk-saas-notification-popover-item a.nk-saas-notification-mark-read:hover{
  background:#f8fbff !important;
  color:#111c36 !important;
}


/* v459 client-side notification delete */
.nk-saas-notification-popover-item{position:relative;}
.nk-saas-notification-delete{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:42px!important;
  height:42px!important;
  margin-top:14px!important;
  margin-left:10px!important;
  border:1px solid #fecdca!important;
  border-radius:14px!important;
  background:#fff!important;
  color:#b42318!important;
  text-decoration:none!important;
  font-size:17px!important;
  line-height:1!important;
  vertical-align:top!important;
}
.nk-saas-notification-delete:hover{
  background:#fef3f2!important;
  color:#912018!important;
}
.nk-saas-notification-delete--full{
  width:auto!important;
  padding:10px 13px!important;
  gap:6px!important;
  font-size:13px!important;
}


/* v460 notification delete uploaded SVG icon */
.nk-saas-notification-delete img{
  width:18px!important;
  height:18px!important;
  display:block!important;
  object-fit:contain!important;
  pointer-events:none!important;
}
.nk-saas-notification-delete--full img{
  width:15px!important;
  height:15px!important;
  display:inline-block!important;
  vertical-align:middle!important;
}


/* v461 custom sidebar logos */
.nk-saas-brand--custom{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  align-items:center;
}
.nk-saas-brand--custom .nk-saas-brand-logo-full{
  display:block;
  width:148px;
  max-width:100%;
  height:auto;
}
.nk-saas-brand--custom .nk-saas-brand-logo-mini{
  display:none;
  width:28px;
  height:28px;
  max-width:none;
}
html.nk-saas-sidebar-collapsed .nk-saas-brand--custom,
body.nk-saas-sidebar-collapsed .nk-saas-brand--custom{
  width:100%;
  justify-content:center;
}
html.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-full,
body.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-full{
  display:none !important;
}
html.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-mini,
body.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-mini{
  display:block !important;
}
@media (max-width: 1180px){
  .nk-saas-brand--custom .nk-saas-brand-logo-full{
    width:136px;
  }
}


/* v462 collapsed sidebar logo/toggle alignment */
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-head,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-head{
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
}

html.nk-saas-sidebar-collapsed .nk-saas-brand--custom,
body.nk-saas-sidebar-collapsed .nk-saas-brand--custom{
  width:100% !important;
  justify-content:center !important;
  align-items:center !important;
  margin:0 auto !important;
}

html.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-mini,
body.nk-saas-sidebar-collapsed .nk-saas-brand--custom .nk-saas-brand-logo-mini{
  width:40px !important;
  height:40px !important;
}

html.nk-saas-sidebar-collapsed .nk-saas-sidebar-toggle,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-toggle{
  margin:0 auto !important;
  align-self:center !important;
}


/* v463 customer-facing language selector */
.nk-customer-lang-switcher{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99999;
  font-family:inherit;
}
.nk-customer-lang-current{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:999px;
  background:#ffffff;
  color:#111827;
  box-shadow:0 14px 34px rgba(15,23,42,.18);
  padding:10px 14px;
  cursor:pointer;
  font-weight:800;
}
.nk-customer-lang-current span,
.nk-customer-lang-option span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:26px;
  height:22px;
  border-radius:7px;
  background:#f3f4f6;
  color:#111827;
  font-size:11px;
  font-weight:900;
}
.nk-customer-lang-current strong{
  font-size:13px;
}
.nk-customer-lang-menu{
  position:absolute;
  right:0;
  bottom:calc(100% + 10px);
  width:190px;
  display:none;
  flex-direction:column;
  gap:6px;
  padding:8px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  background:#ffffff;
  box-shadow:0 18px 48px rgba(15,23,42,.18);
}
.nk-customer-lang-switcher.is-open .nk-customer-lang-menu{
  display:flex;
}
.nk-customer-lang-option{
  display:flex;
  align-items:center;
  gap:9px;
  border:0;
  border-radius:13px;
  background:#fff;
  padding:9px 10px;
  color:#111827;
  cursor:pointer;
  text-align:left;
}
.nk-customer-lang-option:hover,
.nk-customer-lang-option.is-active{
  background:#f3f6fb;
}
.nk-customer-lang-option strong{
  font-size:13px;
  font-weight:800;
}
@media(max-width:640px){
  .nk-customer-lang-switcher{
    right:12px;
    bottom:12px;
  }
  .nk-customer-lang-current{
    padding:9px 12px;
  }
  .nk-customer-lang-menu{
    width:175px;
  }
}


/* Nordkeys sidebar active tab colors */
.nk-saas-nav a.is-active,
.nk-saas-nav a[aria-current="page"],
.nk-saas-nav .is-active > a,
.nk-saas-nav a.current,
.nk-saas-sidebar .nk-saas-nav a.is-active{
  background: #f2f6fd !important;
  color: #286ffe !important;
  border-color: #f2f6fd !important;
}
.nk-saas-nav a.is-active .nk-saas-nav-icon,
.nk-saas-nav a[aria-current="page"] .nk-saas-nav-icon,
.nk-saas-nav .is-active > a .nk-saas-nav-icon,
.nk-saas-nav a.current .nk-saas-nav-icon,
.nk-saas-sidebar .nk-saas-nav a.is-active .nk-saas-nav-icon{
  color: #286ffe !important;
  background: #f2f6fd !important;
  border-color: #f2f6fd !important;
}
.nk-saas-nav a.is-active .nk-saas-nav-label,
.nk-saas-nav a[aria-current="page"] .nk-saas-nav-label,
.nk-saas-nav .is-active > a .nk-saas-nav-label,
.nk-saas-nav a.current .nk-saas-nav-label,
.nk-saas-sidebar .nk-saas-nav a.is-active .nk-saas-nav-label{
  color: #286ffe !important;
}
.nk-saas-nav a.is-active svg,
.nk-saas-nav a[aria-current="page"] svg,
.nk-saas-nav .is-active > a svg,
.nk-saas-nav a.current svg,
.nk-saas-sidebar .nk-saas-nav a.is-active svg{
  color: #286ffe !important;
  fill: currentColor !important;
}
.nk-saas-nav a.is-active::before,
.nk-saas-nav a[aria-current="page"]::before,
.nk-saas-sidebar .nk-saas-nav a.is-active::before{
  background: #286ffe !important;
}


/* Nordkeys custom sidebar SVG icons */
.nk-saas-nav-icon--custom{
  background: transparent !important;
  border: 0 !important;
  color: inherit !important;
  padding: 0 !important;
}
.nk-saas-nav-icon--custom img{
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  object-fit: contain !important;
  filter: none !important;
}
.nk-saas-nav a.is-active .nk-saas-nav-icon--custom,
.nk-saas-nav a[aria-current="page"] .nk-saas-nav-icon--custom,
.nk-saas-nav .is-active > a .nk-saas-nav-icon--custom,
.nk-saas-sidebar .nk-saas-nav a.is-active .nk-saas-nav-icon--custom{
  background: transparent !important;
  border-color: transparent !important;
  color: #286ffe !important;
}


/* v468 extras public logo: use Business Settings logo and display it as a circle */
.nk-extras-public-logo{padding:0 0 18px !important;}
.nk-extras-public-logo img{
  width:118px !important;
  height:118px !important;
  max-width:118px !important;
  max-height:118px !important;
  border-radius:999px !important;
  object-fit:cover !important;
  background:#fff !important;
  box-shadow:0 12px 32px rgba(15,23,42,.12) !important;
}
@media(max-width:680px){
  .nk-extras-public-logo img{width:98px !important;height:98px !important;max-width:98px !important;max-height:98px !important;}
}

/* Recent activity cancelled bookings */
.nk-host-tag--red{background:#fff0f0;color:#ef3f4b;}
.nk-host-source-icon--cancelled{background:#fff0f0;border-color:#ffd4d8;}
.nk-host-source-icon--cancelled img{width:22px;height:22px;object-fit:contain;}


/* v181 mobile: pricing popup title spacing + scrollable sidebar drawer */
@media (max-width: 700px) {
  .nk-pricing-sync-modal,
  .nk-pricing-sync-guard-modal,
  .nk-pricing-direct-sync-popup {
    padding: 14px !important;
    align-items: center !important;
    place-items: center !important;
  }

  .nk-pricing-sync-modal-card,
  .nk-pricing-sync-guard-card,
  .nk-pricing-direct-sync-popup-card {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    padding: 28px 24px 24px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;
  }

  .nk-pricing-sync-modal-card h2,
  .nk-pricing-sync-guard-card h2,
  .nk-pricing-direct-sync-popup-card h2 {
    padding-right: 58px !important;
    font-size: 25px !important;
    line-height: 1.12 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .nk-pricing-sync-close,
  .nk-pricing-sync-guard-close,
  .nk-pricing-direct-sync-popup-close {
    top: 22px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    z-index: 2 !important;
  }

  .nk-pricing-sync-actions,
  .nk-pricing-sync-guard-actions,
  .nk-pricing-direct-sync-popup-actions {
    justify-content: stretch !important;
  }

  .nk-pricing-sync-actions .button,
  .nk-pricing-sync-guard-actions .button,
  .nk-pricing-direct-sync-popup-actions .button,
  .nk-pricing-sync-guard-actions form,
  .nk-pricing-direct-sync-popup-actions form {
    width: 100% !important;
  }

  body.nk-saas-body .nk-saas-sidebar {
    max-height: calc(100dvh - 20px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.nk-saas-body .nk-saas-sidebar .nk-saas-nav {
    flex: 0 0 auto !important;
  }

  body.nk-saas-body .nk-saas-sidebar-footer {
    flex: 0 0 auto !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 390px) {
  .nk-pricing-sync-modal-card h2,
  .nk-pricing-sync-guard-card h2,
  .nk-pricing-direct-sync-popup-card h2 {
    font-size: 22px !important;
    padding-right: 54px !important;
  }

  .nk-pricing-sync-modal-card,
  .nk-pricing-sync-guard-card,
  .nk-pricing-direct-sync-popup-card {
    padding: 26px 20px 22px !important;
  }
}



/* v445 mobile notification popup close/position fix */
@media (max-width: 720px) {
  details.nk-saas-notification-menu > .nk-saas-notification-popover {
    position: fixed !important;
    top: 118px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(60vh, 520px) !important;
    overflow: auto !important;
    z-index: 10000 !important;
  }

  .nk-saas-notification-popover:before {
    display: none !important;
  }

  .nk-saas-notification-close {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    touch-action: manipulation !important;
  }
}



/* v185 mobile property/direct booking editor fallback */
@media (max-width: 700px) {
  body.nk-saas-body .rp-wrap,
  body.nk-saas-body .rp-shell,
  body.nk-saas-body .rp-shell main,
  body.nk-saas-body #rp-property-form,
  body.nk-saas-body #rp-property-form .rp-card,
  body.nk-saas-body #rp-property-form .rp-grid,
  body.nk-saas-body #rp-property-form .rp-field,
  body.nk-saas-body #rp-property-form .rp-field-surface {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  body.nk-saas-body #rp-property-form .rp-card {
    padding: 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 16px !important;
  }

  body.nk-saas-body #rp-property-form .rp-grid,
  body.nk-saas-body #rp-property-form .rp-grid--halves,
  body.nk-saas-body #rp-property-form .rp-grid--thirds {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.nk-saas-body #rp-property-form .rp-col-12,
  body.nk-saas-body #rp-property-form .rp-col-8,
  body.nk-saas-body #rp-property-form .rp-col-6,
  body.nk-saas-body #rp-property-form .rp-col-4,
  body.nk-saas-body #rp-property-form .rp-col-3,
  body.nk-saas-body #rp-property-form .rp-col-2 {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
  }

  body.nk-saas-body #rp-property-form input,
  body.nk-saas-body #rp-property-form textarea,
  body.nk-saas-body #rp-property-form select,
  body.nk-saas-body #rp-property-form label,
  body.nk-saas-body #rp-property-form .rp-help {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.nk-saas-body #rp-property-form .rp-inline-fields {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}



/* v391 mobile reservations eye/details popup fallback */
@media (max-width: 720px) {
  #lbc-reservation-view-modal {
    align-items: flex-start !important;
    justify-content: center !important;
    padding: max(10px, env(safe-area-inset-top, 0px)) 10px calc(120px + env(safe-area-inset-bottom, 0px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  #lbc-reservation-view-modal .lbc-modal-content {
    width: min(100%, 560px) !important;
    max-width: calc(100vw - 20px) !important;
    max-height: none !important;
    height: auto !important;
    margin: 0 auto !important;
    overflow: visible !important;
    padding: 18px 16px 16px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  #lbc-reservation-view-body,
  #lbc-reservation-view-body * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
  }

  #lbc-reservation-view-body table,
  #lbc-reservation-view-body tbody,
  #lbc-reservation-view-body tr,
  #lbc-reservation-view-body th,
  #lbc-reservation-view-body td {
    display: block !important;
    width: 100% !important;
  }
}



/* v188 gallery desktop wrap fallback */
body.nk-saas-body #rp-gallery {
  overflow: visible !important;
}
body.nk-saas-body #rp_thumbs.rp-thumbs {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(88px, 88px)) !important;
  justify-content: start !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  white-space: normal !important;
  gap: 12px !important;
}
body.nk-saas-body #rp_thumbs .rp-thumb-item {
  width: 88px !important;
  height: 88px !important;
  max-width: 88px !important;
  min-width: 88px !important;
  flex: 0 0 88px !important;
  float: none !important;
  margin: 0 !important;
}
@media (max-width: 700px) {
  body.nk-saas-body #rp_thumbs.rp-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  body.nk-saas-body #rp_thumbs .rp-thumb-item {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }
}



/* v189 desktop accommodation editor fit fallback */
@media (min-width: 701px) {
  body.nk-saas-body .rp-wrap,
  body.nk-saas-body .rp-shell,
  body.nk-saas-body .rp-shell main,
  body.nk-saas-body #rp-property-form,
  body.nk-saas-body #rp-property-form .rp-card,
  body.nk-saas-body #rp-property-form .rp-grid,
  body.nk-saas-body #rp-property-form .rp-field,
  body.nk-saas-body #rp-property-form .rp-field-surface {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.nk-saas-body .rp-shell main,
  body.nk-saas-body #rp-property-form .rp-card {
    overflow-x: hidden !important;
  }

  body.nk-saas-body #rp-property-form .rp-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  body.nk-saas-body #rp-property-form .rp-grid--thirds {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.nk-saas-body #rp-property-form .rp-grid--halves {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.nk-saas-body #rp-property-form .rp-grid > *,
  body.nk-saas-body #rp-property-form .rp-grid--halves > *,
  body.nk-saas-body #rp-property-form .rp-grid--thirds > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.nk-saas-body #rp-property-form input,
  body.nk-saas-body #rp-property-form textarea,
  body.nk-saas-body #rp-property-form select,
  body.nk-saas-body #rp-property-form label,
  body.nk-saas-body #rp-property-form .rp-help,
  body.nk-saas-body #rp-property-form .description {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.nk-saas-body #rp-property-form textarea {
    overflow-x: hidden !important;
    white-space: pre-wrap !important;
  }

  body.nk-saas-body #rp-property-form .rp-inline-fields {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.nk-saas-body #rp-property-form .rp-inline-fields > *,
  body.nk-saas-body #rp-property-form .rp-inline-fields--compact input,
  body.nk-saas-body #rp-property-form .rp-inline-fields--compact select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  body.nk-saas-body #rp-property-form .rp-toggle-text {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 701px) and (max-width: 1280px) {
  body.nk-saas-body #rp-property-form .rp-grid--thirds {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  body.nk-saas-body #rp-property-form .rp-grid--thirds,
  body.nk-saas-body #rp-property-form .rp-grid--halves {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* v190 accommodation editor text wrapping fallback */
body.nk-saas-body #rp-property-form textarea,
body.nk-saas-body #rp-property-form textarea.code,
body.nk-saas-body #rp-property-form .large-text,
body.nk-saas-body #rp-property-form .regular-text.rp-short-description-textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: block !important;
  white-space: pre-wrap !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

body.nk-saas-body #rp-property-form .rp-field-surface textarea,
body.nk-saas-body #rp-property-form .rp-field-surface textarea.code,
body.nk-saas-body #rp-property-form .rp-field-surface .large-text {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  resize: vertical !important;
  line-height: 1.45 !important;
}

body.nk-saas-body #rp-property-form .rp-short-description-textarea {
  min-height: 54px !important;
}

body.nk-saas-body #rp-property-form textarea[name="rp_long"] {
  min-height: 150px !important;
}

body.nk-saas-body #rp-property-form .rp-help,
body.nk-saas-body #rp-property-form .description,
body.nk-saas-body #rp-property-form .rp-direct-booking-settings-note p,
body.nk-saas-body #rp-property-form label,
body.nk-saas-body #rp-property-form .rp-toggle-text {
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  max-width: 100% !important;
}



/* v192 Property Settings layout correction fallback */
body.nk-saas-body #rp-property-form .rp-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
body.nk-saas-body #rp-property-form .rp-grid--halves {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
body.nk-saas-body #rp-property-form .rp-grid--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
body.nk-saas-body #rp-property-form .rp-col-12 { grid-column: span 12 !important; }
body.nk-saas-body #rp-property-form .rp-col-8  { grid-column: span 8 !important; }
body.nk-saas-body #rp-property-form .rp-col-6  { grid-column: span 6 !important; }
body.nk-saas-body #rp-property-form .rp-col-4  { grid-column: span 4 !important; }
body.nk-saas-body #rp-property-form .rp-col-3  { grid-column: span 3 !important; }
body.nk-saas-body #rp-property-form .rp-col-2  { grid-column: span 2 !important; }
body.nk-saas-body #rp-property-form .rp-inline-fields {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
}
body.nk-saas-body #rp-property-form .rp-inline-fields > * {
  flex: 1 1 160px !important;
  min-width: 0 !important;
}
body.nk-saas-body #rp-property-form .rp-inline-fields--compact input {
  flex: 0 0 112px !important;
  max-width: 112px !important;
  width: 112px !important;
}
body.nk-saas-body #rp-property-form .rp-inline-fields--compact select {
  flex: 0 0 128px !important;
  max-width: 128px !important;
  width: 128px !important;
}
body.nk-saas-body #rp-property-form textarea,
body.nk-saas-body #rp-property-form textarea.code,
body.nk-saas-body #rp-property-form textarea.large-text,
body.nk-saas-body #rp-property-form textarea.rp-short-description-textarea {
  white-space: pre-wrap !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  overflow-x: hidden !important;
  font-family: inherit !important;
}
@media (max-width: 1320px) {
  body.nk-saas-body #rp-property-form .rp-col-3,
  body.nk-saas-body #rp-property-form .rp-col-4 { grid-column: span 6 !important; }
}
@media (max-width: 1120px) {
  body.nk-saas-body #rp-property-form .rp-col-8,
  body.nk-saas-body #rp-property-form .rp-col-6,
  body.nk-saas-body #rp-property-form .rp-col-4,
  body.nk-saas-body #rp-property-form .rp-col-3,
  body.nk-saas-body #rp-property-form .rp-col-2 { grid-column: span 12 !important; }
}
@media (max-width: 900px) {
  body.nk-saas-body #rp-property-form .rp-grid--halves,
  body.nk-saas-body #rp-property-form .rp-grid--thirds { grid-template-columns: minmax(0, 1fr) !important; }
}
@media (max-width: 700px) {
  body.nk-saas-body #rp-property-form .rp-grid,
  body.nk-saas-body #rp-property-form .rp-grid--halves,
  body.nk-saas-body #rp-property-form .rp-grid--thirds { grid-template-columns: minmax(0, 1fr) !important; }
  body.nk-saas-body #rp-property-form .rp-col-12,
  body.nk-saas-body #rp-property-form .rp-col-8,
  body.nk-saas-body #rp-property-form .rp-col-6,
  body.nk-saas-body #rp-property-form .rp-col-4,
  body.nk-saas-body #rp-property-form .rp-col-3,
  body.nk-saas-body #rp-property-form .rp-col-2 { grid-column: 1 / -1 !important; }
  body.nk-saas-body #rp-property-form .rp-inline-fields,
  body.nk-saas-body #rp-property-form .rp-inline-fields--compact {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
  body.nk-saas-body #rp-property-form .rp-inline-fields > *,
  body.nk-saas-body #rp-property-form .rp-inline-fields--compact input,
  body.nk-saas-body #rp-property-form .rp-inline-fields--compact select {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }
}


/* v193 Property Settings compact fields fallback */
body.nk-saas-body #rp-property-form .rp-field-surface {
  padding: 10px 12px !important;
  border-radius: 14px !important;
}
body.nk-saas-body #rp-property-form .rp-card input[type="text"],
body.nk-saas-body #rp-property-form .rp-card input[type="number"],
body.nk-saas-body #rp-property-form .rp-card input[type="email"],
body.nk-saas-body #rp-property-form .rp-card input[type="url"],
body.nk-saas-body #rp-property-form .rp-card select {
  min-height: 36px !important;
  height: 36px !important;
  padding: 7px 10px !important;
  line-height: 1.25 !important;
}
body.nk-saas-body #rp-property-form .rp-field-surface input[type="text"],
body.nk-saas-body #rp-property-form .rp-field-surface input[type="number"],
body.nk-saas-body #rp-property-form .rp-field-surface input[type="email"],
body.nk-saas-body #rp-property-form .rp-field-surface input[type="url"],
body.nk-saas-body #rp-property-form .rp-field-surface select {
  min-height: 24px !important;
  height: auto !important;
  padding: 0 !important;
}
body.nk-saas-body #rp-property-form textarea[name="rp_short"],
body.nk-saas-body #rp-property-form .rp-short-description-textarea {
  min-height: 46px !important;
  height: 46px !important;
}
body.nk-saas-body #rp-property-form textarea[name="rp_long"] {
  min-height: 112px !important;
  height: 112px !important;
}
body.nk-saas-body #rp-property-form .rp-help,
body.nk-saas-body #rp-property-form .description {
  margin-top: 2px !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}


/* v194 Safari fix: Business Settings Booking & Cancellation Terms layout */
body.nk-saas-view-business-settings #rp-terms .rp-grid.rp-grid--halves {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start !important;
}
body.nk-saas-view-business-settings #rp-terms .rp-grid.rp-grid--halves > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
body.nk-saas-view-business-settings #rp-terms .rp-col-12 { grid-column: span 12 !important; }
body.nk-saas-view-business-settings #rp-terms .rp-col-8  { grid-column: span 8 !important; }
body.nk-saas-view-business-settings #rp-terms .rp-col-6  { grid-column: span 6 !important; }
body.nk-saas-view-business-settings #rp-terms .rp-col-4  { grid-column: span 4 !important; }
body.nk-saas-view-business-settings #rp-terms .rp-col-3  { grid-column: span 3 !important; }
body.nk-saas-view-business-settings #rp-terms .rp-col-2  { grid-column: span 2 !important; }

body.nk-saas-view-business-settings #rp-terms .rp-field-surface > label {
  display: block !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  line-height: 1.25 !important;
}
body.nk-saas-view-business-settings #rp-terms input[name="rp_terms_checkin_time"],
body.nk-saas-view-business-settings #rp-terms input[name="rp_terms_checkout_time"] {
  display: block !important;
  width: 100% !important;
  min-width: 96px !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}
@media (max-width: 1320px) {
  body.nk-saas-view-business-settings #rp-terms .rp-col-3,
  body.nk-saas-view-business-settings #rp-terms .rp-col-4 {
    grid-column: span 6 !important;
  }
}
@media (max-width: 900px) {
  body.nk-saas-view-business-settings #rp-terms .rp-grid.rp-grid--halves {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  body.nk-saas-view-business-settings #rp-terms .rp-col-12,
  body.nk-saas-view-business-settings #rp-terms .rp-col-8,
  body.nk-saas-view-business-settings #rp-terms .rp-col-6,
  body.nk-saas-view-business-settings #rp-terms .rp-col-4,
  body.nk-saas-view-business-settings #rp-terms .rp-col-3,
  body.nk-saas-view-business-settings #rp-terms .rp-col-2 {
    grid-column: 1 / -1 !important;
  }
}


/* v195 phone country code required fallback */
body.nk-saas-view-business-settings #rp_company_phone:invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .10) !important;
}


/* v196 show required dot on General settings submenu items */
.nk-saas-nav-submenu--general-settings .nk-saas-required-dot {
  margin-left: 6px;
  width: 14px;
  height: 14px;
  font-size: 9px;
  vertical-align: middle;
}

/* OTA modification recent activity icon */
.nk-host-source-icon--modified{background:#eef6ff!important;}

/* Recent activity rows open details modal */
.nk-host-activity-click-row{cursor:pointer;}
.nk-host-activity-click-row:hover{background:#f8fbff;}


/* Recent activity details popup mobile fix */
@media (max-width: 720px){
  .nk-host-activity-modal{
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    padding: 14px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }
  .nk-host-activity-modal[hidden]{
    display: none !important;
  }
  .nk-host-activity-modal-card{
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100vh - 28px) !important;
    margin: 0 !important;
    border-radius: 18px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    padding: 22px 18px 18px !important;
  }
  .nk-host-activity-modal-close{
    position: sticky !important;
    top: 0 !important;
    margin-left: auto !important;
    z-index: 2 !important;
  }
  .nk-host-activity-modal-body{
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
  .nk-host-activity-modal-line{
    display: block !important;
    max-width: 100% !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #edf2f7 !important;
  }
  .nk-host-activity-modal-line strong{
    display: block !important;
    margin-bottom: 3px !important;
  }
  .nk-host-activity-modal-line span{
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}


/* Admin-only dashboard menu items: uppercase red */
body.nk-saas-body .nk-saas-sidebar a[href*="view=reservation-log"] .nk-saas-nav-label,
body.nk-saas-body .nk-saas-sidebar a[href*="view=system-health"] .nk-saas-nav-label,
body.nk-saas-body .nk-saas-sidebar a[href*="view=aiosell"] .nk-saas-nav-label,
body.nk-saas-body .nk-saas-sidebar a[href*="/otacheck"] .nk-saas-nav-label{
  color:#dc2626 !important;
  text-transform:uppercase !important;
  font-weight:800 !important;
}
body.nk-saas-body .nk-saas-sidebar a[href*="view=reservation-log"] svg,
body.nk-saas-body .nk-saas-sidebar a[href*="view=system-health"] svg,
body.nk-saas-body .nk-saas-sidebar a[href*="view=aiosell"] svg,
body.nk-saas-body .nk-saas-sidebar a[href*="/otacheck"] svg{
  color:#dc2626 !important;
  stroke:#dc2626 !important;
}
body.nk-saas-body .nk-saas-sidebar a[href*="view=reservation-log"].is-active,
body.nk-saas-body .nk-saas-sidebar a[href*="view=system-health"].is-active,
body.nk-saas-body .nk-saas-sidebar a[href*="view=aiosell"].is-active,
body.nk-saas-body .nk-saas-sidebar a[href*="/otacheck"].is-active{
  background:#fff1f2 !important;
}


/* Sidebar logout button */
.nk-saas-sidebar-logout{
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  margin-top:12px;
  padding:10px 12px;
  border:1px solid #fee2e2;
  border-radius:12px;
  background:#fff7f7;
  color:#dc2626 !important;
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  text-decoration:none !important;
}
.nk-saas-sidebar-logout:hover{
  background:#fee2e2;
  color:#b91c1c !important;
}
.nk-saas-sidebar-logout .dashicons{
  width:18px;
  height:18px;
  font-size:18px;
  line-height:18px;
  flex:0 0 18px;
}
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout span:last-child,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout span:last-child{
  display:none;
}
html.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout{
  padding:10px;
}
@media (max-width:1024px){
  html.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout span:last-child,
  body.nk-saas-sidebar-collapsed .nk-saas-sidebar-logout span:last-child{
    display:inline;
  }
  body.nk-saas-body .nk-saas-sidebar-footer{
    padding-bottom:18px !important;
  }
  body.nk-saas-body .nk-saas-sidebar-logout{
    margin-top:14px;
    min-height:44px;
  }
}


/* Mobile/sidebar logout button color fix */
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  margin-top:12px !important;
  padding:11px 12px !important;
  border:1px solid #dc2626 !important;
  border-radius:12px !important;
  background:#dc2626 !important;
  color:#ffffff !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .dashicons{
  color:#ffffff !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus{
  background:#b91c1c !important;
  border-color:#b91c1c !important;
  color:#ffffff !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover .dashicons,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus .dashicons{
  color:#ffffff !important;
}


/* Mobile/sidebar logout button final white style */
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  margin-top:12px !important;
  padding:11px 12px !important;
  border:1px solid #d8e0ed !important;
  border-radius:12px !important;
  background:#ffffff !important;
  color:#111827 !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  box-shadow:0 6px 14px rgba(17,24,39,0.06) !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .dashicons{
  color:#111827 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus{
  background:#f8fafc !important;
  border-color:#cbd5e1 !important;
  color:#111827 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus span,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover .dashicons,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus .dashicons{
  color:#111827 !important;
}


/* Mobile/sidebar logout text visibility final fix */
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout,
html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer .nk-saas-sidebar-logout{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  min-height:44px !important;
  margin-top:12px !important;
  padding:11px 12px !important;
  border:1px solid #d8e0ed !important;
  border-radius:12px !important;
  background:#ffffff !important;
  color:#111827 !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  box-shadow:0 6px 14px rgba(17,24,39,0.06) !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-label,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-icon,
html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-label,
html.nk-saas-sidebar-collapsed body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-icon,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-label,
body.nk-saas-sidebar-collapsed .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-icon{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#111827 !important;
  opacity:1 !important;
  visibility:visible !important;
  text-indent:0 !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  width:auto !important;
  height:auto !important;
  margin:0 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-icon{
  font-size:16px !important;
  font-weight:900 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus{
  background:#f8fafc !important;
  border-color:#cbd5e1 !important;
  color:#111827 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover .nk-saas-sidebar-logout-label,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus .nk-saas-sidebar-logout-label,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:hover .nk-saas-sidebar-logout-icon,
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout:focus .nk-saas-sidebar-logout-icon{
  color:#111827 !important;
}


/* Logout button without icon */
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout{
  gap:0 !important;
}
body.nk-saas-body .nk-saas-sidebar-footer .nk-saas-sidebar-logout .nk-saas-sidebar-logout-icon{
  display:none !important;
}


/* Fix Booking & Cancellation Terms required confirmation checkbox size */
body.nk-saas-view-business-settings #rp-terms .rp-confirm-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}
body.nk-saas-view-business-settings #rp-terms .rp-confirm-row input[type="checkbox"] {
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  transform: scale(1.15) !important;
  transform-origin: top left !important;
  accent-color: #1677ff !important;
}
body.nk-saas-view-business-settings #rp-terms .rp-confirm-row > span {
  display: block !important;
  line-height: 1.45 !important;
}


/* Public extras shown on search and checkout */
.rp-public-extras{max-width:1200px;margin:34px auto 0;padding:0 0 4px}
.rp-public-extras__head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 0 16px}
.rp-public-extras__head h2{margin:0;font-size:26px;line-height:1.2;color:#17213a}
.rp-public-extras__head a{font-weight:800;color:#2563eb;text-decoration:none}
.rp-public-extras__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.rp-public-extra-card{background:#fff;border:1px solid #dbe4f0;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.06);display:flex;flex-direction:column}
.rp-public-extra-card__img{height:150px;background:#f1f5f9;overflow:hidden}
.rp-public-extra-card__img img{width:100%;height:100%;object-fit:cover;display:block}
.rp-public-extra-card__body{padding:16px;display:grid;gap:8px}
.rp-public-extra-card__body h3{margin:0;font-size:18px;color:#17213a}
.rp-public-extra-card__body p{margin:0;color:#64748b;line-height:1.45}
.rp-public-extra-card__body strong{color:#17213a}
.rp-extra-check{display:flex;align-items:center;gap:10px;margin-top:4px;border:1px solid #dbe4f0;border-radius:12px;padding:10px 12px;background:#f8fafc;font-weight:800;color:#17213a}
.rp-extra-check input{width:18px;height:18px;accent-color:#2563eb}
.rp-public-extras--confirmation{margin:20px 0 20px;padding:0}
.rp-public-extras--confirmation .rp-public-extras__head h2{font-size:20px}
.rp-public-extras--confirmation .rp-public-extras__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.rp-public-extras--confirmation .rp-public-extra-card{box-shadow:0 12px 30px rgba(15,23,42,.06)}

.rp-public-extras--confirmation .rp-public-extra-card__img{height:150px}
@media(max-width:900px){.rp-public-extras__grid{grid-template-columns:1fr 1fr}.rp-public-extras--confirmation .rp-public-extras__grid{grid-template-columns:1fr 1fr}.rp-public-extras--confirmation .rp-public-extra-card__img{height:150px}}
@media(max-width:640px){.rp-public-extras__grid{grid-template-columns:1fr}}


/* Embedded Extras & Services on booking confirmation page: same interface as public extras page */
.rp-confirmation .nk-extras-embedded{margin-top:28px}
.rp-confirmation .nk-extras-embedded .nk-extras-hero{margin-top:0}
.rp-confirmation .nk-extras-embedded .nk-extras-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.rp-confirmation .nk-extras-embedded .nk-extra-card{background:#fff;border:1px solid #e5eaf1;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.06)}
.rp-confirmation .nk-extras-embedded .nk-extra-card-img{height:170px;background-size:cover;background-position:center}
.rp-confirmation .nk-extras-embedded .nk-extra-card-body{padding:18px;display:grid;gap:10px}
.rp-confirmation .nk-extras-embedded .nk-extra-chip{display:inline-flex;width:max-content;border-radius:999px;background:#eef4ff;color:#2563eb;padding:5px 10px;font-size:12px;font-weight:800}
.rp-confirmation .nk-extras-embedded .nk-extra-card-body h2{margin:0;font-size:20px;color:#17213a}
.rp-confirmation .nk-extras-embedded .nk-extra-card-body p{margin:0;color:#64748b;line-height:1.45}
.rp-confirmation .nk-extras-embedded .nk-extra-price{font-size:18px;color:#17213a}
.rp-confirmation .nk-extras-embedded .nk-extra-price small{font-size:12px;color:#64748b}
.rp-confirmation .nk-extras-embedded .nk-extra-submit{display:inline-flex;align-items:center;justify-content:center;min-height:42px;border-radius:12px;background:#2563eb;color:#fff!important;text-decoration:none!important;font-weight:800;padding:0 16px;border:0;cursor:pointer}
.rp-confirmation .nk-extras-embedded .nk-extra-submit:hover{background:#1d4ed8}
.nk-extra-reservation-modal[hidden]{display:none!important}
.nk-extra-reservation-modal{position:fixed;inset:0;z-index:100000}
.nk-extra-reservation-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.55)}
.nk-extra-reservation-modal-card{position:relative;margin:8vh auto 0;max-width:520px;width:calc(100% - 32px);background:#fff;border-radius:22px;padding:24px;box-shadow:0 25px 80px rgba(15,23,42,.28)}
.nk-extra-reservation-modal-close{position:absolute;top:12px;right:14px;border:0;background:#fff;font-size:28px;line-height:1;cursor:pointer;color:#17213a}
.nk-extra-reservation-modal-card h2{margin:0 0 8px;color:#17213a}
.nk-extra-muted{color:#64748b;margin:0 0 16px}
.nk-extra-reservation-modal-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:16px 0}
.nk-extra-modal-btn{border:1px solid #dbe4f0;border-radius:14px;min-height:48px;font-weight:800;cursor:pointer}
.nk-extra-modal-btn-light{background:#fff;color:#17213a}
.nk-extra-modal-btn-dark{background:#17213a;color:#fff}
.nk-extra-reservation-modal-form{display:grid;gap:12px}
.nk-extra-reservation-modal-form[hidden]{display:none!important}
.nk-extra-reservation-modal-form label{display:grid;gap:6px;font-weight:800;color:#17213a}
.nk-extra-reservation-modal-form input{border:1px solid #dbe4f0;border-radius:12px;padding:12px 14px}
.nk-extra-reservation-modal-error{border:1px solid #fecaca;background:#fff1f2;color:#991b1b;border-radius:12px;padding:10px;font-weight:700}
body.nk-extra-modal-open{overflow:hidden}
@media(max-width:900px){.rp-confirmation .nk-extras-embedded .nk-extras-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.rp-confirmation .nk-extras-embedded .nk-extras-grid{grid-template-columns:1fr}.nk-extra-reservation-modal-actions{grid-template-columns:1fr}}


/* vNext: Embedded extras on search and booking confirmation use the same Extras & Services interface */
.nk-extras-embedded{margin-top:34px}
.nk-extras-embedded .nk-extras-hero{margin:0 0 18px;padding:0;background:transparent;box-shadow:none;border:0}
.nk-extras-embedded .nk-extras-hero h1{margin:0;font-size:26px;line-height:1.2;color:#17213a}
.nk-extras-embedded .nk-extras-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important}
.nk-extras-embedded .nk-extra-card{background:#fff!important;border:1px solid #e5eaf1!important;border-radius:18px!important;overflow:hidden!important;box-shadow:0 12px 30px rgba(15,23,42,.06)!important;display:flex!important;flex-direction:column!important}
.nk-extras-embedded .nk-extra-card-img{height:170px!important;min-height:0!important;aspect-ratio:16/9!important;background-size:cover!important;background-position:center!important}
.nk-extras-embedded .nk-extra-card-body{padding:18px!important;display:grid!important;gap:10px!important}
.nk-extras-embedded .nk-extra-chip{display:inline-flex!important;width:max-content!important;border-radius:999px!important;background:#eef4ff!important;color:#2563eb!important;padding:5px 10px!important;font-size:12px!important;font-weight:800!important}
.nk-extras-embedded .nk-extra-card-body h2{margin:0!important;font-size:20px!important;color:#17213a!important}
.nk-extras-embedded .nk-extra-card-body p{margin:0!important;color:#64748b!important;line-height:1.45!important}
.nk-extras-embedded .nk-extra-price{font-size:18px!important;color:#17213a!important}
.nk-extras-embedded .nk-extra-price small{font-size:12px!important;color:#64748b!important}
.nk-extras-embedded .nk-extra-submit{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:42px!important;border-radius:12px!important;background:#0f1e4a!important;color:#fff!important;text-decoration:none!important;font-weight:800!important;padding:0 16px!important;border:0!important;cursor:pointer!important;box-shadow:none!important}
.nk-extras-embedded .nk-extra-submit:hover{background:#0b1738!important;color:#fff!important}
.nk-extras-embedded .nk-extra-submit.is-inquiry{background:#0f1e4a!important;color:#fff!important}
.nk-extra-reservation-modal[hidden]{display:none!important}
.nk-extra-reservation-modal{position:fixed;inset:0;z-index:100000}
.nk-extra-reservation-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.55)}
.nk-extra-reservation-modal-card{position:relative;margin:8vh auto 0;max-width:520px;width:calc(100% - 32px);background:#fff;border-radius:22px;padding:24px;box-shadow:0 25px 80px rgba(15,23,42,.28)}
.nk-extra-reservation-modal-close{position:absolute;top:12px;right:14px;border:0;background:#fff;font-size:28px;line-height:1;cursor:pointer;color:#17213a}
.nk-extra-reservation-modal-card h2{margin:0 0 8px;color:#17213a}
.nk-extra-muted{color:#64748b;margin:0 0 16px}
.nk-extra-reservation-modal-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:16px 0}
.nk-extra-modal-btn{border:1px solid #dbe4f0;border-radius:14px;min-height:48px;font-weight:800;cursor:pointer}
.nk-extra-modal-btn-light{background:#fff;color:#17213a}
.nk-extra-modal-btn-dark{background:#17213a;color:#fff}
.nk-extra-reservation-modal-form{display:grid;gap:12px}
.nk-extra-reservation-modal-form[hidden]{display:none!important}
.nk-extra-reservation-modal-form label{display:grid;gap:6px;font-weight:800;color:#17213a}
.nk-extra-reservation-modal-form input{border:1px solid #dbe4f0;border-radius:12px;padding:12px 14px}
.nk-extra-reservation-modal-error{border:1px solid #fecaca;background:#fff1f2;color:#991b1b;border-radius:12px;padding:10px;font-weight:700}
body.nk-extra-modal-open{overflow:hidden}
@media(max-width:900px){.nk-extras-embedded .nk-extras-grid{grid-template-columns:1fr 1fr!important}}
@media(max-width:640px){.nk-extras-embedded .nk-extras-grid{grid-template-columns:1fr!important}.nk-extra-reservation-modal-actions{grid-template-columns:1fr}}


/* Final embedded extras tuning */
.nk-extras-embedded .nk-extras-hero h1{font-size:26px!important}
.nk-extras-embedded .nk-extra-submit{background:#0f1e4a!important;font-size:16px!important;line-height:1.1!important;min-height:42px!important;padding:0 18px!important}
.nk-extras-embedded .nk-extra-submit:hover{background:#0b1738!important}
.nk-extras-embedded .nk-extra-card-img{height:180px!important;aspect-ratio:16/9!important}
.nk-extra-reservation-modal{position:fixed!important;inset:0!important;z-index:99999!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:22px!important}
.nk-extra-reservation-modal[hidden]{display:none!important}
.nk-extra-reservation-modal-backdrop{position:absolute!important;inset:0!important;background:rgba(15,23,42,.48)!important;backdrop-filter:blur(3px)!important}
.nk-extra-reservation-modal-card{position:relative!important;margin:0!important;width:min(760px,calc(100vw - 44px))!important;max-width:none!important;background:#fff!important;border-radius:22px!important;padding:34px 40px!important;box-shadow:0 28px 80px rgba(15,23,42,.28)!important;box-sizing:border-box!important}
.nk-extra-reservation-modal-close{position:absolute!important;right:14px!important;top:12px!important;width:36px!important;height:36px!important;border:0!important;border-radius:999px!important;background:#f1f5f9!important;color:#0f172a!important;font-size:24px!important;line-height:1!important;cursor:pointer!important}
.nk-extra-reservation-modal-card h2{margin:0 0 8px!important;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;font-size:24px!important;font-weight:700!important;color:#0f172a!important}
.nk-extra-reservation-modal-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:16px!important;margin-top:22px!important;margin-bottom:0!important}
.nk-extra-modal-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:58px!important;width:100%!important;border-radius:16px!important;padding:14px 20px!important;font-weight:900!important;font-size:16px!important;text-align:center!important;cursor:pointer!important;text-decoration:none!important;box-shadow:none!important}
.nk-extra-modal-btn-light{background:#ffffff!important;color:#0f172a!important;border:1px solid #d6e0ef!important}
.nk-extra-modal-btn-dark{background:linear-gradient(135deg,#091a45,#0f2c66)!important;color:#ffffff!important;border:1px solid #091a45!important}
.nk-extra-reservation-modal-form{margin-top:22px!important}
@media(max-width:640px){.nk-extra-reservation-modal-card{padding:24px 18px!important}.nk-extra-reservation-modal-actions{grid-template-columns:1fr!important}}


/* Exact Extras & Services popup for embedded extras */
.nk-extras-embedded .nk-extras-hero h1{font-size:24px!important;line-height:1.2!important}
.nk-extras-embedded .nk-extra-submit{background:#0f1e4a!important;font-size:15px!important;line-height:1.1!important;min-height:42px!important;padding:0 18px!important}
.nk-extras-embedded .nk-extra-submit:hover{background:#0b1738!important}
.nk-extras-embedded .nk-extra-card-img{height:180px!important;aspect-ratio:16/9!important}
body.nk-extra-modal-open{overflow:hidden!important}
.nk-extra-reservation-modal[hidden]{display:none!important}
.nk-extra-reservation-modal{position:fixed!important;inset:0!important;z-index:99999!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:22px!important}
.nk-extra-reservation-modal-backdrop{position:absolute!important;inset:0!important;background:rgba(15,23,42,.48)!important;backdrop-filter:blur(3px)!important}
.nk-extra-reservation-modal-card{position:relative!important;width:min(760px,calc(100vw - 44px))!important;max-width:none!important;margin:0!important;background:#fff!important;border-radius:22px!important;box-shadow:0 28px 80px rgba(15,23,42,.28)!important;padding:34px 40px!important;box-sizing:border-box!important}
.nk-extra-reservation-modal-card h2{margin:0 0 8px!important;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;font-size:24px!important;font-weight:700!important;color:#0f172a!important}
.nk-extra-reservation-modal-close{position:absolute!important;right:14px!important;top:12px!important;width:36px!important;height:36px!important;border:0!important;border-radius:999px!important;background:#f1f5f9!important;color:#0f172a!important;font-size:24px!important;line-height:1!important;cursor:pointer!important;padding:0!important}
.nk-extra-reservation-modal-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:16px!important;margin-top:22px!important;margin-bottom:0!important}
.nk-extra-modal-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:58px!important;width:100%!important;border-radius:16px!important;padding:14px 20px!important;font-weight:900!important;font-size:16px!important;text-align:center!important;cursor:pointer!important;text-decoration:none!important;box-shadow:none!important}
.nk-extra-modal-btn-light{background:#ffffff!important;color:#0f172a!important;border:1px solid #d6e0ef!important}
.nk-extra-modal-btn-dark{background:linear-gradient(135deg,#091a45,#0f2c66)!important;color:#ffffff!important;border:1px solid #091a45!important}
.nk-extra-reservation-modal-form{margin-top:22px!important;display:grid!important;gap:12px!important}
.nk-extra-reservation-modal-form[hidden]{display:none!important}
.nk-extra-reservation-modal-form label{display:grid!important;gap:6px!important;font-size:13px!important;font-weight:800!important;color:#475569!important}
.nk-extra-reservation-modal-form input{width:100%!important;border:1px solid #cbd5e1!important;border-radius:12px!important;padding:12px 14px!important;font:inherit!important;color:#0f172a!important;background:#fff!important;box-sizing:border-box!important}
.nk-extra-reservation-modal-form small{color:#64748b!important;line-height:1.45!important}
.nk-extra-reservation-modal-form .nk-extra-submit,
.nk-extra-reservation-modal-form button[type="submit"]{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;min-width:260px!important;min-height:56px!important;border:0!important;border-radius:14px!important;background:linear-gradient(135deg,#091a45,#0f2c66)!important;color:#ffffff!important;font-weight:900!important;font-size:15px!important;text-decoration:none!important;cursor:pointer!important;box-shadow:0 10px 24px rgba(9,26,69,.18)!important;opacity:1!important}
.nk-extra-reservation-modal-form .nk-extra-submit:disabled,
.nk-extra-reservation-modal-form button[type="submit"]:disabled{opacity:.75!important;cursor:wait!important}
.nk-extra-reservation-modal-error{background:#fef2f2!important;border:1px solid #fecaca!important;color:#b91c1c!important;border-radius:12px!important;padding:10px 12px!important;font-weight:800!important;font-size:13px!important}
@media(max-width:640px){.nk-extra-reservation-modal-card{padding:24px 18px!important}.nk-extra-reservation-modal-actions{grid-template-columns:1fr!important}.nk-extra-reservation-modal-form .nk-extra-submit,.nk-extra-reservation-modal-form button[type="submit"]{width:100%!important;min-width:0!important}}


/* vFinal embedded extras popup size match */
.nk-extra-reservation-modal-card{
  width:min(1040px,calc(100vw - 120px))!important;
  max-width:1040px!important;
  padding:42px 80px 78px!important;
  border-radius:40px!important;
  margin:0 auto!important;
}
.nk-extra-reservation-modal-card h2{
  text-align:left!important;
  font-size:46px!important;
  line-height:1.08!important;
  letter-spacing:-.03em!important;
  margin:0 0 22px!important;
  font-weight:900!important;
  color:#101a34!important;
}
.nk-extra-reservation-modal-card .nk-extra-muted{
  text-align:left!important;
  font-size:30px!important;
  line-height:1.25!important;
  margin:0 0 50px!important;
  color:#697894!important;
}
.nk-extra-reservation-modal-close{
  right:28px!important;
  top:26px!important;
  width:72px!important;
  height:72px!important;
  border-radius:24px!important;
  background:#ffffff!important;
  border:2px solid #d7e0ef!important;
  color:#101a34!important;
  font-size:28px!important;
  font-weight:900!important;
}
.nk-extra-reservation-modal-actions{
  grid-template-columns:1fr 1fr!important;
  gap:34px!important;
  margin:0!important;
}
.nk-extra-modal-btn{
  min-height:132px!important;
  border-radius:30px!important;
  font-size:30px!important;
  line-height:1.18!important;
  font-weight:900!important;
  padding:26px 34px!important;
}
.nk-extra-modal-btn-light{
  background:#ffffff!important;
  color:#101a34!important;
  border:2px solid #d7e0ef!important;
}
.nk-extra-modal-btn-dark{
  background:#10285f!important;
  color:#ffffff!important;
  border:2px solid #10285f!important;
}
@media(max-width:900px){
  .nk-extra-reservation-modal-card{
    width:calc(100vw - 44px)!important;
    padding:34px 28px 44px!important;
    border-radius:28px!important;
  }
  .nk-extra-reservation-modal-card h2{font-size:32px!important}
  .nk-extra-reservation-modal-card .nk-extra-muted{font-size:22px!important;margin-bottom:26px!important}
  .nk-extra-reservation-modal-actions{gap:16px!important}
  .nk-extra-modal-btn{min-height:78px!important;font-size:20px!important;border-radius:20px!important}
  .nk-extra-reservation-modal-close{width:54px!important;height:54px!important;border-radius:18px!important}
}
@media(max-width:640px){
  .nk-extra-reservation-modal-card{padding:30px 20px 34px!important}
  .nk-extra-reservation-modal-actions{grid-template-columns:1fr!important}
}


/* vFinal compact embedded extras popup size */
.nk-extra-reservation-modal-card{
  width:min(760px,calc(100vw - 96px))!important;
  max-width:760px!important;
  padding:46px 58px 52px!important;
  border-radius:32px!important;
  margin:0 auto!important;
}
.nk-extra-reservation-modal-card h2{
  text-align:left!important;
  font-size:34px!important;
  line-height:1.1!important;
  letter-spacing:-.025em!important;
  margin:0 0 14px!important;
  font-weight:900!important;
  color:#101a34!important;
}
.nk-extra-reservation-modal-card .nk-extra-muted{
  text-align:left!important;
  font-size:22px!important;
  line-height:1.25!important;
  margin:0 0 34px!important;
  color:#697894!important;
}
.nk-extra-reservation-modal-close{
  right:22px!important;
  top:20px!important;
  width:52px!important;
  height:52px!important;
  border-radius:18px!important;
  background:#ffffff!important;
  border:2px solid #d7e0ef!important;
  color:#101a34!important;
  font-size:22px!important;
  font-weight:900!important;
}
.nk-extra-reservation-modal-actions{
  grid-template-columns:1fr 1fr!important;
  gap:22px!important;
  margin:0!important;
}
.nk-extra-modal-btn{
  min-height:90px!important;
  border-radius:22px!important;
  font-size:22px!important;
  line-height:1.18!important;
  font-weight:900!important;
  padding:18px 24px!important;
}
.nk-extra-modal-btn-light{
  background:#ffffff!important;
  color:#101a34!important;
  border:2px solid #d7e0ef!important;
}
.nk-extra-modal-btn-dark{
  background:#10285f!important;
  color:#ffffff!important;
  border:2px solid #10285f!important;
}
@media(max-width:900px){
  .nk-extra-reservation-modal-card{
    width:calc(100vw - 44px)!important;
    padding:34px 28px 42px!important;
    border-radius:28px!important;
  }
  .nk-extra-reservation-modal-card h2{font-size:30px!important}
  .nk-extra-reservation-modal-card .nk-extra-muted{font-size:20px!important;margin-bottom:26px!important}
  .nk-extra-reservation-modal-actions{gap:16px!important}
  .nk-extra-modal-btn{min-height:76px!important;font-size:19px!important;border-radius:20px!important}
  .nk-extra-reservation-modal-close{width:48px!important;height:48px!important;border-radius:16px!important}
}
@media(max-width:640px){
  .nk-extra-reservation-modal-card{padding:30px 20px 34px!important}
  .nk-extra-reservation-modal-actions{grid-template-columns:1fr!important}
}


/* vFinal smaller embedded extras popup */
.nk-extra-reservation-modal-card{
  width:min(650px,calc(100vw - 96px))!important;
  max-width:650px!important;
  padding:34px 46px 44px!important;
  border-radius:28px!important;
}
.nk-extra-reservation-modal-card h2{
  font-size:28px!important;
  line-height:1.12!important;
  margin:0 0 10px!important;
}
.nk-extra-reservation-modal-card .nk-extra-muted{
  font-size:18px!important;
  line-height:1.25!important;
  margin:0 0 26px!important;
}
.nk-extra-reservation-modal-close{
  right:18px!important;
  top:16px!important;
  width:44px!important;
  height:44px!important;
  border-radius:15px!important;
  font-size:18px!important;
}
.nk-extra-reservation-modal-actions{
  gap:18px!important;
}
.nk-extra-modal-btn{
  min-height:74px!important;
  border-radius:18px!important;
  font-size:18px!important;
  line-height:1.15!important;
  padding:14px 20px!important;
}
@media(max-width:900px){
  .nk-extra-reservation-modal-card{
    width:calc(100vw - 44px)!important;
    padding:30px 24px 36px!important;
    border-radius:24px!important;
  }
  .nk-extra-reservation-modal-card h2{font-size:26px!important}
  .nk-extra-reservation-modal-card .nk-extra-muted{font-size:17px!important;margin-bottom:22px!important}
  .nk-extra-modal-btn{min-height:66px!important;font-size:17px!important;border-radius:17px!important}
}
@media(max-width:640px){
  .nk-extra-reservation-modal-card{padding:28px 18px 32px!important}
  .nk-extra-reservation-modal-actions{grid-template-columns:1fr!important}
}


/* vFinal extras grid/button adjustment */
.nk-extras-public .nk-extras-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.rp-public-extras--search.nk-extras-embedded .nk-extra-submit,
.rp-public-extras--search.nk-extras-embedded .nk-extra-submit.is-inquiry{
  min-width:190px!important;
  font-size:14px!important;
  padding:0 22px!important;
  justify-self:start!important;
}
@media(max-width:1180px){
  .nk-extras-public .nk-extras-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media(max-width:900px){
  .nk-extras-public .nk-extras-grid{
    grid-template-columns:1fr 1fr!important;
  }
}
@media(max-width:640px){
  .nk-extras-public .nk-extras-grid{
    grid-template-columns:1fr!important;
  }
  .rp-public-extras--search.nk-extras-embedded .nk-extra-submit,
  .rp-public-extras--search.nk-extras-embedded .nk-extra-submit.is-inquiry{
    width:100%!important;
    min-width:0!important;
  }
}


/* vFinal public booking footer full-width fix */
.rp-nordkeys-unit-footer{
  display:block!important;
  width:100vw!important;
  max-width:none!important;
  min-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  left:auto!important;
  right:auto!important;
  clear:both!important;
  background:#f4f4f5!important;
  box-sizing:border-box!important;
}
body > .rp-nordkeys-unit-footer{
  margin-left:0!important;
  margin-right:0!important;
  width:100vw!important;
  min-width:100vw!important;
}
.rp-unit-footer-clean-parent{
  overflow:visible!important;
  max-width:none!important;
}

/* v460: mobile layout fixes for Add new extra, Receipts/Invoices and Custom booking links */
@media (max-width: 768px) {
  body.nk-saas-body.nk-saas-view-extras-add,
  body.nk-saas-body.nk-saas-view-receipts,
  body.nk-saas-body.nk-saas-view-custom-booking-link {
    overflow-x: hidden !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add,
  body.nk-saas-body .nk-saas-content--receipts,
  body.nk-saas-body .nk-saas-content--custom-booking-link {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add *,
  body.nk-saas-body .nk-saas-content--receipts *,
  body.nk-saas-body .nk-saas-content--custom-booking-link * {
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  /* Add new extra: make all fields fit the phone width and wrap long helper text */
  body.nk-saas-body .nk-saas-content--extras-add .nk-saas-settings-card,
  body.nk-saas-body .nk-saas-content--extras-add .nk-extra-admin-form {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add .nk-extra-admin-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add .nk-extra-admin-grid > *,
  body.nk-saas-body .nk-saas-content--extras-add .nk-extra-admin-grid .wide,
  body.nk-saas-body .nk-saas-content--extras-add label {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add input,
  body.nk-saas-body .nk-saas-content--extras-add select,
  body.nk-saas-body .nk-saas-content--extras-add textarea,
  body.nk-saas-body .nk-saas-content--extras-add button {
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add input:not([type="checkbox"]):not([type="radio"]),
  body.nk-saas-body .nk-saas-content--extras-add select,
  body.nk-saas-body .nk-saas-content--extras-add textarea {
    width: 100% !important;
    display: block !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add small,
  body.nk-saas-body .nk-saas-content--extras-add .description {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.35 !important;
  }

  body.nk-saas-body .nk-saas-content--extras-add .nk-extra-switch-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Receipts/Invoices: keep the card inside the viewport and make the table scroll inside the card. */
  body.nk-saas-body .nk-saas-content--receipts .wrap,
  body.nk-saas-body .nk-saas-content--receipts .card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.nk-saas-body .nk-saas-content--receipts .card {
    padding: 14px !important;
    margin-top: 12px !important;
    border-radius: 18px !important;
  }

  body.nk-saas-body .nk-saas-content--receipts h1,
  body.nk-saas-body .nk-saas-content--receipts h2,
  body.nk-saas-body .nk-saas-content--receipts p {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.nk-saas-body .nk-saas-content--receipts form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content--receipts form label,
  body.nk-saas-body .nk-saas-content--receipts input[type="search"],
  body.nk-saas-body .nk-saas-content--receipts .button {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content--receipts table.widefat {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap !important;
  }

  body.nk-saas-body .nk-saas-content--receipts table.widefat th,
  body.nk-saas-body .nk-saas-content--receipts table.widefat td {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    min-width: 110px !important;
  }

  body.nk-saas-body .nk-saas-content--receipts table.widefat td:last-child {
    min-width: 160px !important;
  }

  body.nk-saas-body .nk-saas-content--receipts table.widefat td:last-child .button {
    width: 100% !important;
    margin: 4px 0 0 0 !important;
    text-align: center !important;
  }

  /* Created links: stack each link card cleanly and keep meta/url/button inside the card. */
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-page-shell,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-layout,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-card,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-list,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-items,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-page-shell {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-card,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-list {
    padding: 16px !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-layout,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-row,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-item-body,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-meta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-list-head,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-item-head,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-unit,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-detail strong,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-note {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-urlbox,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-urlbox input,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-preview,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-inline-delete,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-inline-delete .link-delete,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-list-head select {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-urlbox {
    padding-left: 12px !important;
    padding-right: 8px !important;
  }

  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-pager {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}


/* v462: Custom booking create form mobile field containment */
@media (max-width: 768px) {
  body.nk-saas-body .nk-saas-content--custom-booking-link {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-page-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-layout,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-card,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-row,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card label {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-card,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card {
    padding: 14px !important;
    border-radius: 14px !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card input,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card select,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 16px !important;
    line-height: 46px !important;
    border-radius: 10px !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-create-card input[type="date"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: #fff !important;
  }
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-help,
  body.nk-saas-body .nk-saas-content--custom-booking-link .nk-custom-booking-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}


/* v494: overview focus empty state illustration */
.nk-host-focus-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  padding:20px 18px !important;
}
.nk-host-focus-empty-image{
  width:240px;
  max-width:100%;
  height:auto;
  display:block;
}
.nk-host-focus-empty-text{
  margin:0;
  font-size:14px;
  font-weight:400;
  color:#344256;
}
@media (max-width:720px){
  .nk-host-focus-empty-image{width:190px;}
}


/* v499: overview greeting fixed SVG wave icon */
.nk-host-greeting-wave{
  display:inline-block;
  width:30px;
  height:30px;
  margin-left:6px;
  vertical-align:-0.14em;
  object-fit:contain;
}


/* Nordkeys login background/title override - v5.44 */
body.nk-saas-body:has(.nk-saas-login-shell) {
  background: #eef1f5 !important;
  margin: 0 !important;
}

body.nk-saas-body .nk-saas-login-shell {
  min-height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  background-color: #eef1f5 !important;
  background-image: url('../images/dashboard-login-background.jpg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

body.nk-saas-body .nk-saas-login-card {
  width: min(520px, 100%) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

body.nk-saas-body .nk-saas-login-card h1 {
  font-weight: 400 !important;
}

body.nk-saas-body .nk-saas-login-card h1,
body.nk-saas-body .nk-saas-login-card h1 strong,
body.nk-saas-body .nk-saas-login-card h1 b {
  font-weight: 400 !important;
}

@media (max-width: 700px) {
  body.nk-saas-body .nk-saas-login-shell {
    padding: 16px !important;
    background-position: center top !important;
  }
}


body.nk-saas-body .nk-saas-property-login {
  min-height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  background-color: #eef1f5 !important;
  background-image: url('../images/dashboard-login-background.jpg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
body.nk-saas-body .nk-saas-property-login .nk-saas-login-card h1 {
  font-weight: 400 !important;
}

/* v420: Financials mobile responsive fix for source breakdown cards */
@media (max-width: 760px){
  body.nk-saas-body .nk-financials-page{
    gap:16px !important;
    padding-left:0 !important;
    padding-right:0 !important;
    overflow-x:hidden !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-summary-grid,
  body.nk-saas-body .nk-financials-page .nk-fin-breakdown-grid{
    grid-template-columns:1fr !important;
    gap:16px !important;
    width:100% !important;
    max-width:100% !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-card,
  body.nk-saas-body .nk-financials-page .nk-fin-value-card,
  body.nk-saas-body .nk-financials-page .nk-fin-note{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-card{
    padding:20px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-card-head{
    margin-bottom:18px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-card h2{
    font-size:18px !important;
    line-height:1.2 !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-card-head p{
    font-size:15px !important;
    line-height:1.35 !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-breakdown-body{
    display:grid !important;
    grid-template-columns:1fr !important;
    justify-items:center !important;
    align-items:start !important;
    gap:18px !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-donut{
    width:170px !important;
    height:170px !important;
    max-width:64vw !important;
    max-height:64vw !important;
    margin:0 auto !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-donut:before{
    inset:32px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-donut span{
    max-width:86px !important;
    text-align:center !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
    font-size:18px !important;
    line-height:1.05 !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-donut small{
    font-size:13px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-list{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row{
    display:grid !important;
    grid-template-columns:12px minmax(0,1fr) auto !important;
    grid-template-areas:
      "dot label percent"
      "dot amount percent" !important;
    column-gap:12px !important;
    row-gap:2px !important;
    align-items:center !important;
    min-height:54px !important;
    padding:8px 0 !important;
    font-size:15px !important;
    line-height:1.15 !important;
    overflow:visible !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-dot{
    grid-area:dot !important;
    width:10px !important;
    height:10px !important;
    align-self:center !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row > span:not(.nk-fin-source-dot){
    grid-area:label !important;
    min-width:0 !important;
    max-width:100% !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
    hyphens:auto !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row > strong{
    grid-area:amount !important;
    justify-self:start !important;
    min-width:0 !important;
    max-width:100% !important;
    font-size:15px !important;
    line-height:1.1 !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row > em{
    grid-area:percent !important;
    justify-self:end !important;
    min-width:36px !important;
    text-align:right !important;
    font-size:15px !important;
    line-height:1.1 !important;
  }
}

@media (max-width: 420px){
  body.nk-saas-body .nk-financials-page .nk-fin-card{
    padding:18px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row{
    grid-template-columns:10px minmax(0,1fr) 34px !important;
    column-gap:10px !important;
    font-size:14px !important;
  }
  body.nk-saas-body .nk-financials-page .nk-fin-source-row > strong,
  body.nk-saas-body .nk-financials-page .nk-fin-source-row > em{
    font-size:14px !important;
  }
}


/* NK Demo overview: remove Today's focus/tasks card and let arrivals/departures fill the row */
.nk-host-dashboard-grid-no-focus{
  grid-template-columns:1fr !important;
}
.nk-host-dashboard-grid-no-focus > .nk-host-arrivals{
  width:100% !important;
  max-width:100% !important;
}


/* v500: demo overview must never show task rows in today focus */
.nk-host-focus > .nk-host-focus-row,
.nk-host-focus .nk-host-focus-row{
  display:none !important;
}

/* v502: NK Demo overview focus empty-state visual hard fix
   Keeps the Today focus card visible, hides demo task rows, and shows the original empty-state illustration/text even if old focus-list markup is still cached/rendered. */
body.nk-saas-body .nk-host-focus .nk-host-focus-row{
  display:none !important;
}
body.nk-saas-body .nk-host-focus .nk-host-focus-list{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  gap:14px !important;
  min-height:220px !important;
  margin-top:12px !important;
  padding:28px 18px !important;
  border:1px dashed #dbe3ef !important;
  border-radius:18px !important;
  background:#f8fbff !important;
  overflow:visible !important;
}
body.nk-saas-body .nk-host-focus .nk-host-focus-list:before{
  content:"" !important;
  display:block !important;
  width:320px !important;
  max-width:90% !important;
  height:145px !important;
  background:url('../img/overview-focus-empty.png') center center / contain no-repeat !important;
  flex:0 0 auto !important;
}
body.nk-saas-body .nk-host-focus .nk-host-focus-list:after{
  content:"Kaikki hyvin, ei tärkeitä asioita juuri nyt." !important;
  display:block !important;
  margin:0 !important;
  color:#344256 !important;
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.35 !important;
}
body.nk-saas-body .nk-host-focus .nk-host-empty.nk-host-focus-empty{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  gap:14px !important;
  min-height:220px !important;
  margin-top:12px !important;
  padding:28px 18px !important;
  border:1px dashed #dbe3ef !important;
  border-radius:18px !important;
  background:#f8fbff !important;
  overflow:visible !important;
  opacity:1 !important;
  visibility:visible !important;
}
body.nk-saas-body .nk-host-focus .nk-host-focus-empty-image{
  display:block !important;
  width:320px !important;
  max-width:90% !important;
  height:auto !important;
  opacity:1 !important;
  visibility:visible !important;
}
body.nk-saas-body .nk-host-focus .nk-host-focus-empty-text{
  display:block !important;
  margin:0 !important;
  color:#344256 !important;
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.35 !important;
  opacity:1 !important;
  visibility:visible !important;
}
@media (max-width:720px){
  body.nk-saas-body .nk-host-focus .nk-host-focus-list:before,
  body.nk-saas-body .nk-host-focus .nk-host-focus-empty-image{
    width:230px !important;
    height:115px !important;
  }
}


/* v505: NK Demo overview empty focus text regular/smaller font */
body.nk-saas-body .nk-host-focus .nk-host-empty.nk-host-focus-empty > p.nk-host-focus-empty-text,
body.nk-saas-body .nk-host-focus .nk-host-focus-empty-text,
body.nk-saas-body .nk-host-focus .nk-host-focus-list:after{
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.35 !important;
  margin:0 !important;
  color:#344256 !important;
  letter-spacing:0 !important;
}
