:root {
  --report-primary: #337ab7;
  --report-primary-rgb: 51, 122, 183;
  --report-secondary: #10203f;
  --report-bg: #f3f6f9;
  --report-surface: #ffffff;
  --report-border: #dbe3ea;
  --report-text: #172033;
  --report-muted: #667286;
  --report-green: #1f8f55;
  --report-amber: #c47a14;
  --report-red: #b4233f;
  --report-viewport-height: 100dvh;
}

[v-cloak] {
  display: none;
}

html {
  min-height: 100%;
  background: var(--report-bg);
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  min-height: var(--report-viewport-height, 100dvh);
  margin: 0;
  background: var(--report-bg);
  color: var(--report-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

.report-loading,
.report-login-shell {
  min-height: 100vh;
  min-height: var(--report-viewport-height, 100dvh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 16%, rgba(57, 199, 223, 0.24) 0, rgba(57, 199, 223, 0) 34%),
    radial-gradient(circle at 88% 82%, rgba(20, 120, 200, 0.34) 0, rgba(20, 120, 200, 0) 40%),
    linear-gradient(135deg, #061f37 0%, #0a2d4d 48%, #0b507c 100%);
}

.report-loading {
  gap: 12px;
  color: #d9edf8;
}

.report-login-panel {
  width: min(100%, 460px);
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 28px 75px rgba(3, 22, 39, 0.34);
}

.report-login-panel.is-registration {
  width: min(100%, 620px);
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 28px 75px rgba(23, 32, 51, 0.16);
}

.report-login-panel.is-password-only {
  padding: 0;
  overflow: hidden;
}

.report-login-panel.is-password-only .report-login-brand {
  padding: 24px 28px 0;
}

.report-login-brand,
.report-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-login-brand img,
.report-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.report-login-brand strong,
.report-brand strong {
  display: block;
  font-size: 1rem;
}

.report-login-brand span,
.report-brand span {
  display: block;
  color: var(--report-muted);
  font-size: 0.88rem;
}

.report-login-copy {
  margin: 28px 0 22px;
}

.report-registration-copy {
  margin-bottom: 19px;
  text-align: center;
}

.report-registration-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.025em;
}

.report-registration-copy > p:last-child {
  max-width: 480px;
  margin-inline: auto;
  font-size: 1.03rem;
}

.report-registration-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 27px;
  padding: 13px 15px;
  color: #506073;
  background: #f5f8fa;
  border: 1px solid var(--report-border);
  border-radius: 11px;
}

.report-registration-steps span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.report-registration-steps b {
  display: inline-grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 999px;
  font-size: 0.72rem;
}

.report-registration-steps i {
  color: #94a3b2;
  font-style: normal;
}

.report-registration-email-field {
  position: relative;
}

.report-registration-email-field > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  color: var(--report-primary);
  transform: translateY(-50%);
}

.report-registration-email-field .form-control {
  min-height: 56px;
  padding-left: 47px;
  border-radius: 10px;
}

.report-registration-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.report-registration-submit {
  min-height: 54px;
  border-radius: 10px;
  font-weight: 750;
}

.report-registration-consent {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  margin-top: 18px;
  padding: 14px;
  color: var(--report-muted);
  background: #f6f9fb;
  border: 1px solid var(--report-border);
  border-radius: 10px;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.report-registration-consent.is-active {
  background: rgba(var(--report-primary-rgb), 0.06);
  border-color: rgba(var(--report-primary-rgb), 0.5);
}

.report-registration-consent.is-loading {
  opacity: 0.68;
}

.report-registration-consent > input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.report-registration-consent-toggle {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  margin: 1px 0 0;
  background: #a8b5c1;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.report-registration-consent-toggle span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(10, 38, 61, 0.24);
  transition: transform 160ms ease;
}

.report-registration-consent > input:checked + .report-registration-consent-toggle {
  background: var(--report-primary);
}

.report-registration-consent > input:checked + .report-registration-consent-toggle span {
  transform: translateX(20px);
}

.report-registration-consent > input:focus-visible + .report-registration-consent-toggle {
  outline: 3px solid rgba(var(--report-primary-rgb), 0.28);
  outline-offset: 3px;
}

.report-registration-consent > input:disabled + .report-registration-consent-toggle {
  cursor: wait;
}

.report-registration-consent p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.report-registration-consent a {
  color: var(--report-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.report-registration-success {
  padding: 35px 8px 6px;
  text-align: center;
}

.report-registration-success-icon {
  display: inline-grid;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  place-items: center;
  color: #1d8050;
  background: #e8f7ef;
  border-radius: 22px;
  font-size: 2rem;
}

.report-registration-success h1 {
  margin: 5px 0 11px;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  letter-spacing: -0.025em;
}

.report-registration-success > p:not(.report-eyebrow) {
  max-width: 470px;
  margin: 0 auto;
  color: var(--report-muted);
  line-height: 1.65;
}

.report-registration-next {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 500px;
  margin: 25px auto;
  padding: 15px 17px;
  color: #405466;
  background: #f2f7fb;
  border: 1px solid #d9e7f0;
  border-radius: 11px;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: left;
}

.report-registration-next i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--report-primary);
  background: #ffffff;
  border-radius: 9px;
}

.report-password-head {
  padding: 28px 28px 8px;
}

.report-login-copy h1,
.report-password-head h1,
.report-pane h1 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0;
}

.report-lock-figure {
  margin: 12px 28px 18px;
  text-align: center;
}

.report-lock-figure i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  color: var(--report-primary);
  background: #eef6fc;
  border-radius: 999px;
  font-size: 2.3rem;
}

.report-lock-figure blockquote {
  margin: 0;
  font-size: 1.14rem;
  color: var(--report-text);
}

.report-project-reference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 28px 18px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-project-reference span {
  color: var(--report-muted);
  font-size: 0.84rem;
}

.report-project-reference strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.report-remember-device {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--report-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  cursor: pointer;
}

.report-remember-device input[type="checkbox"],
.report-remember-device .form-check-input {
  flex: 0 0 auto;
  width: 1.05rem;
  min-width: 1.05rem;
  max-width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  max-height: 1.05rem;
  margin: 0.16rem 0 0;
  padding: 0;
}

.report-password-field {
  position: relative;
}

.report-password-field .form-control {
  padding-right: 3.5rem;
}

.report-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  color: var(--report-muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  transform: translateY(-50%);
}

.report-password-toggle:hover {
  color: var(--report-text);
  background: rgba(var(--report-primary-rgb), 0.08);
}

.report-password-toggle:focus-visible {
  outline: 2px solid var(--report-primary);
  outline-offset: 1px;
}

.report-password-toggle:disabled {
  opacity: 0.55;
}

.report-login-panel.is-password-only label,
.report-login-panel.is-password-only input:not([type="checkbox"]),
.report-login-panel.is-password-only .report-alert,
.report-login-panel.is-password-only .report-reset-state,
.report-login-panel.is-password-only .btn,
.report-login-panel.is-password-only hr,
.report-login-panel.is-password-only .report-password-help,
.report-login-panel.is-password-only .report-change-project {
  margin-left: 28px;
  margin-right: 28px;
  width: calc(100% - 56px);
}

.report-login-panel.is-password-only .btn.w-100 {
  width: calc(100% - 56px) !important;
}

.report-login-panel.is-password-only .report-remember-device {
  margin-left: 28px;
  margin-right: 28px;
  width: calc(100% - 56px);
}

.report-login-panel.is-password-only .report-password-field {
  width: calc(100% - 56px);
  margin-right: 28px;
  margin-left: 28px;
}

.report-login-panel.is-password-only .report-password-field input:not([type="checkbox"]) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.report-login-panel.is-password-only .report-remember-device input[type="checkbox"],
.report-login-panel.is-password-only .report-remember-device .form-check-input {
  width: 1.05rem;
  min-width: 1.05rem;
  max-width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  max-height: 1.05rem;
  margin: 0.16rem 0 0;
}

.report-login-panel.is-password-only .report-alert {
  margin-top: 16px;
}

.report-login-panel.is-password-only .report-reset-submit {
  margin-bottom: 28px;
}

.report-password-help {
  margin-bottom: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-password-help button,
.report-change-project {
  padding: 0;
  color: var(--report-primary);
  background: transparent;
  border: 0;
  text-decoration: underline;
}

.report-change-project {
  display: block;
  margin-bottom: 26px;
  text-align: center;
}

.report-reset-state {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--report-muted);
}

.report-login-copy p:last-child {
  margin: 8px 0 0;
  color: var(--report-muted);
}

.report-eyebrow {
  margin: 0 0 6px;
  color: var(--report-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.report-alert-error {
  margin-top: 18px;
  color: #8a1f2d;
  background: #fff1f3;
  border: 1px solid #fac7ce;
}

.report-notification-region {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2300;
  width: min(380px, calc(100vw - 36px));
  pointer-events: none;
}

.report-notification-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.report-notification {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--report-text);
  background: #ffffff;
  border: 1px solid rgba(217, 226, 239, 0.95);
  border-left: 4px solid var(--report-green);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 32, 63, 0.18);
  pointer-events: auto;
}

.report-notification > i {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--report-green);
  border-radius: 50%;
  font-size: 14px;
}

.report-notification span {
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-notification button {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--report-muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.report-notification button:hover,
.report-notification button:focus-visible {
  color: var(--report-text);
  background: #eef3f8;
}

.report-notification.is-info {
  border-left-color: var(--report-primary);
}

.report-notification.is-info > i {
  background: var(--report-primary);
}

.report-notification.is-warning {
  border-left-color: var(--report-amber);
}

.report-notification.is-warning > i {
  background: var(--report-amber);
}

.report-notification.is-error {
  border-left-color: var(--report-red);
}

.report-notification.is-error > i {
  background: var(--report-red);
}

.report-notification-enter-active,
.report-notification-leave-active {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.report-notification-enter-from,
.report-notification-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--report-primary);
  --bs-btn-border-color: var(--report-primary);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--report-secondary);
  --bs-btn-hover-border-color: var(--report-secondary);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--report-secondary);
  --bs-btn-active-border-color: var(--report-secondary);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: var(--report-primary);
  --bs-btn-disabled-border-color: var(--report-primary);
  color: #ffffff;
  background-color: var(--report-primary);
  border-color: var(--report-primary);
}

.btn-primary:hover {
  color: #ffffff;
  background-color: var(--report-secondary);
  border-color: var(--report-secondary);
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: #ffffff;
  background-color: var(--report-primary);
  border-color: var(--report-primary);
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: var(--report-secondary);
  border-color: var(--report-secondary);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--report-primary) 28%, transparent);
}

.report-shell {
  min-height: 100vh;
  min-height: var(--report-viewport-height, 100dvh);
  background: var(--report-bg);
  --report-primary: var(--portal-primary, #337ab7);
  --report-secondary: var(--portal-secondary, #10203f);
  --report-nav-width: 260px;
  --report-nav-collapsed-width: 72px;
}

.report-topbar {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  padding-top: max(14px, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--report-border);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
}

.report-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.report-topbar-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.report-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 6px 10px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.report-status-pill-offline {
  border-color: #f2cf78;
  background: #fff8e6;
  color: #8a5d13;
}

.report-workspace {
  display: grid;
  grid-template-columns: var(--report-nav-width) minmax(0, 1fr);
  min-height: calc(100vh - 73px);
  min-height: calc(var(--report-viewport-height, 100dvh) - var(--report-topbar-offset, 73px));
  transition: grid-template-columns 0.2s ease;
}

.report-workspace.is-nav-collapsed {
  grid-template-columns: var(--report-nav-collapsed-width) minmax(0, 1fr);
}

.report-sidebar {
  min-width: 0;
  padding: 22px 16px;
  background: #edf2f6;
  border-right: 1px solid var(--report-border);
  overflow-x: hidden;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.report-nav-item {
  width: 100%;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 12px;
  color: var(--report-text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: left;
}

.report-nav-item:hover,
.report-nav-item.active {
  background: var(--report-surface);
  border-color: var(--report-border);
}

.report-nav-item.active {
  color: var(--report-primary);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.08);
}

.report-nav-item.is-locked {
  color: color-mix(in srgb, var(--report-muted) 84%, var(--report-text));
}

.report-nav-item.is-locked:not(.active) {
  opacity: 0.72;
}

.report-nav-lock {
  color: var(--report-muted);
  font-size: 12px;
}

.report-nav-item small {
  color: var(--report-muted);
}

.report-sidebar-toggle {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 0 12px auto;
  padding: 0;
  color: var(--report-muted);
  background: color-mix(in srgb, var(--report-primary) 3%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--report-border) 88%, #ffffff);
  border-radius: 8px;
  font-size: 0.84rem;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.report-sidebar-toggle:hover,
.report-sidebar-toggle:focus-visible {
  color: var(--report-primary);
  border-color: var(--report-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 12%, transparent);
}

.report-nav-group {
  display: grid;
  gap: 6px;
  margin: 22px 0 8px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--report-border) 82%, #ffffff);
}

.report-nav-group-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 4px;
  color: var(--report-muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-nav-subitem {
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 0;
  min-height: 38px;
  padding: 8px 10px 8px 14px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
}

.report-nav-subitem > i:first-child {
  font-size: 0.88rem;
}

.report-nav-subgroup {
  display: grid;
  gap: 5px;
  margin: 4px 0 2px;
  padding: 6px 0 4px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--report-primary) 4%, transparent);
}

.report-nav-subgroup-label {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 5px 10px 3px 16px;
  color: color-mix(in srgb, var(--report-primary) 74%, var(--report-text));
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-nav-nested-item {
  margin: 0 6px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.report-nav-empty {
  margin: 0 4px;
  padding: 10px 12px;
  color: var(--report-muted);
  background: rgba(255, 255, 255, 0.56);
  border: 1px dashed var(--report-border);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

.report-workspace.is-nav-collapsed .report-sidebar {
  padding: 18px 8px;
}

.report-workspace.is-nav-collapsed .report-sidebar-toggle {
  margin-right: auto;
  margin-left: auto;
}

.report-workspace.is-nav-collapsed .report-nav-item,
.report-workspace.is-nav-collapsed .report-nav-group-label,
.report-workspace.is-nav-collapsed .report-nav-subgroup-label {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
}

.report-workspace.is-nav-collapsed .report-nav-item {
  min-width: 0;
  min-height: 44px;
  padding: 10px 8px;
}

.report-workspace.is-nav-collapsed .report-nav-group {
  gap: 8px;
  margin: 14px 0 8px;
  padding-top: 12px;
}

.report-workspace.is-nav-collapsed .report-nav-group-label {
  padding: 4px 0;
}

.report-workspace.is-nav-collapsed .report-nav-subgroup {
  gap: 6px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.report-workspace.is-nav-collapsed .report-nav-subgroup-label {
  padding: 4px 0 2px;
}

.report-workspace.is-nav-collapsed .report-nav-subitem,
.report-workspace.is-nav-collapsed .report-nav-nested-item {
  margin: 0 0 6px;
  padding-left: 8px;
}

.report-workspace.is-nav-collapsed .report-nav-item span,
.report-workspace.is-nav-collapsed .report-nav-item small,
.report-workspace.is-nav-collapsed .report-nav-lock,
.report-workspace.is-nav-collapsed .report-nav-group-label span,
.report-workspace.is-nav-collapsed .report-nav-subgroup-label span,
.report-workspace.is-nav-collapsed .report-nav-empty {
  display: none;
}

.report-workspace.is-nav-collapsed .report-nav-item > i:first-child,
.report-workspace.is-nav-collapsed .report-nav-group-label > i:first-child,
.report-workspace.is-nav-collapsed .report-nav-subgroup-label > i:first-child {
  font-size: 1rem;
}

.report-content {
  min-width: 0;
  padding: 28px;
}

.report-pane {
  max-width: 1180px;
  margin: 0 auto;
}

.report-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.report-heading-with-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.report-heading-with-help h1 {
  margin: 0;
}

.report-heading-help-button {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  font-size: 16px;
}

.report-my-project-head {
  margin-bottom: 24px;
}

.report-my-project-head .report-eyebrow,
.report-my-project-head h1,
.report-my-project-head p {
  margin: 0;
}

.report-my-project-head .report-eyebrow {
  margin-bottom: 6px;
}

.report-my-project-head h1 {
  color: var(--report-text);
  font-size: clamp(1.45rem, 2vw, 1.655rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
}

.report-my-project-head p:last-child {
  max-width: 760px;
  margin-top: 14px;
  color: #64748b;
  font-size: 1.02rem;
  font-weight: 700;
}

.report-my-project-progress-card,
.report-my-project-action-card,
.report-my-project-mini-card,
.report-my-project-knowledge-card,
.report-my-project-data-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(190, 205, 230, 0.72);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(18, 31, 56, 0.08);
}

.report-my-project-progress-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px;
}

.report-my-project-progress-main h2,
.report-my-project-next-card strong,
.report-my-project-action-card h2,
.report-my-project-mini-card h2,
.report-my-project-knowledge-card h2,
.report-my-project-data-card header {
  color: #17213a;
  font-weight: 850;
}

.report-my-project-progress-main h2 {
  margin: 0 0 24px;
  font-size: 1.08rem;
}

.report-my-project-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-my-project-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.report-my-project-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% + 27px);
  width: calc(100% - 18px);
  height: 2px;
  background: #dbe5f4;
  z-index: 0;
}

.report-my-project-steps li.is-complete:not(:last-child)::after {
  background: #2f6fe4;
}

.report-my-project-step-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #7b879a;
  background: #f4f7fb;
  border: 2px solid #e2e9f3;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.55);
}

.report-my-project-steps li.is-complete .report-my-project-step-icon {
  color: #fff;
  background: #2f6fe4;
  border-color: #2f6fe4;
}

.report-my-project-steps li.is-current .report-my-project-step-icon {
  color: #2f6fe4;
  background: #fff;
  border-color: #2f6fe4;
}

.report-my-project-steps strong {
  color: #283555;
  font-size: 0.93rem;
  line-height: 1.25;
}

.report-my-project-steps small {
  min-height: 18px;
  color: #2e6fdd;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.report-my-project-steps li.is-complete small {
  color: #18a058;
}

.report-my-project-progress-bar {
  height: 8px;
  margin: 30px 0 0;
  overflow: hidden;
  background: #edf2f8;
  border-radius: 999px;
}

.report-my-project-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2f6fe4, #2d64d8);
  border-radius: inherit;
}

.report-my-project-progress-percent {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.report-my-project-next-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid #cfdcf0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7faff);
}

.report-my-project-next-card span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 850;
}

.report-my-project-next-card strong {
  font-size: 1.16rem;
}

.report-my-project-next-card p,
.report-my-project-action-card p,
.report-my-project-mini-card p,
.report-my-project-knowledge-card p {
  margin: 0;
  color: #53627a;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.report-my-project-next-card .btn {
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  gap: 8px;
  font-weight: 850;
}

.report-my-project-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.report-my-project-action-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
}

.report-my-project-action-icon,
.report-my-project-mini-icon,
.report-my-project-data-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f6fe4;
  background: #eaf1ff;
  border-radius: 50%;
}

.report-my-project-action-icon {
  width: 58px;
  height: 58px;
  font-size: 1.55rem;
}

.report-my-project-action-card.is-green .report-my-project-action-icon,
.report-my-project-mini-card.is-green .report-my-project-mini-icon {
  color: #16875a;
  background: #dff8ed;
}

.report-my-project-action-card.is-purple .report-my-project-action-icon {
  color: #7a45c6;
  background: #efe4ff;
}

.report-my-project-action-card h2,
.report-my-project-mini-card h2,
.report-my-project-knowledge-card h2 {
  margin: 0;
  font-size: clamp(1rem, 0.5vw + 0.82rem, 1.12rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.report-my-project-action-card .btn {
  align-self: end;
  min-height: 42px;
  font-weight: 850;
}

.report-my-project-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 3px 9px;
  color: #2f6fe4;
  background: #eef4ff;
  border: 1px solid #bcd1ff;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 850;
}

.report-my-project-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(320px, 1.95fr);
  gap: 16px;
  margin-bottom: 20px;
}

.report-my-project-mini-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  padding: 16px;
}

.report-my-project-mini-card h2 {
  font-size: clamp(0.82rem, 0.22vw + 0.66rem, 0.84rem);
  line-height: 1.16;
  white-space: nowrap;
}

.report-my-project-mini-card p {
  font-size: clamp(0.8rem, 0.24vw + 0.7rem, 0.86rem);
}

.report-my-project-knowledge-card h2 {
  font-size: clamp(1rem, 0.42vw + 0.78rem, 1.08rem);
}

.report-my-project-knowledge-card p {
  font-size: clamp(0.84rem, 0.24vw + 0.72rem, 0.9rem);
}

.report-my-project-mini-card .btn {
  grid-column: 1 / -1;
  min-height: 42px;
  font-weight: 850;
}

.report-my-project-mini-icon {
  width: 44px;
  height: 44px;
  color: #ba7a00;
  background: #fff2d8;
  font-size: 1.08rem;
}

.report-my-project-knowledge-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  min-height: 158px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(47, 111, 228, 0.15), transparent 32%),
    linear-gradient(145deg, #f8fbff, #eef5ff);
}

.report-my-project-knowledge-card .btn {
  margin-top: 18px;
  gap: 8px;
  font-weight: 850;
}

.report-my-project-knowledge-visual {
  align-self: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 88px;
  color: #fff;
  background: linear-gradient(135deg, #5b8af0, #1f62d6);
  border: 12px solid #dce9ff;
  border-radius: 8px;
  box-shadow: 0 18px 26px rgba(47, 111, 228, 0.18);
  transform: rotate(-6deg);
}

.report-my-project-data-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
}

.report-my-project-data-card header {
  grid-column: 1 / -1;
  font-size: 1rem;
}

.report-my-project-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.report-my-project-data-grid div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.report-my-project-data-grid span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.report-my-project-data-grid small {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.report-my-project-data-grid strong {
  min-width: 0;
  color: #17213a;
  font-size: 0.95rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.report-my-project-data-card > .btn {
  min-width: 172px;
  gap: 8px;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .report-my-project-progress-card,
  .report-my-project-secondary,
  .report-my-project-data-card {
    grid-template-columns: 1fr;
  }

  .report-my-project-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-my-project-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-my-project-data-card > .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .report-my-project-progress-card,
  .report-my-project-action-card,
  .report-my-project-mini-card,
  .report-my-project-knowledge-card,
  .report-my-project-data-card {
    padding: 18px;
  }

  .report-my-project-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-my-project-steps li::after {
    display: none;
  }

  .report-my-project-actions,
  .report-my-project-data-grid {
    grid-template-columns: 1fr;
  }

  .report-my-project-knowledge-card {
    grid-template-columns: 1fr;
  }

  .report-my-project-mini-card h2 {
    white-space: normal;
  }

  .report-my-project-knowledge-visual {
    display: none;
  }
}

/* Modern SaaS refresh for the project portal dashboard. */
.report-sidebar .report-nav-item {
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.report-sidebar .report-nav-group-label {
  font-weight: 600;
}

.report-sidebar .report-nav-subitem {
  font-size: 15px;
  font-weight: 500;
}

.report-my-project-head {
  margin-bottom: 32px;
}

.report-my-project-head .report-eyebrow {
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.report-my-project-head h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.report-my-project-head p:last-child {
  max-width: 780px;
  margin-top: 14px;
  color: #667085;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.report-my-project-progress-card,
.report-my-project-action-card,
.report-my-project-mini-card,
.report-my-project-knowledge-card,
.report-my-project-data-card {
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.42);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.07);
}

.report-my-project-progress-card {
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 32px;
  margin-bottom: 32px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
}

.report-my-project-progress-main h2,
.report-my-project-next-card strong,
.report-my-project-action-card h2,
.report-my-project-mini-card h2,
.report-my-project-knowledge-card h2,
.report-my-project-data-card header {
  color: #17213a;
  font-weight: 600;
}

.report-my-project-progress-main h2 {
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.report-my-project-steps {
  gap: 22px;
}

.report-my-project-steps li:not(:last-child)::after {
  top: 31px;
  left: calc(50% + 35px);
  width: calc(100% - 26px);
  background: #e5eaf1;
}

.report-my-project-steps li.is-complete:not(:last-child)::after {
  background: #16a34a;
}

.report-my-project-step-icon {
  width: 66px;
  height: 66px;
  color: #64748b;
  background: #f2f6fb;
  border: 0;
  box-shadow: none;
  font-size: 20px;
}

.report-my-project-steps li.is-complete .report-my-project-step-icon {
  color: #fff;
  background: #16a34a;
  border-color: #16a34a;
}

.report-my-project-steps li.is-current .report-my-project-step-icon {
  color: var(--report-primary);
  background: #fff;
  border: 2px solid var(--report-primary);
}

.report-my-project-steps strong {
  color: #344054;
  font-size: 15px;
  font-weight: 500;
}

.report-my-project-steps small {
  color: #667085;
  font-size: 14px;
  font-weight: 500;
}

.report-my-project-steps li.is-complete small {
  color: #16a34a;
}

.report-my-project-steps li.is-current small {
  color: var(--report-primary);
}

.report-my-project-progress-bar {
  height: 10px;
  margin-top: 36px;
  background: #eef2f7;
}

.report-my-project-progress-bar span {
  background: linear-gradient(90deg, var(--report-primary), #4f86ee);
}

.report-my-project-progress-percent {
  margin-top: 12px;
  color: #667085;
  font-size: 15px;
  font-weight: 500;
}

.report-my-project-next-card {
  gap: 14px;
  padding: 28px;
  border: 0;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 228, 0.12);
}

.report-my-project-next-card span {
  color: #667085;
  font-size: 14px;
  font-weight: 500;
}

.report-my-project-next-card strong {
  font-size: 22px;
  line-height: 1.25;
}

.report-my-project-next-card p,
.report-my-project-action-card p,
.report-my-project-mini-card p,
.report-my-project-knowledge-card p {
  color: #667085;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.report-my-project-next-card .btn {
  min-height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

.report-my-project-next-card.is-purchase {
  align-content: start;
  background: linear-gradient(145deg, #f3f8ff 0%, #ffffff 100%);
  border: 2px solid var(--report-primary);
  box-shadow:
    0 16px 36px rgba(var(--report-primary-rgb), 0.14),
    0 0 0 4px rgba(var(--report-primary-rgb), 0.05);
}

.report-my-project-next-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--report-primary);
  background: rgba(var(--report-primary-rgb), 0.1);
  border-radius: 50%;
  font-size: 21px;
}

.report-my-project-next-card.is-purchase > span {
  color: var(--report-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-my-project-next-card.is-purchase strong {
  font-size: clamp(20px, 1.35vw, 24px);
  overflow-wrap: anywhere;
}

.report-my-project-next-card.is-purchase .btn {
  box-shadow: 0 9px 20px rgba(var(--report-primary-rgb), 0.22);
}

.report-my-project-next-secondary {
  justify-self: center;
  padding: 2px 0;
  color: var(--report-primary);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.report-my-project-next-secondary:hover,
.report-my-project-next-secondary:focus-visible {
  color: color-mix(in srgb, var(--report-primary) 82%, #000000);
}

.report-sidebar .report-nav-subitem.is-purchase {
  color: var(--report-primary);
  background: rgba(var(--report-primary-rgb), 0.08);
  border-color: rgba(var(--report-primary-rgb), 0.28);
  box-shadow: 0 8px 20px rgba(var(--report-primary-rgb), 0.08);
  font-weight: 650;
}

.report-sidebar .report-nav-subitem.is-purchase:hover,
.report-sidebar .report-nav-subitem.is-purchase:focus-visible {
  background: rgba(var(--report-primary-rgb), 0.13);
  border-color: var(--report-primary);
}

.report-my-project-actions {
  gap: 24px;
  margin-bottom: 28px;
}

.report-my-project-action-card {
  min-height: 282px;
  gap: 16px;
  padding: 28px;
}

.report-my-project-action-icon,
.report-my-project-mini-icon,
.report-my-project-action-card.is-green .report-my-project-action-icon,
.report-my-project-mini-card.is-green .report-my-project-mini-icon,
.report-my-project-action-card.is-purple .report-my-project-action-icon,
.report-my-project-mini-card.is-amber .report-my-project-mini-icon,
.report-my-project-data-grid span {
  color: var(--report-primary);
  background: #eef4ff;
}

.report-my-project-action-icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.report-my-project-action-card h2,
.report-my-project-mini-card h2,
.report-my-project-knowledge-card h2 {
  font-size: clamp(20px, 1.15vw, 22px);
  line-height: 1.24;
  overflow-wrap: normal;
  hyphens: manual;
}

.report-my-project-badge {
  color: var(--report-primary);
  background: #f5f8ff;
  border-color: rgba(47, 111, 228, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.report-my-project-text-link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 28px;
  margin-top: 4px;
  padding: 0;
  color: var(--report-primary);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.report-my-project-text-link:hover,
.report-my-project-text-link:focus-visible {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.report-my-project-action-card.is-partner-highlight {
  z-index: 1;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 58%);
  border: 2px solid var(--report-primary);
  box-shadow:
    0 14px 36px rgba(47, 111, 171, 0.16),
    0 0 0 4px rgba(47, 111, 171, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.report-my-project-action-card.is-partner-highlight:hover,
.report-my-project-action-card.is-partner-highlight:focus-within {
  transform: translateY(-4px);
  box-shadow:
    0 20px 44px rgba(47, 111, 171, 0.2),
    0 0 0 5px rgba(47, 111, 171, 0.08);
}

.report-my-project-action-card.is-partner-highlight .report-my-project-action-icon {
  background: #e5f1ff;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 171, 0.12);
}

.report-my-project-action-card.is-partner-highlight .report-my-project-badge {
  color: #fff;
  background: var(--report-primary);
  border-color: transparent;
  box-shadow: 0 5px 14px rgba(47, 111, 171, 0.2);
  font-weight: 600;
}

.report-my-project-action-card .report-my-project-partner-cta {
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 11px 16px;
  color: #fff;
  background: var(--report-primary);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(47, 111, 171, 0.2);
  font-weight: 600;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.report-my-project-action-card .report-my-project-partner-cta:hover,
.report-my-project-action-card .report-my-project-partner-cta:focus-visible {
  color: #fff;
  text-decoration: none;
  filter: brightness(0.94);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 111, 171, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .report-my-project-action-card.is-partner-highlight,
  .report-my-project-action-card .report-my-project-partner-cta {
    transition: none;
  }
}

.report-my-project-secondary {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.86fr) minmax(360px, 1.5fr);
  gap: 24px;
  margin-bottom: 32px;
}

.report-my-project-secondary.without-knowledge {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-my-project-mini-card {
  align-content: start;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
}

.report-my-project-mini-card h2 {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.24;
  white-space: normal;
  overflow-wrap: anywhere;
}

.report-my-project-mini-card p,
.report-my-project-mini-card .report-my-project-text-link {
  grid-column: auto;
}

.report-my-project-mini-icon {
  width: 52px;
  height: 52px;
  font-size: 18px;
}

.report-my-project-knowledge-card {
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 24px;
  min-height: 180px;
  padding: 28px;
  background:
    radial-gradient(circle at 93% 18%, rgba(47, 111, 228, 0.1), transparent 30%),
    #fff;
}

.report-my-project-knowledge-card h2 {
  font-size: 22px;
}

.report-my-project-knowledge-visual {
  width: 112px;
  height: 80px;
  border-width: 10px;
  box-shadow: 0 18px 28px rgba(47, 111, 228, 0.14);
}

.report-academy-pane {
  display: grid;
  gap: 28px;
}

.report-academy-pane-head {
  align-items: start;
}

.report-academy-pane-head > div {
  max-width: 820px;
}

.report-academy-pane-head h1 {
  margin-bottom: 12px;
}

.report-academy-pane-head p:last-child {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.65;
}

.report-academy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 32px;
  align-items: center;
  min-height: 250px;
  padding: 38px 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--report-primary) 88%, #183c75), #174ca8);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(var(--report-primary-rgb), 0.22);
}

.report-academy-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border: 42px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.report-academy-hero > div,
.report-academy-hero-visual {
  position: relative;
  z-index: 1;
}

.report-academy-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.report-academy-hero h2 {
  max-width: 650px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.report-academy-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.report-academy-hero-visual {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--report-primary);
  background: #fff;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  box-shadow: 0 20px 42px rgba(12, 34, 74, 0.2);
  font-size: 48px;
  transform: rotate(5deg);
}

.report-academy-video {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.72);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.report-academy-video-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
  background: #17213a;
}

.report-academy-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 48, 0.04), rgba(10, 25, 48, 0.34));
  transition: background 180ms ease;
}

.report-academy-video-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transition: transform 240ms ease;
}

.report-academy-video-media:hover img,
.report-academy-video-media:focus-visible img {
  transform: scale(1.025);
}

.report-academy-video-media:hover::after,
.report-academy-video-media:focus-visible::after {
  background: linear-gradient(180deg, rgba(10, 25, 48, 0), rgba(10, 25, 48, 0.25));
}

.report-academy-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #fff;
  background: #e62117;
  border: 7px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(10, 25, 48, 0.3);
  font-size: 25px;
  transform: translate(-50%, -50%);
}

.report-academy-video-play i {
  margin-left: 4px;
}

.report-academy-video-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #17213a;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.report-academy-video-label i {
  color: #e62117;
  font-size: 16px;
}

.report-academy-video-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 34px;
}

.report-academy-video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--report-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.report-academy-video-copy h2 {
  margin: 0 0 13px;
  color: #17213a;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.report-academy-video-copy p {
  max-width: 650px;
  margin: 0 0 22px;
  color: #667085;
  font-size: 16px;
  line-height: 1.65;
}

.report-academy-video-copy .btn {
  gap: 9px;
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 10px;
  font-weight: 600;
}

.report-academy-state {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 140px;
  padding: 28px;
  color: #344054;
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.06);
}

.report-academy-state > i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--report-primary);
  background: #eef4ff;
  border-radius: 16px;
  font-size: 22px;
}

.report-academy-state strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.report-academy-state p {
  margin: 0;
  color: #667085;
}

.report-academy-state .btn {
  margin-left: auto;
}

.report-academy-state.is-error > i {
  color: #b42318;
  background: #fef3f2;
}

.report-academy-catalog {
  display: grid;
  gap: 20px;
}

.report-academy-catalog > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.report-academy-catalog > header span {
  color: var(--report-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-academy-catalog > header h2 {
  margin: 4px 0 0;
  color: #17213a;
  font-size: 27px;
  font-weight: 650;
}

.report-academy-catalog > header > strong {
  padding: 7px 12px;
  color: #475467;
  background: #f2f4f7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.report-academy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.report-academy-course-card {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.65);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.075);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.report-academy-course-card:hover,
.report-academy-course-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 24, 40, 0.12);
}

.report-academy-course-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--report-primary);
  background: linear-gradient(145deg, #eaf2ff, #f8fbff);
}

.report-academy-course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-academy-course-media > span {
  font-size: 52px;
  opacity: 0.78;
}

.report-academy-course-media small {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #1d4f91;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(16, 24, 40, 0.09);
  font-size: 12px;
  font-weight: 650;
}

.report-academy-course-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.report-academy-course-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #667085;
  font-size: 13px;
}

.report-academy-course-meta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-academy-course-meta strong {
  flex: 0 0 auto;
  color: var(--report-primary);
  font-weight: 650;
}

.report-academy-course-body h3 {
  margin: 0;
  color: #17213a;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.28;
}

.report-academy-course-body > p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #667085;
  font-size: 15px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.report-academy-course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.report-academy-course-tags span {
  padding: 5px 9px;
  color: #475467;
  background: #f2f4f7;
  border-radius: 999px;
  font-size: 12px;
}

.report-academy-course-body > .btn,
.report-academy-course-private-note {
  min-height: 44px;
  margin-top: auto;
}

.report-academy-course-body > .btn {
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  font-weight: 600;
}

.report-academy-course-private-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 12px;
  color: #475467;
  border-top: 1px solid #eaecf0;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .report-academy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .report-academy-video {
    grid-template-columns: 1fr;
  }

  .report-academy-video-media,
  .report-academy-video-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .report-academy-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 24px;
  }

  .report-academy-hero-visual {
    display: none;
  }

  .report-academy-video-copy {
    padding: 26px 24px 28px;
  }

  .report-academy-state {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 22px;
  }

  .report-academy-state .btn {
    width: 100%;
    margin-left: 0;
  }

  .report-academy-grid {
    grid-template-columns: 1fr;
  }

  .report-academy-course-card {
    grid-template-rows: 175px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-academy-course-card,
  .report-academy-video-media::after,
  .report-academy-video-media img {
    transition: none;
  }
}

.report-my-project-data-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  margin-top: 4px;
  padding: 24px 28px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.045);
}

.report-my-project-data-card header {
  color: #344054;
  font-size: 16px;
  font-weight: 600;
}

.report-my-project-data-grid {
  gap: 16px;
}

.report-my-project-data-grid small {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

.report-my-project-data-grid strong {
  color: #344054;
  font-size: 15px;
  font-weight: 500;
}

.report-my-project-data-card > .report-my-project-text-link {
  align-self: center;
  margin-top: 0;
}

.report-share-pane-head {
  align-items: flex-start;
}

.report-pane-close-button {
  border: 1px solid var(--report-border);
  background: #ffffff;
}

.report-share-detail-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.report-share-detail-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 11%, #ffffff);
  border-radius: 8px;
  font-size: 1.45rem;
}

.report-share-detail-card h2 {
  margin: 0 0 8px;
  color: var(--report-text);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.report-share-detail-card p {
  margin: 0;
  color: var(--report-muted);
  line-height: 1.55;
}

.report-share-info-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  padding: 26px 28px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.report-share-info-column {
  min-width: 0;
}

.report-share-info-column:first-child {
  padding-right: 28px;
}

.report-share-info-column:nth-child(2) {
  padding-left: 28px;
  border-left: 1px solid var(--report-border);
}

.report-share-info-card h2 {
  margin: 0 0 10px;
  color: var(--report-text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.report-share-info-card p {
  margin: 0;
  color: var(--report-muted);
  line-height: 1.5;
}

.report-share-process-list,
.report-share-data-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.report-share-process-list li,
.report-share-data-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--report-text);
  font-weight: 600;
}

.report-share-process-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 12%, #ffffff);
  border-radius: 8px;
  font-size: 0.9rem;
}

.report-share-data-list i {
  flex: 0 0 auto;
  color: var(--report-primary);
  font-size: 1rem;
}

.report-share-info-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 420px;
  margin-top: 26px !important;
  padding: 14px 16px;
  color: var(--report-text) !important;
  background: color-mix(in srgb, var(--report-primary) 7%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--report-primary) 18%, var(--report-border));
  border-radius: 8px;
  font-size: 0.86rem;
}

.report-share-info-note i {
  margin-top: 2px;
  color: var(--report-primary);
}

.report-share-consent-section {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--report-border);
}

.report-share-consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 14px 0 0;
  color: var(--report-text);
  line-height: 1.45;
  cursor: pointer;
}

.report-share-consent-card {
  max-width: 820px;
  margin: 16px 0 14px;
  padding: 18px 20px 20px;
  background: color-mix(in srgb, var(--report-primary) 8%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--report-primary) 28%, var(--report-border));
  border-left: 4px solid var(--report-primary);
  border-radius: 10px;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--report-primary) 10%, transparent);
}

.report-share-consent-card-head {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--report-primary-dark, var(--report-primary));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-share-consent-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 50%;
  font-size: 0.75rem;
}

.report-share-consent-row strong {
  font-size: 1rem;
  font-weight: 700;
}

.report-share-consent-row .form-check-input {
  margin-top: 3px;
}

.report-share-consent-button {
  display: flex;
  margin-top: 12px;
  margin-left: auto;
}

.report-share-consent-confirmed {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 8px;
  max-width: 820px;
  margin-top: 14px;
  padding: 16px 18px;
  color: var(--report-text);
  background: color-mix(in srgb, var(--report-primary) 7%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--report-primary) 18%, var(--report-border));
  border-radius: 8px;
}

.report-share-consent-confirmed-icon {
  width: 40px;
  height: 40px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 8px;
  font-size: 1rem;
}

.report-share-consent-confirmed-copy {
  min-width: 0;
}

.report-share-consent-confirmed p {
  margin: 0;
  color: var(--report-text);
  line-height: 1.5;
}

.report-share-consent-confirmed p + p {
  margin-top: 2px;
}

.report-share-consent-confirmed strong {
  font-weight: 800;
}

.report-share-consent-revoke-button {
  display: flex;
  margin-top: 12px;
  margin-left: auto;
}

@media (max-width: 1180px) {
  .report-my-project-progress-card {
    grid-template-columns: 1fr;
  }

  .report-my-project-data-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-my-project-data-card > .report-my-project-text-link {
    justify-self: start;
  }

  .report-my-project-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-my-project-knowledge-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .report-my-project-head h1 {
    font-size: 32px;
  }

  .report-my-project-progress-card,
  .report-my-project-action-card,
  .report-my-project-mini-card,
  .report-my-project-knowledge-card,
  .report-my-project-data-card {
    padding: 24px;
  }

  .report-my-project-actions,
  .report-my-project-secondary,
  .report-my-project-data-grid,
  .report-share-detail-card,
  .report-share-info-card {
    grid-template-columns: 1fr;
  }

  .report-my-project-data-card,
  .report-my-project-data-grid,
  .report-my-project-data-grid > div {
    min-width: 0;
  }

  .report-my-project-data-grid strong {
    word-break: normal;
    hyphens: auto;
  }

  .report-share-info-column:first-child,
  .report-share-info-column:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .report-share-info-column:nth-child(2) {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--report-border);
  }
}

.report-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
  padding: 18px;
}

.report-form-grid label {
  display: block;
  min-width: 0;
}

.report-form-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--report-muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.report-span-2 {
  grid-column: span 2;
}

.report-project-step-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 2px 0 18px;
  color: var(--report-text);
  text-align: center;
}

.report-project-step-heading span {
  color: var(--report-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-project-step-heading strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 850;
  line-height: 1.18;
}

.report-portal-greeting {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 18px;
  color: var(--report-text);
  background: color-mix(in srgb, var(--report-primary) 7%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--report-primary) 18%, var(--report-border));
  border-radius: 8px;
}

.report-portal-greeting i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 8px;
}

.report-portal-greeting p {
  margin: 0;
  white-space: pre-line;
  line-height: 1.45;
  font-weight: 650;
}

.report-project-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  padding: 16px 18px 18px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-project-form > .is-wide,
.report-project-form .report-editor-card-grid > .is-wide {
  grid-column: 1 / -1;
}

.report-project-form > .is-half,
.report-project-form .report-editor-card-grid > .is-half {
  grid-column: span 6;
}

.report-data-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.report-data-layout > .is-wide,
.report-data-form-grid > .is-wide {
  grid-column: 1 / -1;
}

.report-data-form-grid > .is-half {
  grid-column: span 6;
}

.report-data-form-grid > .is-three-quarter {
  grid-column: span 9;
}

.report-data-form-grid > .is-quarter {
  grid-column: span 3;
}

.report-data-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 16px 18px 18px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-data-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-data-card-head > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.report-data-card-head strong {
  color: var(--report-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.report-data-card-head span {
  color: var(--report-muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.report-data-card-head .btn {
  flex: 0 0 auto;
}

.report-data-form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.report-transfer-card {
  gap: 18px;
}

.report-transfer-content {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--report-primary) 16%, var(--report-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--report-primary) 5%, #ffffff);
}

.report-transfer-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--report-primary);
  border-radius: 8px;
}

.report-transfer-content h2,
.report-transfer-content p {
  margin: 0;
}

.report-transfer-content h2 {
  color: var(--report-text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.report-transfer-content p {
  margin-top: 5px;
  color: var(--report-muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.report-transfer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.report-transfer-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.report-project-picture-card {
  position: relative;
  overflow: hidden;
}

.report-project-picture-card.is-upload-drop-active {
  border-color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 5%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 14%, transparent);
}

.report-project-picture-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  color: var(--report-muted);
  background: #f8fafc;
  border: 1px dashed var(--report-border);
  border-radius: 8px;
}

.report-project-picture-intro > i {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 8px;
}

.report-project-picture-intro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.report-project-picture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.report-project-picture-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9e4f0;
  border-radius: 8px;
}

.report-project-picture-preview {
  width: 100%;
  display: grid;
  min-width: 0;
  padding: 0;
  color: var(--report-text);
  text-align: left;
  background: #ffffff;
  border: 0;
}

.report-project-picture-preview:hover,
.report-project-picture-preview:focus-visible {
  outline: 0;
}

.report-project-picture-preview:hover img,
.report-project-picture-preview:focus-visible img {
  transform: scale(1.03);
}

.report-project-picture-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #e8eef6;
  transition: transform 0.18s ease;
}

.report-project-picture-preview span {
  min-width: 0;
  padding: 8px 9px 9px;
  color: var(--report-muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-project-picture-delete {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b4233f;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(180, 35, 63, 0.22);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.report-project-picture-delete:hover,
.report-project-picture-delete:focus-visible {
  color: #ffffff;
  background: #b4233f;
  outline: 0;
}

.report-project-picture-delete:disabled {
  opacity: 0.65;
}

.report-data-empty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--report-muted);
  font-weight: 700;
}

.report-data-empty i {
  color: var(--report-primary);
}

.report-data-footer,
.report-pane-footer {
  display: flex;
  justify-content: flex-end;
}

.report-pane-footer {
  margin-top: 16px;
}

.report-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
}

.report-address-row.is-wide {
  grid-column: 1 / -1;
}

.report-address-row > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.report-project-renewables .report-editor-card-grid + .report-switch-row {
  margin-top: 4px;
}

.report-field-error {
  display: block;
  margin-top: 5px;
  color: #9f2f45;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.report-field.is-invalid > span {
  color: #9f2f45;
}

.report-field .form-control.is-invalid,
.report-field .form-select.is-invalid {
  border-color: #d94c5f;
  box-shadow: 0 0 0 0.18rem rgba(217, 76, 95, 0.12);
}

.report-input-tool.is-invalid > .btn {
  align-self: start;
  border-color: #d94c5f;
  color: #9f2f45;
  background: #fff7f7;
}

.report-form-message {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.report-form-message > span {
  min-width: 0;
}

.report-form-message.is-error {
  border: 1px solid rgba(180, 35, 63, 0.24);
  background: rgba(180, 35, 63, 0.08);
  color: var(--report-red);
}

.report-form-message.is-warning {
  border: 1px solid rgba(181, 122, 24, 0.28);
  background: rgba(181, 122, 24, 0.08);
  color: #8a5a12;
}

.report-form-message > .btn {
  margin-left: auto;
  white-space: nowrap;
}

.report-form-message > .btn + .btn {
  margin-left: 0;
}

.report-modal-offline-status {
  margin: 10px 18px 0;
}

.report-room-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
}

.report-room-list,
.report-room-editor,
.report-surface-list {
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-room-list {
  padding: 10px;
}

.report-room-item {
  width: 100%;
  display: block;
  padding: 12px;
  margin-bottom: 8px;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: left;
}

.report-room-item.active,
.report-room-item:hover {
  border-color: var(--report-primary);
  background: #ffffff;
}

.report-room-item span,
.report-room-item small {
  display: block;
}

.report-room-item span {
  font-weight: 700;
}

.report-room-item small {
  color: var(--report-muted);
}

.report-room-editor {
  padding: 18px;
}

.report-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.report-subhead h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.report-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-editor-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.report-surface-list {
  margin-top: 18px;
  padding: 16px;
}

.report-surface-grid,
.report-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.report-surface-card,
.report-feature-card {
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-surface-card {
  padding: 12px;
}

.report-surface-card strong,
.report-surface-card span {
  display: block;
}

.report-surface-card span {
  color: var(--report-muted);
}

.report-feature-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: var(--report-surface);
}

.report-feature-card > i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 8px;
}

.report-feature-card h2 {
  margin: 0 0 5px;
  font-size: 1rem;
  letter-spacing: 0;
}

.report-feature-card p {
  margin: 0;
  color: var(--report-muted);
}

.report-feature-card > span {
  padding: 4px 8px;
  color: var(--report-primary);
  background: #eef6fc;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.report-feature-card.disabled {
  opacity: 0.62;
}

.report-feature-detail {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
  padding: 18px;
  background: var(--report-surface);
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-feature-detail > i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--report-primary);
  border-radius: 8px;
  font-size: 1.2rem;
}

.report-feature-detail h2 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.report-feature-detail p {
  margin: 0;
  color: var(--report-muted);
}

.report-feature-detail > span {
  padding: 5px 9px;
  color: var(--report-primary);
  background: #eef6fc;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.report-feature-detail > .btn {
  justify-self: end;
  white-space: nowrap;
}

.report-feature-detail.disabled {
  opacity: 0.68;
}

.report-complete-purchase-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: center;
  margin: 24px auto 0;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.1);
}

.report-complete-purchase-media {
  min-width: 0;
}

.report-complete-purchase-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.report-complete-purchase-copy {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.report-complete-purchase-copy > i {
  color: var(--report-primary);
  font-size: 48px;
}

.report-complete-purchase-copy h2 {
  margin: 0;
  color: var(--report-text);
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 850;
  letter-spacing: 0;
}

.report-complete-purchase-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--report-muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.report-heatpump-catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0;
  color: var(--report-primary);
  font-weight: 800;
  text-decoration: none;
}

.report-heatpump-catalog-link:hover,
.report-heatpump-catalog-link:focus-visible {
  color: var(--report-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.report-funding-service-purchase {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.report-funding-service-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.report-funding-service-hero h2,
.report-funding-service-hero p {
  margin: 0;
}

.report-funding-service-hero h2 {
  color: var(--report-text);
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0;
}

.report-funding-service-hero p:not(.report-eyebrow) {
  max-width: 760px;
  margin-top: 10px;
  color: var(--report-muted);
  line-height: 1.55;
}

.report-funding-service-hero > i {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: var(--report-primary);
  background: rgba(var(--report-primary-rgb), 0.1);
  border-radius: 8px;
  font-size: 34px;
}

.report-funding-service-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.report-funding-service-product {
  display: grid;
  gap: 14px;
  grid-template-rows: minmax(150px, auto) auto 1fr;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.07);
}

.report-funding-service-product-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 0;
}

.report-funding-service-product-head img {
  width: 120px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.report-funding-service-product span {
  display: block;
  margin-bottom: 5px;
  color: var(--report-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.report-funding-service-product h3,
.report-funding-service-product p {
  margin: 0;
}

.report-funding-service-product h3 {
  color: var(--report-text);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

.report-funding-service-product h4 {
  margin: 12px 0 8px;
  color: var(--report-text);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
}

.report-funding-service-product p {
  margin-top: 5px;
  color: var(--report-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.report-funding-service-product p.report-funding-service-intro,
.report-funding-service-product p.report-funding-service-note {
  margin-top: 10px;
  font-size: 0.86rem;
}

.report-funding-service-product p.report-funding-service-note {
  margin-bottom: 0;
}

.report-funding-service-product hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--report-border);
  opacity: 1;
}

.report-funding-service-details {
  min-width: 0;
  padding-top: 2px;
}

.report-funding-service-feature-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--report-muted);
  font-size: 0.84rem;
  line-height: 1.35;
  list-style: none;
}

.report-funding-service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.report-funding-service-feature-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #16a34a;
  font-size: 0.82rem;
}

.report-funding-service-product strong {
  display: block;
  margin-bottom: 10px;
  color: var(--report-text);
  font-size: 1.35rem;
  white-space: nowrap;
}

.report-funding-service-buy {
  text-align: right;
}

.report-funding-service-buy .btn {
  white-space: nowrap;
}

.report-funding-service-faq {
  margin-top: 10px;
  padding: clamp(24px, 3vw, 40px);
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.report-funding-service-faq-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.report-funding-service-faq-head h2,
.report-funding-service-faq-head p {
  margin: 0;
}

.report-funding-service-faq-head h2 {
  color: var(--report-text);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.report-funding-service-faq-head p:not(.report-eyebrow) {
  margin-top: 10px;
  color: var(--report-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.report-funding-service-faq-list {
  display: grid;
  gap: 10px;
}

.report-funding-service-faq-list details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.report-funding-service-faq-list details:hover,
.report-funding-service-faq-list details:focus-within,
.report-funding-service-faq-list details[open] {
  border-color: rgba(var(--report-primary-rgb), 0.5);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.07);
}

.report-funding-service-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 17px 20px;
  color: var(--report-text);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.report-funding-service-faq-list summary::-webkit-details-marker {
  display: none;
}

.report-funding-service-faq-list summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--report-primary);
  background: rgba(var(--report-primary-rgb), 0.09);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.report-funding-service-faq-list details[open] summary::after {
  content: "−";
  color: #ffffff;
  background: var(--report-primary);
  transform: none;
}

.report-funding-service-faq-answer {
  padding: 0 20px 20px;
  color: var(--report-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.report-funding-service-faq-answer::before {
  content: "";
  display: block;
  margin-bottom: 18px;
  border-top: 1px solid #e8edf3;
}

.report-funding-service-faq-answer p {
  margin: 0;
}

.report-funding-service-faq-answer p + p,
.report-funding-service-faq-answer ul + p,
.report-funding-service-faq-answer ol + p {
  margin-top: 12px;
}

.report-funding-service-faq-answer ul,
.report-funding-service-faq-answer ol {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.report-funding-service-faq-answer li::marker {
  color: var(--report-primary);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .report-funding-service-faq-list details,
  .report-funding-service-faq-list summary::after {
    transition: none;
  }
}

.report-tool-loading,
.report-tool-error {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: 28px;
  color: var(--report-muted);
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-tool-error i {
  color: #b33a3a;
  font-size: 34px;
}

.report-tool-error p {
  margin: 0;
  color: var(--report-text);
  font-weight: 700;
}

@media (max-width: 980px) {
  .report-funding-service-products {
    grid-template-columns: 1fr;
  }

  .report-funding-service-product-head {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .report-funding-service-product {
    grid-template-rows: auto auto 1fr;
  }

  .report-funding-service-product-head img {
    width: 96px;
    height: 82px;
  }

  .report-funding-service-buy {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .report-funding-service-hero {
    align-items: flex-start;
  }

  .report-funding-service-hero > i {
    display: none;
  }

  .report-funding-service-product-head {
    grid-template-columns: 1fr;
  }

  .report-funding-service-product-head img {
    width: 100%;
    height: 150px;
  }

  .report-funding-service-buy {
    grid-column: auto;
    text-align: left;
  }

  .report-funding-service-faq {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .report-funding-service-faq-list summary {
    gap: 14px;
    padding: 16px;
    font-size: 0.95rem;
  }

  .report-funding-service-faq-answer {
    padding: 0 16px 18px;
  }
}

.report-shop-modal {
  width: min(1120px, calc(100vw - 40px));
  max-width: min(1120px, calc(100vw - 40px));
  height: min(780px, calc(100vh - 48px));
  min-height: 0;
  max-height: min(780px, calc(100vh - 48px));
  position: relative;
  overflow: hidden;
}

.report-shop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--report-border);
  background: #f7f9fc;
}

.report-shop-steps button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  color: var(--report-muted);
  background: #ffffff;
  font-weight: 800;
  cursor: default;
}

.report-shop-steps button span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--report-muted);
  background: #eef2f7;
  font-size: 0.78rem;
}

.report-shop-steps button.active {
  color: #ffffff;
  border-color: var(--report-primary);
  background: var(--report-primary);
}

.report-shop-steps button.active span {
  color: var(--report-primary);
  background: #ffffff;
}

.report-shop-steps button.complete {
  color: var(--report-primary);
  border-color: color-mix(in srgb, var(--report-primary) 36%, #ffffff);
  background: color-mix(in srgb, var(--report-primary) 8%, #ffffff);
}

.report-shop-steps button.complete span {
  color: #ffffff;
  background: var(--report-primary);
}

.report-shop-steps button:disabled {
  opacity: 1;
}

.report-shop-error,
.report-shop-loading {
  margin: 16px 18px 0;
  padding: 12px 14px;
  border-radius: 8px;
}

.report-shop-error {
  display: flex;
  gap: 9px;
  color: #8f1f24;
  background: #fff0f1;
  border: 1px solid #f3b8bf;
}

.report-shop-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--report-muted);
}

.report-shop-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px;
}

.report-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.report-shop-product-groups {
  display: grid;
  gap: 16px;
}

.report-shop-product-group {
  display: grid;
  gap: 9px;
}

.report-shop-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--report-muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-shop-group-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--report-border);
}

.report-shop-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.report-shop-product-group.is-featured .report-shop-products {
  grid-template-columns: 1fr;
}

.report-shop-product {
  min-width: 0;
  min-height: 224px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--report-border);
  border-left: 4px solid var(--report-primary);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.055);
  cursor: pointer;
}

.report-shop-product.is-featured {
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.28fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 18px;
  row-gap: 8px;
  padding: 18px;
  border-left-width: 6px;
  background: color-mix(in srgb, var(--report-primary) 4%, #ffffff);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.report-shop-product.is-featured header,
.report-shop-product.is-featured h3,
.report-shop-product.is-featured p {
  grid-column: 1;
}

.report-shop-product.is-featured .report-shop-price {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  align-content: center;
  min-height: 132px;
}

.report-shop-product.is-featured > .btn {
  grid-column: 2;
  grid-row: 4;
  align-self: end;
}

.report-shop-product.is-beratung {
  border-left-color: #1c8f5a;
}

.report-shop-product.is-foerder {
  border-left-color: #d66a19;
}

.report-shop-product.is-disabled {
  border-left-color: #9aa3b2;
  background: #f7f8fa;
  cursor: default;
  box-shadow: none;
}

.report-shop-product header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.report-shop-product-meta {
  min-width: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.report-shop-product header small {
  color: var(--report-primary);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.report-shop-product.is-disabled header small,
.report-shop-product.is-disabled h3,
.report-shop-product.is-disabled p,
.report-shop-product.is-disabled .report-shop-price strong,
.report-shop-product.is-disabled .report-shop-product-bundle-note {
  color: #6b7280;
}

.report-link-button {
  padding: 0;
  border: 0;
  color: var(--report-primary);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.report-shop-product h3 {
  margin: 0;
  color: var(--report-text);
  font-size: 0.98rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.report-shop-product.is-featured h3 {
  font-size: 1.28rem;
}

.report-shop-product p {
  margin: 0;
  color: var(--report-muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-shop-product.is-featured p {
  max-width: 620px;
  font-size: 0.96rem;
  -webkit-line-clamp: 3;
}

.report-shop-price {
  display: grid;
  justify-items: center;
  gap: 1px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f5f7fb;
}

.report-shop-price span {
  color: var(--report-muted);
  text-decoration: line-through;
  font-size: 0.8rem;
}

.report-shop-price strong {
  color: var(--report-primary);
  font-size: 1.24rem;
  line-height: 1.05;
}

.report-shop-product.is-featured .report-shop-price strong {
  font-size: 1.8rem;
}

.report-shop-price small {
  color: var(--report-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.report-shop-product-bundle-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #146c43;
  font-size: 0.8rem;
  font-weight: 850;
}

.report-shop-product > .btn {
  min-height: 32px;
  padding: 5px 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.report-shop-cart {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--report-primary);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.1);
}

.report-shop-cart > header {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--report-primary);
}

.report-shop-cart h3,
.report-shop-checkout h3,
.report-shop-payment h3 {
  margin: 0;
  color: var(--report-text);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.report-shop-empty {
  min-height: 180px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  color: var(--report-muted);
  text-align: center;
}

.report-shop-empty i {
  color: var(--report-primary);
  font-size: 2rem;
}

.report-shop-bundle {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  color: #146c43;
  background: #eaf7ef;
  border-radius: 8px;
  font-weight: 650;
}

.report-shop-bundle > span:last-child {
  display: grid;
  gap: 2px;
  font-weight: 650;
}

.report-shop-bundle small {
  color: #426452;
  font-weight: 500;
}

.report-shop-bundle-missing {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  color: #146c43;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 650;
}

.report-shop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.report-shop-badge.is-bundle {
  color: #146c43;
  background: #dff4e8;
}

.report-shop-badge.is-unavailable {
  color: #5f3906;
  background: #fff3d2;
  border: 1px solid #f0c46a;
}

.report-shop-bundle-missing .report-shop-badge.is-bundle {
  min-height: auto;
  padding: 0;
  color: #146c43;
  background: transparent;
  font-size: 0.8rem;
}

.report-shop-consulting-note {
  padding: 8px 10px;
  color: #7a4f08;
  background: #fff8e6;
  border: 1px solid #ffd99f;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.report-shop-cart-list,
.report-shop-summary {
  display: grid;
  gap: 10px;
}

.report-shop-cart-item,
.report-shop-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--report-border);
}

.report-shop-cart-name {
  display: grid;
  gap: 2px;
}

.report-shop-cart-name strong,
.report-shop-summary span {
  min-width: 0;
}

.report-shop-cart-price,
.report-shop-summary strong {
  display: grid;
  justify-items: end;
  gap: 3px;
  white-space: nowrap;
}

.report-shop-old-price {
  color: var(--report-muted);
  text-decoration: line-through;
  font-size: 0.78rem;
  font-weight: 750;
}

.report-shop-cart-item button {
  padding: 0;
  border: 0;
  color: #b4232b;
  background: transparent;
  font-size: 0.82rem;
}

.report-shop-total,
.report-shop-summary .is-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--report-border);
  color: var(--report-text);
  font-size: 1.1rem;
  font-weight: 850;
}

.report-shop-total strong,
.report-shop-summary .is-total strong {
  color: var(--report-primary);
  font-size: 1.35rem;
}

.report-shop-checkout,
.report-shop-payment {
  width: 100%;
  max-width: 760px;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 18px;
  margin: 0 auto;
}

.report-shop-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-shop-form-grid .is-wide {
  grid-column: 1 / -1;
}

.report-shop-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.report-shop-rabatt {
  display: grid;
  gap: 6px;
}

.report-shop-payment-methods,
.report-shop-confirmations {
  display: grid;
  gap: 10px;
}

.report-shop-payment-method,
.report-shop-confirmations label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #ffffff;
}

.report-shop-payment-method input,
.report-shop-confirmations input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  margin-top: 2px;
  accent-color: var(--report-primary);
}

.report-shop-confirmations .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  margin: 2px 0 0;
}

.report-shop-confirmations span {
  min-width: 0;
  line-height: 1.42;
}

.report-shop-confirmations a {
  color: var(--report-primary);
  font-weight: 800;
}

.report-shop-product-drawer {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(360px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-left: 1px solid var(--report-border);
  box-shadow: -18px 0 40px rgba(23, 32, 51, 0.16);
  z-index: 4;
}

.report-shop-product-drawer header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.report-shop-product-drawer header > div {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.report-shop-product-drawer h3 {
  margin: 0;
  color: var(--report-text);
  font-size: 1.2rem;
}

.report-shop-product-drawer p {
  margin: 0;
  color: var(--report-muted);
  line-height: 1.55;
}

.report-shop-product-drawer header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #ffffff;
}

.report-shop-overlay {
  padding: 18px;
}

.report-shop-overlay .report-shop-modal {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  max-height: none;
  border-radius: 8px;
}

.report-complete-purchase-copy .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.report-empty {
  margin: 16px 8px;
  color: var(--report-muted);
}

.report-room-toolbar,
.report-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.report-segmented {
  display: inline-grid;
  grid-template-columns: repeat(2, 38px);
  gap: 4px;
  padding: 4px;
  background: #edf2f7;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-segmented button,
.report-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.report-segmented button {
  width: 34px;
  height: 34px;
  color: var(--report-muted);
  border-radius: 6px;
}

.report-segmented button.active {
  color: #ffffff;
  background: var(--report-primary);
}

.report-room-empty-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed var(--report-border);
  border-radius: 8px;
}

.report-room-empty-state > i {
  font-size: 2.4rem;
  color: var(--report-primary);
}

.report-room-empty-state h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.report-room-collection {
  display: grid;
  gap: 24px;
}

.report-room-floor-group {
  display: grid;
  gap: 12px;
}

.report-room-floor-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  color: var(--report-text);
  background: transparent;
  border: 0;
  text-align: left;
}

.report-room-floor-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.report-room-floor-title strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.report-room-floor-summary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
  color: var(--report-muted);
  font-size: 0.9rem;
}

.report-room-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.report-room-card,
.report-heating-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-room-card {
  cursor: pointer;
}

.report-room-card.active {
  border-color: color-mix(in srgb, var(--report-primary) 60%, var(--report-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 14%, transparent);
}

.report-room-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--report-muted);
  background: #e8eef4;
  border: 0;
}

.report-room-card-image img,
.report-room-row-thumb img,
.report-heating-card-image img,
.report-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-room-card-image i {
  font-size: 2rem;
}

.report-room-card-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.report-room-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.report-room-card-title h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.report-room-card-title span {
  color: var(--report-muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.report-room-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-room-facts span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #314158;
  font-size: 0.88rem;
}

.report-room-facts i {
  color: var(--report-primary);
}

.report-room-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 0 14px 14px;
}

.report-room-card-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 8px;
  font-size: 0.78rem;
  min-width: 0;
  width: 100%;
}

.report-room-table-wrap {
  padding: 14px;
}

.report-room-table {
  width: 100%;
  margin: 0;
}

.report-room-row {
  cursor: pointer;
}

.report-room-row:hover,
.report-room-row:focus-visible {
  background: #f1f8ff;
  outline: 0;
}

.report-room-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.report-room-row-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 26px;
  padding: 3px 7px;
  font-size: 12px;
  white-space: nowrap;
}

.report-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.5);
}

.report-modal-overlay.is-stacked {
  z-index: 1010;
}

.report-alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(11, 18, 29, 0.46);
}

.report-alert-dialog {
  width: min(440px, 100%);
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #f0c1ca;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 28, 44, 0.28);
}

.report-alert-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f6f85;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-alert-close-button:hover,
.report-alert-close-button:focus-visible {
  color: var(--report-text);
  border-color: color-mix(in srgb, var(--report-primary) 45%, var(--report-border));
  outline: none;
}

.report-alert-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #a62c45;
  background: #fff0f3;
  font-size: 18px;
}

.report-alert-content {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.report-alert-content h2,
.report-alert-content p,
.report-alert-content strong {
  margin: 0;
}

.report-alert-content h2 {
  color: var(--report-text);
  font-size: 18px;
  font-weight: 850;
}

.report-alert-content p {
  color: #4b5c73;
  font-size: 14px;
  line-height: 1.45;
}

.report-alert-content strong {
  color: var(--report-text);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.report-alert-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.report-alert-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.report-alert-dialog.is-warning {
  border-color: #ffd99f;
}

.report-alert-dialog.is-warning .report-alert-icon {
  color: #955b08;
  background: #fff7e8;
}

.report-alert-dialog.is-info {
  border-color: #bfd7f3;
}

.report-alert-dialog.is-info .report-alert-icon {
  color: color-mix(in srgb, var(--report-primary) 82%, #0f172a);
  background: #eef6ff;
}

.report-room-modal,
.report-heating-modal,
.report-calculator-modal,
.report-uvalue-modal,
.report-shop-modal {
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.report-heating-modal {
  width: min(100%, 760px);
}

.report-heating-settings-modal {
  width: min(100%, 620px);
}

.report-shop-modal {
  width: min(1120px, calc(100vw - 48px));
  min-width: min(1120px, calc(100vw - 48px));
  max-width: min(1120px, calc(100vw - 48px));
  height: min(780px, calc(100vh - 48px));
  max-height: min(780px, calc(100vh - 48px));
}

.report-settings-modal {
  width: min(760px, calc(100vw - 48px));
  min-width: min(760px, calc(100vw - 48px));
  max-width: min(760px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.report-settings-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--report-border);
}

.report-settings-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--report-text);
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.report-settings-tabs button.active {
  color: var(--report-primary);
  border-color: color-mix(in srgb, var(--report-primary) 45%, var(--report-border));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--report-primary) 18%, transparent);
}

.report-settings-body {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  overflow-y: auto;
}

.report-settings-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.report-settings-hero {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-settings-hero > i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--report-primary);
  background: #eef6fc;
  border-radius: 8px;
  font-size: 20px;
}

.report-settings-hero h3,
.report-settings-hero p {
  margin: 0;
}

.report-settings-hero h3 {
  font-size: 19px;
  font-weight: 850;
}

.report-settings-hero p {
  color: var(--report-muted);
  font-size: 14px;
  line-height: 1.4;
}

.report-settings-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-settings-card > header {
  color: var(--report-text);
  font-size: 14px;
  font-weight: 850;
}

.report-settings-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.report-settings-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f6;
}

.report-settings-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-settings-list dt,
.report-settings-list dd {
  margin: 0;
}

.report-settings-list dt {
  color: var(--report-muted);
  font-size: 13px;
}

.report-settings-list dd {
  color: var(--report-text);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.report-settings-form .btn,
.report-settings-actions .btn,
.report-settings-card > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
}

.report-registration-evidence-card > p {
  margin: 0;
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.5;
}

.report-settings-current-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-settings-current-variant strong,
.report-settings-current-variant span {
  overflow-wrap: anywhere;
}

.report-settings-current-variant span {
  color: var(--report-muted);
  font-size: 13px;
}

.report-settings-variant-list {
  display: grid;
  gap: 8px;
}

.report-settings-variant {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--report-text);
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  text-align: left;
}

.report-settings-variant:hover:not(:disabled),
.report-settings-variant.active {
  border-color: color-mix(in srgb, var(--report-primary) 42%, var(--report-border));
  background: #f8fafc;
}

.report-settings-variant strong,
.report-settings-variant small {
  display: block;
}

.report-settings-variant small {
  margin-top: 2px;
  color: var(--report-muted);
  font-size: 12px;
}

.report-settings-variant i {
  color: var(--report-primary);
}

.report-settings-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-settings-actions > span {
  color: var(--report-muted);
  font-size: 13px;
}

.report-settings-partner {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-settings-partner strong {
  font-size: 17px;
}

.report-settings-partner span {
  color: var(--report-muted);
  font-size: 14px;
}

.report-share-code {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-share-code span {
  color: var(--report-muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.report-share-code strong {
  color: var(--report-primary);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.report-calculator-modal,
.report-uvalue-modal {
  width: min(100%, 460px);
  padding: 20px;
  gap: 14px;
}

.report-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--report-border);
}

.report-modal-head h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.report-icon-button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--report-muted);
  border-radius: 8px;
}

.report-icon-button:hover {
  color: var(--report-text);
  background: #edf2f7;
}

.report-room-tabs,
.report-heating-kind-tabs {
  display: grid;
  grid-template-columns: repeat(var(--report-room-tab-count, 6), minmax(0, 1fr));
  gap: 1px;
  background: var(--report-border);
  border-bottom: 1px solid var(--report-border);
}

.report-heating-kind-tabs {
  --report-room-tab-count: 3;
}

.report-room-tabs button,
.report-heating-kind-tabs button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--report-muted);
  background: #f8fafc;
  border: 0;
  font-weight: 700;
}

.report-room-tabs button.active,
.report-heating-kind-tabs button.active {
  color: var(--report-primary);
  background: #ffffff;
}

.report-modal-body {
  overflow: auto;
  padding: 20px;
}

.report-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.report-modal-stack {
  display: grid;
  gap: 16px;
}

.report-field {
  display: grid;
  gap: 6px;
}

.report-field span,
.report-switch-row span {
  color: #314158;
  font-size: 0.9rem;
  font-weight: 700;
}

.report-field.is-wide,
.report-input-tool.is-wide,
.report-help-field-row.is-wide,
.report-switch-row.is-wide,
.report-modal-section-head.is-wide,
.report-surface-row.is-wide,
.report-own-surface-header.is-wide,
.report-app-surface-row.is-wide,
.report-app-surface-header.is-wide,
.report-uvalue-row.is-wide,
.report-copy-drawer.is-wide {
  grid-column: 1 / -1;
}

.report-input-tool {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  align-items: end;
}

.report-input-tool > .btn {
  height: 38px;
}

.report-switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.report-modal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-modal-section-head h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.report-surface-row,
.report-own-surface-header,
.report-uvalue-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) repeat(3, minmax(90px, 0.8fr)) 42px;
  gap: 8px;
}

.report-uvalue-row {
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
}

.report-copy-drawer {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-copy-drawer button {
  display: grid;
  gap: 3px;
  padding: 10px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-copy-drawer span {
  color: var(--report-muted);
  font-size: 0.86rem;
}

.report-heating-card-grid {
  display: grid;
  gap: 10px;
}

.report-heating-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.report-heating-card-image {
  width: 86px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--report-muted);
  background: #e8eef4;
  border-radius: 8px;
}

.report-heating-card h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.report-heating-card p,
.report-heating-card small {
  margin: 0;
  color: var(--report-muted);
}

.report-heating-card-actions {
  display: flex;
  gap: 8px;
}

.report-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.report-photo-grid a {
  overflow: hidden;
  color: var(--report-text);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-photo-grid img {
  aspect-ratio: 4 / 3;
  display: block;
}

.report-photo-grid span {
  display: block;
  padding: 8px 10px;
  font-size: 0.86rem;
}

.report-heating-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.report-heating-category-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.report-heating-category-row button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 10px;
  color: #314158;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-heating-category-row button.active {
  color: #ffffff;
  background: var(--report-primary);
  border-color: var(--report-primary);
}

.report-selected-heater {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #14532d;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}

.report-heating-results {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 8px;
}

.report-heating-results button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-heating-results button.active {
  border-color: var(--report-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 12%, transparent);
}

.report-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--report-border);
}

.report-calculator-display {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
}

.report-calculator-target {
  padding: 10px 12px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--report-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.report-calculator-target.is-centered {
  text-align: center;
}

.report-project-consumption-calculator {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.report-project-consumption-calculator .btn-lg {
  width: 100%;
}

.report-calculator-display.is-result {
  color: var(--report-primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.report-calculator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.report-calculator-grid button {
  min-height: 44px;
  background: #ffffff;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  font-weight: 800;
}

.report-uvalue-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(110px, 0.7fr) 44px;
  gap: 8px;
}

.report-uvalue-layer-list {
  display: grid;
  gap: 8px;
}

.report-uvalue-layer-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 36px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
}

.report-uvalue-layer-list span {
  color: var(--report-muted);
  font-size: 0.86rem;
}

.report-uvalue-result {
  padding: 12px;
  text-align: center;
  color: var(--report-primary);
  background: #f8fafc;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .report-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .report-workspace {
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100vh - 69px);
    min-height: calc(var(--report-viewport-height, 100dvh) - var(--report-topbar-offset, 69px));
  }

  .report-workspace.is-nav-collapsed {
    grid-template-columns: var(--report-nav-collapsed-width) minmax(0, 1fr);
  }

  .report-sidebar {
    position: sticky;
    top: var(--report-topbar-offset, 69px);
    z-index: 9;
    align-self: start;
    height: calc(100vh - 69px);
    height: calc(var(--report-viewport-height, 100dvh) - var(--report-topbar-offset, 69px));
    padding: 18px 8px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-right: 1px solid var(--report-border);
    border-bottom: 0;
  }

  .report-workspace.is-nav-compact:not(.is-nav-collapsed) .report-sidebar {
    position: fixed;
    left: 0;
    width: min(var(--report-nav-width), 82vw);
    box-shadow: 18px 0 42px rgba(16, 32, 63, 0.18);
  }

  .report-workspace.is-nav-compact:not(.is-nav-collapsed) .report-content {
    grid-column: 1;
  }

  .report-workspace.is-nav-collapsed .report-sidebar {
    padding: 18px 8px;
  }

  .report-nav-subitem {
    padding-left: 12px;
  }

  .report-content {
    padding: 18px;
  }

  .report-room-layout,
  .report-form-grid,
  .report-project-form,
  .report-data-layout,
  .report-data-form-grid,
  .report-modal-grid {
    grid-template-columns: 1fr;
  }

  .report-span-2,
  .report-project-form > .is-half,
  .report-project-form .report-editor-card-grid > .is-half,
  .report-data-form-grid > .is-half,
  .report-data-form-grid > .is-three-quarter,
  .report-data-form-grid > .is-quarter {
    grid-column: span 1;
  }

  .report-data-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .report-data-card-head .btn {
    width: 100%;
  }

  .report-transfer-actions {
    justify-content: stretch;
  }

  .report-transfer-actions .btn {
    flex: 1 1 220px;
  }

  .report-address-row {
    grid-template-columns: 1fr;
  }

  .report-room-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-room-tabs button span {
    display: none;
  }

  .report-surface-row,
  .report-uvalue-row,
  .report-heating-card,
  .report-uvalue-layer-list > div {
    grid-template-columns: 1fr;
  }

  .report-complete-purchase-hero {
    grid-template-columns: 1fr;
  }

  .report-settings-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .report-login-panel {
    padding: 22px;
  }

  .report-login-shell {
    align-items: flex-start;
    padding: 12px;
  }

  .report-login-panel.is-registration {
    padding: 22px;
    border-radius: 14px;
  }

  .report-entry-switch {
    margin-top: 22px;
  }

  .report-registration-copy {
    margin-top: 24px;
    text-align: left;
  }

  .report-registration-steps {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .report-registration-steps i {
    display: none;
  }

  .report-registration-steps span {
    white-space: normal;
  }

  .report-registration-success {
    padding-top: 28px;
  }

  .report-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 12px;
    gap: 8px;
  }

  .report-brand {
    align-items: center;
    min-width: 0;
  }

  .report-brand > div {
    min-width: 0;
  }

  .report-brand strong,
  .report-brand span {
    overflow-wrap: anywhere;
  }

  .report-pane-head,
  .report-subhead {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-pane-head .btn,
  .report-data-footer .btn,
  .report-pane-footer .btn,
  .report-editor-footer .btn {
    width: 100%;
  }

  .report-transfer-content {
    grid-template-columns: 1fr;
  }

  .report-transfer-card,
  .report-transfer-card > *,
  .report-transfer-content > div,
  .report-transfer-actions {
    min-width: 0;
  }

  .report-data-card-head strong,
  .report-data-card-head span,
  .report-transfer-content h2,
  .report-transfer-content p {
    overflow-wrap: anywhere;
  }

  .report-transfer-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
    text-align: center;
  }

  .report-transfer-icon {
    width: 42px;
    height: 42px;
  }

  .report-room-toolbar {
    width: 100%;
  }

  .report-room-toolbar .btn {
    flex: 1;
  }

  .report-heating-modal .report-heating-results-panel,
  .report-heating-modal .report-heating-results-table-wrap {
    min-height: 0;
  }

  .report-heating-modal .report-heating-results-table-wrap {
    overflow: hidden !important;
    border: 1px solid var(--hr-border) !important;
    border-radius: 8px;
    background: #ffffff !important;
  }

  .report-heating-modal .report-heating-results-table {
    display: grid;
    width: 100% !important;
    min-width: 0 !important;
  }

  .report-heating-modal .report-heating-results-table thead {
    display: none;
  }

  .report-heating-modal .report-heating-results-table tbody {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .report-heating-modal .report-heating-results-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    row-gap: 3px;
    align-items: center;
    min-width: 0;
    padding: 10px 11px;
    border: 0;
    border-bottom: 1px solid var(--hr-border);
    border-radius: 0;
    background: #ffffff;
  }

  .report-heating-modal .report-heating-results-table tr + tr {
    margin-top: 0;
  }

  .report-heating-modal .report-heating-results-table tr:last-child {
    border-bottom: 0;
  }

  .report-heating-modal .report-heating-results-table td {
    display: block;
    min-width: 0;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  .report-heating-modal .report-heating-results-table > :not(caption) > * > * {
    background: transparent !important;
    border-bottom-width: 0 !important;
    box-shadow: none !important;
  }

  .report-heating-modal .report-heating-results-table td:first-child {
    display: grid;
    grid-column: 1;
    gap: 1px;
  }

  .report-heating-modal .report-heating-results-table td:nth-child(2),
  .report-heating-modal .report-heating-results-table td:nth-child(3) {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    grid-column: 1;
    gap: 5px;
    color: var(--hr-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  .report-heating-modal .report-heating-results-table td:nth-child(2)::before,
  .report-heating-modal .report-heating-results-table td:nth-child(3)::before {
    flex: 0 0 auto;
    color: var(--hr-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .report-heating-modal .report-heating-results-table td:nth-child(2)::before {
    content: "Maße:";
  }

  .report-heating-modal .report-heating-results-table td:nth-child(3)::before {
    content: "Normleistung:";
  }

  .report-heating-modal .report-heating-results-table td:last-child {
    display: flex;
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-content: flex-start;
    margin-top: 0;
  }

  .report-heating-modal .report-heating-results-table td:last-child .btn {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    white-space: normal;
  }

  .report-modal-overlay {
    align-items: stretch;
    padding: 10px;
  }

  .report-room-modal,
  .report-heating-modal,
  .report-calculator-modal,
  .report-uvalue-modal,
  .report-settings-modal {
    max-height: calc(100vh - 20px);
    max-height: calc(var(--report-viewport-height, 100dvh) - 20px);
  }

  .report-topbar-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    width: auto;
  }

  .report-topbar-actions .report-topbar-icon-action {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
  }

  .report-topbar-actions .report-topbar-icon-action span {
    display: none;
  }

  .report-settings-list > div,
  .report-settings-current-variant,
  .report-settings-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .report-modal-footer,
  .report-heating-search,
  .report-uvalue-add-row {
    grid-template-columns: 1fr;
  }

  .report-modal-footer {
    display: grid;
  }

  .report-modal-footer .btn {
    width: 100%;
  }

  .report-feature-card {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .report-feature-detail {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .report-complete-purchase-hero {
    min-height: 0;
    padding: 18px;
  }

  .report-complete-purchase-copy p {
    font-size: 1rem;
  }

  .report-feature-detail > span {
    grid-column: 2;
    justify-self: start;
  }

  .report-feature-detail > .btn {
    grid-column: 2;
    justify-self: start;
    width: 100%;
  }

  .report-feature-card > span {
    grid-column: 2;
    justify-self: start;
  }
}

/* Pro room editor parity layer.
   The report portal still uses its report data adapter, but the room UI now
   follows the Pro room editor shell, cards, tabs and floating field layout. */
.report-shell,
.report-modal-overlay {
  --hr-primary: var(--report-primary);
  --hr-primary-dark: color-mix(in srgb, var(--report-primary) 82%, #0f172a);
  --hr-switch-primary: var(--hr-primary);
  --hr-switch-primary-dark: var(--hr-primary-dark);
  --hr-border: var(--report-border);
  --hr-text: var(--report-text);
  --hr-muted: var(--report-muted);
  --hr-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.report-shell .form-check-input,
.report-modal-overlay .form-check-input {
  border-color: #c9d6e7;
  accent-color: var(--hr-primary);
}

.report-shell .form-check-input:focus,
.report-modal-overlay .form-check-input:focus {
  border-color: var(--hr-primary);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--hr-primary) 18%, transparent);
}

.report-shell .form-check-input:checked,
.report-shell .form-check-input[type="checkbox"]:indeterminate,
.report-modal-overlay .form-check-input:checked,
.report-modal-overlay .form-check-input[type="checkbox"]:indeterminate {
  border-color: var(--hr-primary);
  background-color: var(--hr-primary);
}

.report-shell .form-check-input:checked:focus,
.report-shell .form-check-input[type="checkbox"]:indeterminate:focus,
.report-modal-overlay .form-check-input:checked:focus,
.report-modal-overlay .form-check-input[type="checkbox"]:indeterminate:focus {
  border-color: var(--hr-primary-dark);
  background-color: var(--hr-primary);
}

.report-shell .form-check-input:checked:hover:not(:disabled),
.report-shell .form-check-input[type="checkbox"]:indeterminate:hover:not(:disabled),
.report-modal-overlay .form-check-input:checked:hover:not(:disabled),
.report-modal-overlay .form-check-input[type="checkbox"]:indeterminate:hover:not(:disabled) {
  border-color: var(--hr-primary-dark);
  background-color: var(--hr-primary-dark);
}

.report-shell .form-switch .form-check-input,
.report-modal-overlay .form-switch .form-check-input,
.report-switch-row .form-check-input {
  border-color: #c9d6e7;
  background-color: #e9eef5;
}

.report-shell .form-switch .form-check-input:focus,
.report-modal-overlay .form-switch .form-check-input:focus,
.report-switch-row .form-check-input:focus {
  border-color: var(--hr-switch-primary);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--hr-switch-primary) 18%, transparent);
}

.report-shell .form-switch .form-check-input:checked,
.report-modal-overlay .form-switch .form-check-input:checked,
.report-switch-row .form-check-input:checked {
  border-color: var(--hr-switch-primary);
  background-color: var(--hr-switch-primary);
}

.report-shell .form-switch .form-check-input:checked:focus,
.report-modal-overlay .form-switch .form-check-input:checked:focus,
.report-switch-row .form-check-input:checked:focus {
  border-color: var(--hr-switch-primary-dark);
  background-color: var(--hr-switch-primary);
}

.report-shell .form-switch .form-check-input:checked:hover:not(:disabled),
.report-modal-overlay .form-switch .form-check-input:checked:hover:not(:disabled),
.report-switch-row .form-check-input:checked:hover:not(:disabled) {
  border-color: var(--hr-switch-primary-dark);
  background-color: var(--hr-switch-primary-dark);
}

.report-room-toolbar {
  justify-content: flex-end;
}

.report-room-list-offline-sync {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 280px);
  max-width: 100%;
  min-height: 34px;
  padding: 6px 8px 6px 10px;
  border: 1px solid rgba(181, 122, 25, 0.26);
  border-radius: 8px;
  background: #fff8e6;
  color: #6f4a06;
  font-size: 13px;
  font-weight: 700;
}

.report-room-list-offline-sync-body {
  display: flex;
  width: 100%;
}

.report-room-list-offline-sync.is-error {
  border-color: rgba(190, 18, 60, 0.22);
  background: #fff1f2;
  color: #9f1239;
}

.report-room-list-offline-sync > i {
  flex: 0 0 auto;
}

.report-room-list-offline-sync > span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-room-list-offline-sync > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 6px;
  min-height: 28px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.report-segmented {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
}

.report-segmented button {
  width: auto;
  min-width: 42px;
  height: 34px;
  border-radius: 0;
  border-right: 1px solid var(--hr-border);
  color: var(--hr-muted);
  font-size: 13px;
  font-weight: 800;
}

.report-segmented button:last-child {
  border-right: 0;
}

.report-segmented button:hover,
.report-segmented button:focus-visible {
  color: var(--hr-primary-dark);
  background: #f1f8ff;
  outline: 0;
}

.report-segmented button.active {
  color: #ffffff;
  background: var(--hr-primary);
}

.report-room-collection {
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
}

.report-room-floor-group {
  min-width: 0;
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
}

.report-room-floor-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--hr-border);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: #ffffff;
  color: var(--hr-text);
  text-align: left;
}

.report-room-floor-header:hover,
.report-room-floor-header:focus-visible {
  background: #f7fbff;
  outline: 0;
}

.report-room-floor-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.report-room-floor-title i {
  color: var(--hr-primary);
  font-size: 12px;
}

.report-room-floor-title strong {
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
}

.report-room-floor-summary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
  color: var(--hr-muted);
  font-size: 13px;
  font-weight: 800;
}

.report-room-floor-summary > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid #d6e3f2;
  border-radius: 7px;
  background: #f7fbff;
  color: #315f8f;
  line-height: 1;
}

.report-room-floor-group.is-collapsed .report-room-floor-header {
  border-bottom-color: transparent;
}

.report-room-floor-body {
  min-width: 0;
}

.report-room-card-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: stretch;
  gap: 12px;
  padding: 14px;
}

.report-room-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.report-room-card:hover,
.report-room-card:focus-within,
.report-room-card:focus-visible {
  border-color: #8bbce8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
  outline: 0;
  transform: translateY(-1px);
}

.report-room-card.is-offline-delete-pending {
  border-color: #d8dee8;
  background: #f3f6f9;
  cursor: not-allowed;
  opacity: .62;
  transform: none;
}

.report-room-card.is-offline-delete-pending:hover,
.report-room-card.is-offline-delete-pending:focus-within,
.report-room-card.is-offline-delete-pending:focus-visible {
  border-color: #d8dee8;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  outline: 0;
  transform: none;
}

.report-room-card.is-offline-delete-pending .report-room-card-image {
  filter: grayscale(.85);
}

.report-room-card-image {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: #7d8da1;
  background: linear-gradient(135deg, #eef3f8 0%, #dbe5ef 100%);
}

.report-room-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.report-room-card-body {
  flex: 1 1 auto;
  gap: 11px;
  min-width: 0;
  padding: 13px;
}

.report-room-card-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.report-room-card-title h3 {
  min-width: 0;
  overflow: hidden;
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-room-card-title span {
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid #d6e3f2;
  border-radius: 7px;
  background: #f7fbff;
  color: #315f8f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.report-room-delete-pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 22px;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid #e2c36d;
  border-radius: 999px;
  background: #fff8e6;
  color: #7a560f;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}

.report-room-card-body > .report-room-delete-pending-badge {
  margin-left: 0;
}

.report-room-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-room-facts span {
  display: grid;
  gap: 2px;
  color: #506178;
  font-size: 12px;
  font-weight: 700;
}

.report-room-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
  margin-top: auto;
  padding: 0 13px 13px;
}

.report-room-card-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 26px;
  padding: 3px 7px;
  font-size: 12px;
  min-width: 0;
  width: 100%;
}

.report-room-table-wrap {
  padding: 14px;
}

.report-room-table {
  width: 100%;
  margin: 0;
}

.report-room-table th {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-room-table td,
.report-room-table th {
  border-color: var(--hr-border);
}

.report-room-row {
  cursor: pointer;
}

.report-room-row.is-offline-delete-pending {
  cursor: not-allowed;
  opacity: .58;
}

.report-room-row:hover,
.report-room-row:focus-visible {
  background: #f1f8ff;
  outline: 0;
}

.report-room-row.is-offline-delete-pending:hover,
.report-room-row.is-offline-delete-pending:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.report-room-row:focus-visible td:first-child {
  box-shadow: inset 3px 0 0 var(--hr-primary);
}

.report-room-row.is-offline-delete-pending:focus-visible td:first-child {
  box-shadow: none;
}

.report-room-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.report-room-row-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 26px;
  padding: 3px 7px;
  font-size: 12px;
  white-space: nowrap;
}

.report-modal-overlay {
  display: grid;
  align-items: stretch;
  justify-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .42);
}

.report-modal-overlay.report-shop-overlay {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  justify-items: stretch;
  overflow: hidden;
  padding: 18px;
}

.report-modal-overlay.report-shop-overlay .report-shop-modal {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  max-height: none;
  border-radius: 8px;
}

.report-room-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(560px, calc(100vw - 48px));
  min-width: 0;
  max-width: min(560px, calc(100vw - 48px));
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--hr-shadow-lg);
}

.report-room-modal .report-modal-head,
.report-room-modal .report-room-tabs,
.report-room-modal .report-modal-footer {
  flex: 0 0 auto;
}

.report-room-modal .report-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-padding-block: 20px;
  padding: 0;
  overscroll-behavior: contain;
}

.report-room-modal .report-eyebrow {
  display: none;
}

.report-modal-head,
.report-modal-footer {
  padding: 14px 16px;
}

.report-modal-head {
  align-items: center;
}

.report-modal-head h2 {
  color: var(--hr-text);
  font-size: 17px;
  font-weight: 800;
}

.report-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--hr-border);
  background: #ffffff;
  color: var(--hr-muted);
}

.report-modal-footer {
  position: relative;
  z-index: 2;
  background: #ffffff;
  box-shadow: 0 -8px 18px rgba(15, 23, 42, 0.06);
}

.report-room-tabs,
.report-heating-kind-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  overflow-x: visible;
  padding: 0;
  border-bottom: 1px solid var(--hr-border);
  background: #f8fafc;
}

.report-room-tabs button,
.report-heating-kind-tabs button {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 88px;
  min-height: 58px;
  padding: 8px 6px;
  border: 0;
  border-right: 1px solid var(--hr-border);
  border-bottom: 1px solid var(--hr-border);
  background: transparent;
  color: #506178;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.report-room-tabs button.active,
.report-heating-kind-tabs button.active {
  color: #ffffff;
  background: var(--hr-primary);
}

.report-room-tabs button:hover:not(.active),
.report-heating-kind-tabs button:hover:not(.active) {
  color: var(--hr-primary-dark);
  background: #eef7ff;
}

.report-room-tabs button span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-modal-grid,
.report-modal-stack {
  padding: 16px 18px 18px;
}

.report-modal-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
}

.report-modal-grid > .report-field,
.report-modal-grid > .report-input-tool {
  grid-column: span 6;
}

.report-field.is-wide,
.report-input-tool.is-wide,
.report-switch-row.is-wide,
.report-modal-section-head.is-wide,
.report-surface-row.is-wide,
.report-own-surface-header.is-wide,
.report-app-surface-row.is-wide,
.report-app-surface-header.is-wide,
.report-uvalue-row.is-wide,
.report-copy-drawer.is-wide {
  grid-column: 1 / -1;
}

.report-field {
  position: relative;
  display: block;
  min-width: 0;
}

.report-help-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.report-help-field-row > .report-field {
  min-width: 0;
}

.report-field > span {
  position: absolute;
  top: 7px;
  left: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  overflow: hidden;
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.report-field .form-control,
.report-field .form-select {
  width: 100%;
  min-height: 58px;
  padding: 24px 12px 7px;
  border-radius: 6px;
  font-size: max(16px, 1rem);
}

.report-field textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.report-input-tool {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-width: 0;
}

.report-input-tool.has-help {
  grid-template-columns: 58px minmax(0, 1fr) 32px;
}

.report-input-tool.has-help:not(:has(> .btn)) {
  grid-template-columns: minmax(0, 1fr) 32px;
}

.report-input-tool > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 6px 0 0 6px;
}

.report-input-tool > .report-field .form-control,
.report-input-tool > .report-field .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.report-input-tool > .report-field:only-child {
  grid-column: 1 / -1;
}

.report-room-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  padding: 16px 18px 18px;
}

.report-room-form > .is-wide,
.report-editor-card-grid > .is-wide,
.report-info-alert.is-wide,
.report-editor-card.is-wide,
.report-note-card.is-wide,
.report-own-surfaces.is-wide,
.report-card-note.is-wide {
  grid-column: 1 / -1;
}

.report-room-form > .is-half,
.report-editor-card-grid > .is-half {
  grid-column: span 6;
}

.report-help-side-button {
  width: 24px;
  height: 58px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: stretch;
}

.report-info-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--hr-primary) 30%, var(--hr-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--hr-primary) 8%, #ffffff);
  color: var(--hr-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.report-info-alert i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--hr-primary);
}

.report-editor-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-editor-card > header,
.report-own-surfaces > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.report-editor-card > header strong,
.report-own-surfaces > header strong {
  color: var(--hr-text);
  font-size: 14px;
}

.report-editor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.report-card-note {
  margin: -2px 0 0;
  color: var(--hr-muted);
  font-size: 13px;
  line-height: 1.35;
}

.report-own-surfaces {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px dashed color-mix(in srgb, var(--hr-primary) 34%, var(--hr-border));
  border-radius: 8px;
  background: #ffffff;
}

.report-muted {
  color: var(--hr-muted);
  font-size: 13px;
  font-weight: 700;
}

.report-volume-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-note-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
}

.report-note-card > span {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 700;
}

.report-note-card textarea {
  min-height: 96px;
  resize: vertical;
}

.report-uvalue-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px 18px 18px;
}

.report-uvalue-info-card,
.report-uvalue-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
}

.report-uvalue-info-card {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-color: #d8e0ea;
  background: #f1f5f9;
}

.report-uvalue-info-card p {
  margin: 0;
  color: var(--hr-text);
  font-size: 16px;
  line-height: 1.5;
}

.report-uvalue-info-icon,
.report-uvalue-copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--hr-primary);
  font-size: 21px;
}

.report-uvalue-card {
  gap: 12px;
  padding: 14px;
  background: #ffffff;
}

.report-uvalue-list {
  display: grid;
  gap: 4px;
}

.report-uvalue-item {
  display: grid;
  gap: 8px;
  padding: 2px 0 12px;
  border-bottom: 1px solid #edf2f7;
}

.report-uvalue-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-uvalue-item small {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 500;
}

.report-uvalue-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
  padding-left: calc(2.45em + 10px);
}

.report-uvalue-input-row > .btn,
.report-uvalue-add-row > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 6px;
  background-color: var(--hr-primary);
  border-color: var(--hr-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.report-uvalue-input-row > .btn:hover,
.report-uvalue-add-row > .btn:hover {
  background-color: var(--hr-primary-dark);
  border-color: var(--hr-primary-dark);
  color: #ffffff;
}

.report-uvalue-note {
  margin: 2px 0 0;
  color: var(--hr-muted);
  font-size: 13px;
}

.report-uvalue-copy-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 4px -14px -14px;
  padding: 14px;
  border-top: 1px solid var(--hr-border);
  background: #f8fafc;
}

.report-uvalue-copy-card p {
  margin: 0;
  color: var(--hr-text);
  font-size: 13px;
}

.report-link-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hr-primary);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.report-link-button:hover:not(:disabled) {
  color: var(--hr-primary-dark);
}

.report-link-button:disabled {
  opacity: .55;
  text-decoration: none;
}

.report-uvalue-copy-list {
  display: grid;
  gap: 8px;
}

.report-uvalue-copy-list button {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-text);
  text-align: left;
}

.report-uvalue-copy-list button:hover:not(:disabled) {
  border-color: var(--hr-primary);
  background: #f7fbff;
}

.report-uvalue-copy-list span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.report-uvalue-copy-list strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-uvalue-insulation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-uvalue-insulation-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--hr-muted);
  font-size: 14px;
  line-height: 1.45;
}

.report-uvalue-insulation-note i {
  margin-top: 2px;
  color: var(--hr-primary);
}

.report-openings-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px 18px 18px;
}

.report-opening-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-opening-card > header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
}

.report-opening-card h3 {
  margin: 0;
  color: var(--hr-text);
  font-size: 17px;
  font-weight: 800;
}

.report-opening-note {
  margin: -2px 0 2px;
  color: var(--hr-muted);
  font-size: 13px;
  line-height: 1.4;
}

.report-opening-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
}

.report-opening-help {
  border: 0;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 58px;
  color: var(--hr-primary);
  font-size: 15px;
  cursor: pointer;
}

.report-help-button {
  border: 0;
  padding: 0;
  margin-left: 6px;
  background: transparent;
  color: var(--hr-primary);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
  vertical-align: middle;
}

.report-help-button.report-help-side-button {
  width: 24px;
  height: 58px;
  margin-left: 0;
  align-self: stretch;
  justify-self: end;
}

.report-help-button:hover,
.report-opening-help:hover {
  color: var(--hr-primary-dark);
}

.report-help-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1105;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.32);
}

.report-help-drawer {
  width: min(460px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
  animation: reportHelpDrawerIn 0.2s ease-out;
}

.report-help-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--report-border);
}

.report-help-drawer-head h2 {
  margin: 0;
  color: var(--report-text);
  font-size: 20px;
  font-weight: 800;
}

.report-help-drawer-head .report-icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-muted);
}

.report-help-drawer-head .report-icon-button:hover,
.report-help-drawer-head .report-icon-button:focus-visible {
  border-color: #c5d4e7;
  background: #f6f8fb;
  color: var(--hr-text);
}

.report-help-drawer-body {
  overflow: auto;
  padding: 22px;
  color: var(--report-text);
}

.report-help-loading {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--report-muted);
  font-weight: 700;
}

.report-help-error-hero {
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px 24px;
  border: 1px dashed color-mix(in srgb, var(--hr-primary) 28%, var(--hr-border));
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-muted);
  text-align: center;
}

.report-help-error-hero-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--hr-primary);
  background: color-mix(in srgb, var(--hr-primary) 10%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hr-primary) 22%, #ffffff);
  font-size: 24px;
}

.report-help-error-hero h3 {
  margin: 0;
  color: var(--hr-text);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.report-help-error-hero p:not(.report-eyebrow) {
  max-width: 330px;
  margin: 0;
  color: var(--hr-muted);
  font-size: 15px;
  line-height: 1.5;
}

.report-help-content {
  font-size: 15px;
  line-height: 1.6;
}

.report-help-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.report-help-content p:last-child {
  margin-bottom: 0;
}

@keyframes reportHelpDrawerIn {
  from {
    transform: translateX(24px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.report-opening-input-group > .btn i {
  font-size: 24px;
}

.report-opening-collapse {
  display: grid;
  gap: 10px;
}

.report-opening-uvalue-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
}

.report-opening-uvalue-box .report-switch-row {
  padding: 0;
}

.report-opening-uvalue-field {
  max-width: 360px;
}

.report-switch-row {
  align-items: flex-start;
  gap: 10px;
  min-height: 0;
  padding: 8px 0;
  color: var(--hr-text);
  font-size: 14px;
  line-height: 1.35;
}

.report-switch-row .form-check-input {
  flex: 0 0 auto;
  width: 2.45em;
  height: 1.25em;
  margin-top: 1px;
  border-radius: 999px;
}

.report-switch-row span {
  min-width: 0;
  color: var(--hr-text);
  font-size: 14px;
  font-weight: 700;
}

.report-modal-section-head {
  min-height: 44px;
  padding: 0 0 4px;
}

.report-modal-section-head h3 {
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
}

.report-surface-row,
.report-own-surface-header {
  grid-template-columns: minmax(100px, 1fr) minmax(80px, .7fr) minmax(80px, .7fr) minmax(90px, .8fr) 38px;
  gap: 8px;
}

.report-app-surface-row,
.report-app-surface-header {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(80px, .7fr) minmax(80px, .7fr) minmax(90px, .8fr) 38px;
  gap: 8px;
  align-items: center;
}

.report-own-surface-header,
.report-app-surface-header {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.report-uvalue-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 2px 0 12px;
  border-bottom: 1px solid #edf2f7;
}

.report-uvalue-row .report-input-tool {
  grid-template-columns: 58px minmax(0, 1fr);
  padding-left: calc(2.45em + 10px);
}

.report-copy-drawer {
  padding: 14px;
  background: #f8fafc;
}

.report-heating-card {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  border: 1px solid var(--hr-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.report-heating-card-image {
  background: #eef3f8;
}

.report-room-heating-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.report-room-heating-card-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.report-room-heating-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.report-room-heating-card.is-upload-drop-active {
  border-color: color-mix(in srgb, var(--hr-primary) 58%, var(--hr-border));
  background: color-mix(in srgb, var(--hr-primary) 5%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hr-primary) 14%, transparent), 0 1px 2px rgba(15, 23, 42, .04);
}

.report-room-heating-card.is-uploading-images {
  cursor: progress;
}

.report-room-heating-card-main {
  display: grid;
  grid-template-columns: minmax(126px, .34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
}

.report-room-heating-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #eef3f8;
}

.report-room-heating-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.report-room-heating-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #7d8da1;
}

.report-room-heating-card-placeholder i {
  font-size: 2rem;
}

.report-room-heating-picture-count {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(16, 32, 63, .78);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.report-room-heating-card-content {
  min-width: 0;
  padding-top: 2px;
}

.report-room-heating-card-content h4 {
  margin: 0 0 8px;
  color: var(--hr-text);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.report-room-heating-card-details {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.report-room-heating-card-details > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  background: #f8fafc;
}

.report-room-heating-card-details span {
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.report-room-heating-card-details strong {
  min-width: 0;
  color: #253247;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.report-picture-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-room-heating-pictures {
  --report-room-thumbnail-size: min(82px, calc((100% - 30px) / 4));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, var(--report-room-thumbnail-size)));
  align-items: center;
  justify-content: start;
  gap: 10px;
  max-width: 358px;
  margin-top: 10px;
}

.report-room-media-pictures {
  --report-room-thumbnail-size: min(117px, calc((100% - 30px) / 4));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, var(--report-room-thumbnail-size)));
  justify-content: start;
  gap: 10px;
}

.report-picture-thumb {
  width: 82px;
  height: 82px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #d9e4f0;
  border-radius: 8px;
  background: #ffffff;
}

.report-room-heating-pictures .report-picture-thumb,
.report-room-media-pictures .report-picture-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.report-picture-thumb:hover,
.report-picture-thumb:focus-visible {
  border-color: color-mix(in srgb, var(--hr-primary) 42%, #8bbce8);
  background: color-mix(in srgb, var(--hr-primary) 7%, #ffffff);
  outline: 0;
}

.report-picture-thumb-placeholder {
  color: #7d8da1;
  background: #eef3f8;
  cursor: default;
  pointer-events: none;
}

.report-picture-thumb-placeholder i {
  font-size: 20px;
}

.report-picture-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background: #e8eef6;
}

.report-room-heating-pictures .report-picture-thumb img,
.report-room-media-pictures .report-picture-thumb img {
  width: 100%;
  height: 100%;
}

.report-picture-thumb-add {
  flex-direction: column;
  gap: 5px;
  border-style: dashed;
  color: var(--hr-primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.report-picture-thumb-add i {
  font-size: 20px;
}

.report-picture-thumb-add.is-disabled {
  opacity: .58;
  cursor: progress;
}

.report-picture-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.report-room-heating-card-footer {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--hr-border);
  background: #f8fafc;
}

.report-room-heating-card-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 400;
}

.report-room-heating-note-panel {
  border-top: 1px solid transparent;
  background: #f8fafc;
  transition: border-color .18s ease;
}

.report-room-heating-note-panel.is-open {
  border-top-color: var(--hr-border);
}

.report-heating-surface-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: max-height .2s ease, opacity .18s ease, transform .18s ease;
}

.report-room-heating-note-panel.is-open .report-heating-surface-collapse {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.report-room-heating-note-panel-inner {
  padding: 12px 14px;
}

.report-heating-surface-note-editor {
  display: grid;
  gap: 8px;
}

.report-textarea-field {
  position: relative;
}

.report-heating-surface-note-editor textarea {
  min-height: 68px;
  padding-right: 66px;
  padding-bottom: 25px;
  color: #506178;
  font-size: 13px;
  overflow: hidden;
  resize: vertical;
}

.report-textarea-count {
  position: absolute;
  right: 10px;
  bottom: 7px;
  padding: 2px 7px;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  pointer-events: none;
}

.report-field-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 34px;
}

.report-field-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: auto;
}

.report-unsaved-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a5d13;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.report-room-heating-note-panel .report-form-message {
  margin: 0;
}

.report-room-heating-upload-overlay,
.report-room-media-upload-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, .82);
  color: var(--hr-text);
  text-align: center;
  backdrop-filter: blur(2px);
}

.report-room-heating-upload-overlay .spinner-border,
.report-room-media-upload-overlay .spinner-border {
  width: 34px;
  height: 34px;
  color: var(--hr-primary);
}

.report-room-heating-upload-overlay strong,
.report-room-media-upload-overlay strong {
  font-size: 14px;
  line-height: 1.25;
}

.report-room-media-dropzone {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 16px 18px 18px;
  border: 1px dashed transparent;
  border-radius: 8px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.report-room-media-dropzone.is-upload-drop-active {
  border-color: color-mix(in srgb, var(--hr-primary) 58%, var(--hr-border));
  background: color-mix(in srgb, var(--hr-primary) 5%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hr-primary) 14%, transparent);
}

.report-room-media-dropzone.is-uploading-images {
  cursor: progress;
}

.report-room-media-block {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.report-room-media-block > strong {
  color: var(--hr-text);
  font-size: 14px;
}

.report-empty-hero {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
  border: 1px dashed color-mix(in srgb, var(--hr-primary) 28%, var(--hr-border));
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-muted);
  text-align: center;
}

.report-empty-hero-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--hr-primary);
  background: color-mix(in srgb, var(--hr-primary) 10%, #ffffff);
  font-size: 20px;
}

.report-empty-hero h3 {
  margin: 0;
  color: var(--hr-text);
  font-size: 17px;
  letter-spacing: 0;
}

.report-empty-hero p {
  margin: 0;
  color: var(--hr-muted);
  font-size: 13px;
}

.report-picture-viewer {
  position: fixed;
  inset: 0;
  z-index: 2080;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: rgba(9, 16, 25, .96);
  color: #ffffff;
  outline: 0;
}

.report-picture-viewer-bar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(8, 13, 20, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.report-picture-viewer-bar > div:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.report-picture-viewer-bar strong,
.report-picture-viewer-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-picture-viewer-bar strong {
  font-size: 15px;
  font-weight: 800;
}

.report-picture-viewer-bar span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 700;
}

.report-picture-viewer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-picture-viewer-actions button,
.report-picture-viewer-nav {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

.report-picture-viewer-actions button:hover,
.report-picture-viewer-actions button:focus-visible,
.report-picture-viewer-nav:hover,
.report-picture-viewer-nav:focus-visible {
  background: rgba(255, 255, 255, .18);
  outline: 0;
}

.report-picture-viewer-actions button:disabled {
  opacity: .45;
  pointer-events: none;
}

.report-picture-viewer-stage {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 18px 88px 72px;
  overflow: hidden;
  user-select: none;
}

.report-picture-viewer-stage img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .42);
}

.report-picture-viewer-nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.report-picture-viewer-nav.is-prev {
  left: 22px;
}

.report-picture-viewer-nav.is-next {
  right: 22px;
}

.report-modal-overlay.is-stacked {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  background: rgba(15, 23, 42, .28);
}

.report-heating-modal,
.report-calculator-modal,
.report-uvalue-modal {
  width: min(430px, calc(100% - 24px));
  min-width: 0;
  max-width: calc(100% - 24px);
  height: 100%;
  max-height: 100%;
  border-radius: 0;
  border-left: 1px solid var(--hr-border);
  box-shadow: -18px 0 38px rgba(15, 23, 42, .18);
}

.report-heating-modal {
  width: min(860px, calc(100vw - 24px));
  max-width: min(860px, calc(100vw - 24px));
}

.report-heating-modal.report-heating-settings-modal {
  width: min(620px, calc(100vw - 24px));
  max-width: min(620px, calc(100vw - 24px));
}

.report-modal-overlay.is-stacked .report-heating-settings-drawer {
  top: 0;
  right: 0;
  bottom: 0;
}

.report-calculator-modal,
.report-uvalue-modal {
  padding: 0;
}

.report-calculator-modal > .report-modal-head,
.report-uvalue-modal > .report-modal-head,
.report-heating-modal > .report-modal-head {
  flex: 0 0 auto;
}

.report-calculator-modal,
.report-uvalue-modal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-heating-modal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.report-heating-modal .report-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px;
}

.report-heating-modal .report-modal-stack {
  gap: 12px;
  padding: 0;
}

.report-heating-modal .report-modal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.report-heating-modal .report-heating-kind-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 16px 0;
  background: #ffffff;
  border-bottom: 0;
}

.report-heating-modal .report-heating-kind-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-text);
  font-size: 13px;
  font-weight: 800;
}

.report-heating-modal .report-heating-kind-tabs button:hover:not(:disabled),
.report-heating-modal .report-heating-kind-tabs button:focus-visible {
  border-color: color-mix(in srgb, var(--hr-primary) 42%, var(--hr-border));
  outline: none;
}

.report-heating-modal .report-heating-kind-tabs button.active {
  border-color: color-mix(in srgb, var(--hr-primary) 56%, var(--hr-border));
  background: color-mix(in srgb, var(--hr-primary) 8%, #ffffff);
  color: var(--hr-primary);
}

.report-heating-modal .report-heating-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.report-heating-modal .report-heating-search .form-control {
  min-height: 58px;
  border-radius: 8px;
}

.report-heating-modal .report-heating-search .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 700;
}

.report-heating-modal .report-heating-category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.report-heating-modal .report-heating-category-row button {
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  border-color: var(--hr-border);
  border-radius: 8px;
  color: var(--hr-text);
  font-size: 13px;
  font-weight: 800;
  white-space: normal;
}

.report-heating-modal .report-heating-category-row button.active {
  border-color: color-mix(in srgb, var(--hr-primary) 56%, var(--hr-border));
  background: color-mix(in srgb, var(--hr-primary) 8%, #ffffff);
  color: var(--hr-primary);
}

.report-heating-modal .report-heating-category-row.is-primary {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.report-heating-modal .report-heating-category-row.is-primary button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  justify-content: stretch;
  align-items: center;
  gap: 9px;
  min-height: 78px;
  padding: 10px;
  text-align: left;
}

.report-heating-modal .report-heating-category-row.is-primary button > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eef5fb;
  color: var(--hr-primary);
}

.report-heating-modal .report-heating-category-row.is-primary button > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.report-heating-modal .report-heating-category-row.is-primary strong {
  color: var(--hr-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.report-heating-modal .report-heating-category-row.is-primary small {
  color: var(--hr-muted);
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-heating-modal .report-heating-subcategory-panel {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fbfdff;
}

.report-heating-modal .report-heating-subcategory-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding-right: 40px;
}

.report-heating-modal .report-heating-subcategory-head span {
  min-width: 0;
  color: var(--hr-text);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.report-heating-modal .report-heating-subcategory-head small {
  min-width: 0;
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-heating-modal .report-heating-step-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.report-heating-modal .report-heating-step-actions small {
  max-width: min(360px, 52vw);
}

.report-heating-modal .report-heating-step-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-primary);
}

.report-heating-modal .report-heating-step-toggle:hover,
.report-heating-modal .report-heating-step-toggle:focus-visible {
  border-color: color-mix(in srgb, var(--hr-primary) 46%, var(--hr-border));
  outline: none;
}

.report-heating-modal .report-heating-selected {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--hr-primary) 28%, var(--hr-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--hr-primary) 7%, #ffffff);
}

.report-heating-modal .report-heating-selected strong {
  min-width: 0;
  color: var(--hr-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-heating-modal .report-heating-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-heating-modal .report-heating-subcategories.is-wide button {
  flex: 1 1 230px;
  max-width: 100%;
  white-space: normal;
  justify-content: flex-start;
  text-align: left;
}

.report-heating-modal .report-heating-subcategories button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hr-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.report-heating-modal .report-heating-subcategories button:hover,
.report-heating-modal .report-heating-subcategories button:focus-visible {
  border-color: color-mix(in srgb, var(--hr-primary) 42%, var(--hr-border));
  outline: none;
}

.report-heating-modal .report-heating-subcategories button.active {
  border-color: color-mix(in srgb, var(--hr-primary) 56%, var(--hr-border));
  background: color-mix(in srgb, var(--hr-primary) 9%, #ffffff);
  color: var(--hr-primary);
}

.report-heating-settings-body {
  gap: 14px;
}

.report-heating-settings-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-heating-settings-summary span {
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-heating-settings-summary strong {
  min-width: 0;
  color: var(--hr-text);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.report-heating-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-heating-settings-grid > .report-heating-subcategory-panel,
.report-heating-settings-grid > .report-heating-distance-range {
  grid-column: 1 / -1;
}

.report-heating-distance-range {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fbfdff;
}

.report-heating-distance-range > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-right: 40px;
  color: var(--hr-text);
  font-size: 13px;
  font-weight: 800;
}

.report-heating-modal .report-heating-subcategory-head .report-help-button,
.report-heating-settings-drawer .project-exchange-editor-subcategory-head .report-help-button,
.report-heating-settings-drawer .project-room-editor-heating-distance-range .report-help-button {
  position: absolute;
  top: 8px;
  right: 9px;
  z-index: 3;
  width: 32px;
  height: 32px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.report-heating-distance-range strong {
  color: var(--hr-primary);
}

.report-heating-range-scale {
  display: flex;
  justify-content: space-between;
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 700;
}

.report-heating-valve-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-heating-valve-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-heating-valve-head h3,
.report-heating-valve-head p {
  margin: 0;
}

.report-heating-valve-head h3 {
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
}

.report-heating-valve-head p {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 700;
}

.report-heating-valve-steps {
  display: grid;
  gap: 12px;
}

.report-heating-valve-steps .report-heating-subcategory-panel {
  margin-bottom: 0;
  background: #ffffff;
}

.report-heating-settings-modal .report-heating-valve-options {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.report-heating-valve-options button {
  justify-content: flex-start;
  text-align: left;
  overflow-wrap: anywhere;
}

.report-heating-valve-options.is-wide button {
  flex: 1 1 230px;
  max-width: 100%;
}

.report-heating-valve-head .btn {
  white-space: nowrap;
}

.report-hydraulic-collapse-enter-active,
.report-hydraulic-collapse-leave-active {
  overflow: hidden;
  transition: max-height 180ms ease, opacity 160ms ease, transform 160ms ease;
}

.report-hydraulic-collapse-enter-from,
.report-hydraulic-collapse-leave-to {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
}

.report-hydraulic-collapse-enter-to,
.report-hydraulic-collapse-leave-from {
  max-height: 4200px;
  opacity: 1;
  transform: translateY(0);
}

.report-heating-circuit-options button {
  min-width: 118px;
}

.report-heating-modal .report-heating-floor-flow {
  display: grid;
  gap: 12px;
  min-height: 0;
}

.report-heating-modal .report-heating-floor-panel {
  margin-bottom: 0;
}

.report-heating-modal .report-heating-floor-options button {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 13px;
}

.report-heating-modal .report-heating-floor-area-panel {
  gap: 12px;
}

.report-heating-modal .report-heating-floor-area-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-heating-modal .report-heating-floor-area-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: normal;
}

.report-heating-modal .report-heating-manual-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.report-heating-modal .report-heating-manual-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.report-heating-modal .report-heating-manual-field.is-wide,
.report-heating-modal .report-heating-manual-divider {
  grid-column: 1 / -1;
}

.report-heating-modal .report-heating-manual-field p {
  margin: 0;
  color: var(--hr-muted);
  font-size: 12px;
  line-height: 1.35;
}

.report-heating-modal .report-heating-manual-divider {
  width: 100%;
  margin: 2px 0;
  border: 0;
  border-top: 1px solid var(--hr-border);
}

.report-heating-modal .report-heating-search-field {
  display: block;
}

.report-heating-modal .report-heating-refinement-select {
  display: block;
}

.report-heating-modal .report-heating-sections {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-heating-modal .report-heating-sections p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--hr-muted);
  font-size: 13px;
  line-height: 1.4;
}

.report-heating-modal .report-heating-sections .btn {
  min-height: 42px;
  white-space: nowrap;
}

.report-heating-modal .report-heating-results-panel {
  display: grid;
  min-height: 260px;
}

.report-heating-modal .report-modal-loading.inline,
.report-heating-modal .report-heating-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 220px;
  padding: 22px;
  border: 1px dashed var(--hr-border);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--hr-muted);
  text-align: center;
}

.report-heating-modal .report-heating-empty i {
  color: var(--hr-primary);
  font-size: 22px;
}

.report-heating-modal .report-heating-empty h3 {
  margin: 0;
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
}

.report-heating-modal .report-heating-empty p {
  margin: 0;
  color: var(--hr-muted);
  font-size: 13px;
  line-height: 1.35;
}

.report-heating-modal .report-selected-heater {
  margin-bottom: 2px;
}

.report-heating-modal .report-heating-results {
  min-height: 260px;
  max-height: none;
  overflow: visible;
  gap: 8px;
}

.report-heating-modal .report-heating-results button {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 54px;
  padding: 11px 12px;
  border-color: var(--hr-border);
  border-radius: 8px;
  color: var(--hr-text);
}

.report-heating-modal .report-heating-results button.active {
  border-color: var(--hr-primary);
  background: color-mix(in srgb, var(--hr-primary) 7%, #ffffff);
}

.report-heating-modal .report-heating-results-table-wrap {
  min-height: 260px;
  overflow: auto;
  background: #ffffff;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
}

.report-heating-modal .report-heating-results-table {
  min-width: 640px;
  margin: 0;
  color: var(--hr-text);
}

.report-heating-modal .report-heating-results-table th {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  background: #f8fafc;
  border-bottom-color: var(--hr-border);
}

.report-heating-modal .report-heating-results-table td {
  border-color: var(--hr-border);
}

.report-heating-modal .report-heating-results-table tbody tr.is-selected td {
  background: color-mix(in srgb, var(--hr-primary) 7%, #ffffff);
}

.report-heating-modal .report-heating-results-table .report-raw-line {
  display: block;
  margin-top: 2px;
  color: var(--hr-muted);
  font-size: 12px;
  line-height: 1.3;
}

.report-heating-modal .report-heating-results-table .btn {
  white-space: nowrap;
}

.report-heating-modal .report-modal-footer {
  flex: 0 0 auto;
}

.report-calculator-display,
.report-calculator-grid,
.report-uvalue-add-row,
.report-uvalue-layer-list,
.report-uvalue-result,
.report-calculator-modal > .btn,
.report-uvalue-modal > .btn,
.report-uvalue-modal > .report-alert {
  margin-right: 16px;
  margin-left: 16px;
}

.report-calculator-modal > .btn,
.report-uvalue-modal > .btn {
  width: auto !important;
}

.report-calculator-display {
  min-height: 48px;
  background: #f1f5f9;
  color: var(--hr-text);
  font-weight: 800;
}

.report-calculator-display.is-result {
  color: var(--hr-text);
  font-size: 22px;
}

.report-calculator-grid button {
  min-height: 44px;
  font-weight: 800;
}

.report-calculator-modal {
  gap: 0;
}

.report-calculator-head {
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-bottom-color: var(--hr-border, var(--report-border));
}

.report-calculator-head h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  color: var(--hr-text, var(--report-text));
  font-size: 17px;
  overflow-wrap: anywhere;
}

.report-calculator-head .report-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--hr-border, var(--report-border));
  border-radius: 8px;
  background: #fff;
  color: var(--hr-muted, var(--report-muted));
}

.report-calculator-body {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  min-height: 0;
  padding: 16px;
  overflow: auto;
  overflow-x: hidden;
}

.report-calculator-body > .report-calculator-target {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--hr-muted, var(--report-muted));
  font-size: 12px;
  font-weight: 700;
}

.report-calculator-body > .report-calculator-display,
.report-calculator-body > .report-calculator-grid,
.report-calculator-body > .btn {
  margin-right: 0;
  margin-left: 0;
}

.report-calculator-display {
  overflow: hidden;
  text-align: right;
  white-space: nowrap;
}

.report-calculator-display.is-formula {
  color: var(--hr-muted, var(--report-muted));
  font-size: 14px;
}

.report-calculator-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-calculator-grid > span {
  min-height: 44px;
}

.report-uvalue-add-row {
  grid-template-columns: minmax(0, 1fr) minmax(92px, .42fr) 52px;
}

.report-uvalue-result {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 42px;
  color: var(--hr-text);
}

@media (max-width: 900px) {
  .report-room-collection,
  .report-room-card-grid,
  .report-room-table-wrap {
    padding: 12px;
  }

  .report-modal-grid,
  .report-room-form,
  .report-editor-card-grid,
  .report-uvalue-input-row,
  .report-uvalue-insulation {
    grid-template-columns: 1fr;
  }

  .report-modal-grid > .report-field,
  .report-modal-grid > .report-input-tool,
  .report-room-form > .is-half,
  .report-editor-card-grid > .is-half {
    grid-column: 1 / -1;
  }

  .report-uvalue-input-row {
    padding-left: calc(2.45em + 10px);
  }
}

@media (max-width: 620px) {
  .report-room-floor-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
  }

  .report-room-floor-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    gap: 6px;
  }

  .report-room-floor-summary > span {
    justify-content: center;
    min-width: 0;
    min-height: 30px;
    padding: 4px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .report-modal-overlay {
    inset: auto 0 auto 0;
    top: var(--report-viewport-offset-top, 0px);
    width: 100%;
    max-width: 100%;
    height: var(--report-viewport-height, 100dvh);
    max-height: var(--report-viewport-height, 100dvh);
    box-sizing: border-box;
    padding: 10px;
  }

  .report-modal-overlay:has(> .report-room-modal) {
    align-items: flex-start;
    height: calc(100vh - var(--report-viewport-offset-top, 0px));
    height: calc(100lvh - var(--report-viewport-offset-top, 0px));
    max-height: none;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
  }

  .report-room-modal {
    flex: 0 0 var(--report-viewport-height, 100dvh);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: var(--report-viewport-height, 100dvh);
    max-height: var(--report-viewport-height, 100dvh);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .report-room-modal input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  .report-room-modal select,
  .report-room-modal textarea {
    font-size: max(16px, 1rem);
  }

  .report-room-modal .report-field,
  .report-room-modal .report-help-field-row,
  .report-room-modal .report-input-tool {
    scroll-margin-block: 20px;
  }

  .report-room-modal .report-room-tabs {
    display: grid;
    grid-template-columns: repeat(var(--report-room-tab-count, 5), minmax(0, 1fr));
    overflow: visible;
    padding-right: max(10px, env(safe-area-inset-right));
    padding-left: max(10px, env(safe-area-inset-left));
  }

  .report-room-modal .report-room-tabs button {
    min-width: 0;
    min-height: 50px;
    padding: 6px 3px;
    border-bottom: 0;
    font-size: 13px;
  }

  .report-room-modal .report-room-tabs button i {
    font-size: 17px;
  }

  .report-room-modal .report-room-tabs button span {
    display: block;
    font-size: 10px;
    line-height: 1.05;
    white-space: normal;
  }

  .report-room-modal .report-modal-head,
  .report-room-modal .report-modal-footer {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .report-room-modal .report-modal-head {
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .report-room-modal .report-modal-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }

  .report-room-modal .report-modal-footer .btn {
    width: auto;
  }

  .report-room-modal .report-modal-footer .btn-primary {
    flex: 1 1 auto;
  }

  .report-heating-kind-tabs button {
    min-width: 64px;
    min-height: 50px;
    font-size: 13px;
  }

  .report-surface-row,
  .report-own-surface-header,
  .report-app-surface-row,
  .report-heating-card,
  .report-room-heating-card-main,
  .report-heating-sections,
  .report-uvalue-input-row,
  .report-uvalue-copy-card,
  .report-uvalue-insulation,
  .report-uvalue-add-row,
  .report-uvalue-layer-list > div {
    grid-template-columns: 1fr;
  }

  .report-own-surface-header,
  .report-app-surface-header {
    display: none;
  }

  .report-uvalue-input-row {
    padding-left: 0;
  }

  .report-room-heating-pictures,
  .report-room-media-pictures {
    --report-room-thumbnail-size: min(96px, calc((100% - 20px) / 3));
    grid-template-columns: repeat(3, minmax(0, var(--report-room-thumbnail-size)));
  }

  .report-room-heating-card-footer {
    justify-content: stretch;
  }

  .report-room-heating-card-footer .btn {
    flex: 1 1 132px;
    justify-content: center;
  }

  .report-picture-viewer-bar {
    align-items: flex-start;
    padding: 12px;
  }

  .report-picture-viewer-stage {
    padding: 16px 54px 58px;
  }

  .report-picture-viewer-nav.is-prev {
    left: 10px;
  }

  .report-picture-viewer-nav.is-next {
    right: 10px;
  }

  .report-modal-overlay.is-stacked {
    padding: 0;
  }

  .report-heating-modal,
  .report-calculator-modal,
  .report-uvalue-modal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

body.funding-calculator-open {
  overflow: hidden;
}

.funding-calculator-backdrop {
  --funding-accent: var(--hr-primary);
  --funding-accent-soft: color-mix(in srgb, var(--hr-primary) 10%, #ffffff);
  --funding-accent-border: color-mix(in srgb, var(--hr-primary) 30%, #ffffff);
  position: fixed;
  inset: 0;
  z-index: 2060;
  padding: 24px;
  overflow-y: auto;
  background: rgba(16, 32, 63, 0.68);
  accent-color: var(--funding-accent);
  outline: 0;
}

.funding-calculator-shell {
  width: min(100%, 1180px);
  min-height: calc(100vh - 48px);
  min-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hr-shadow-md);
}

.funding-calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hr-border);
  background: #fff;
}

.funding-calculator-title {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1 1 300px;
  gap: 13px;
}

.funding-calculator-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--funding-accent-border);
  border-radius: 8px;
  color: var(--funding-accent);
  background: var(--funding-accent-soft);
}

.funding-calculator-title p,
.funding-calculator-title h2 {
  margin: 0;
}

.funding-calculator-title p {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.funding-calculator-title h2 {
  overflow: hidden;
  color: var(--funding-accent);
  font-size: 22px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.funding-calculator-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
}

.funding-calculator-header-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.funding-calculator-backdrop .btn-primary {
  border-color: var(--funding-accent);
  background: var(--funding-accent);
  color: #fff;
}

.funding-calculator-backdrop .btn-primary:hover,
.funding-calculator-backdrop .btn-primary:focus-visible,
.funding-calculator-backdrop .btn-primary:active {
  border-color: var(--funding-accent);
  background: var(--funding-accent);
  color: #fff;
}

.funding-calculator-backdrop .btn-outline-primary {
  border-color: var(--funding-accent);
  color: var(--funding-accent);
}

.funding-calculator-backdrop .btn-outline-primary:hover,
.funding-calculator-backdrop .btn-outline-primary:focus-visible,
.funding-calculator-backdrop .btn-outline-primary:active {
  border-color: var(--funding-accent);
  background: var(--funding-accent);
  color: #fff;
}

.funding-calculator-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  color: var(--hr-muted);
  background: #fff;
}

.funding-calculator-close:hover,
.funding-calculator-close:focus-visible {
  color: var(--hr-text);
  border-color: #c5d4e7;
  background: #f6f8fb;
}

.funding-calculator-body {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 20px 22px;
  background: #f7f9fc;
}

.funding-calculator-backdrop .project-modal-loading.inline {
  min-height: 84px;
  display: grid;
  place-items: center;
}

.funding-calculator-backdrop .project-upload-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.funding-calculator-backdrop .project-upload-message.is-error {
  color: var(--report-red);
  background: #fff1f3;
}

.funding-calculator-resultbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.funding-calculator-resultbar > div {
  --funding-result-color: var(--funding-accent);
  --funding-result-bg: color-mix(in srgb, var(--hr-primary) 12%, #ffffff);
  --funding-result-border: var(--funding-accent-border);
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--funding-result-border);
  border-radius: 8px;
  background: var(--funding-result-bg);
  box-shadow: inset 4px 0 0 var(--funding-result-color);
}

.funding-calculator-resultbar > div:nth-child(2) {
  --funding-result-color: var(--hr-green);
  --funding-result-bg: #f1fbf4;
  --funding-result-border: #caebd4;
}

.funding-calculator-resultbar > div:nth-child(3) {
  --funding-result-color: var(--hr-amber);
  --funding-result-bg: #fff8ea;
  --funding-result-border: #f4d79f;
}

.funding-calculator-resultbar > div:nth-child(4) {
  --funding-result-color: #506178;
  --funding-result-bg: #f5f7fa;
  --funding-result-border: #d5deea;
}

.funding-calculator-resultbar span {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.funding-calculator-resultbar strong {
  overflow-wrap: anywhere;
  color: var(--funding-result-color);
  font-size: 18px;
}

.funding-calculator-resultbar > div:first-child strong {
  font-size: 24px;
  line-height: 1.1;
}

.funding-calculator-form {
  display: grid;
  gap: 16px;
}

.funding-calculator-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.funding-calculator-section {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hr-shadow-sm);
}

.funding-calculator-section > header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--hr-border);
}

.funding-calculator-section > header i {
  width: 28px;
  color: var(--funding-accent);
  font-size: 22px;
  text-align: center;
}

.funding-calculator-section > header h3 {
  margin: 0;
  color: var(--funding-accent);
  font-size: 17px;
  font-weight: 800;
}

.funding-calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 16px;
}

.funding-calculator-fields .filter-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.funding-calculator-building-column {
  display: grid;
  min-width: 0;
  gap: 13px;
  align-content: start;
}

.funding-calculator-fields .filter-field > span,
.funding-calculator-range-head label {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.funding-calculator-fields .form-select,
.funding-calculator-fields .form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 42px;
  box-sizing: border-box;
}

.funding-calculator-backdrop .form-select:focus,
.funding-calculator-backdrop .form-check-input:focus {
  border-color: var(--funding-accent);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hr-primary) 18%, transparent);
}

.funding-calculator-backdrop .form-range,
.funding-calculator-backdrop .form-check-input {
  accent-color: var(--funding-accent);
}

.funding-calculator-backdrop .form-check-input {
  border-color: var(--funding-accent-border);
}

.funding-calculator-backdrop .form-check-input:checked {
  border-color: var(--funding-accent) !important;
  background-color: var(--funding-accent) !important;
}

.funding-calculator-backdrop .form-check-input:checked:focus,
.funding-calculator-backdrop .form-check-input:checked:hover:not(:disabled) {
  border-color: var(--funding-accent) !important;
  background-color: var(--funding-accent) !important;
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hr-primary) 18%, transparent);
}

.funding-calculator-backdrop .form-range::-webkit-slider-runnable-track {
  background-color: var(--funding-accent-soft);
}

.funding-calculator-backdrop .form-range::-webkit-slider-thumb {
  background-color: var(--funding-accent) !important;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem color-mix(in srgb, var(--hr-primary) 12%, transparent);
}

.funding-calculator-backdrop .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem color-mix(in srgb, var(--hr-primary) 22%, transparent);
}

.funding-calculator-backdrop .form-range::-moz-range-track {
  background-color: var(--funding-accent-soft);
}

.funding-calculator-backdrop .form-range::-moz-range-progress {
  background-color: var(--funding-accent);
}

.funding-calculator-backdrop .form-range::-moz-range-thumb {
  border-color: var(--funding-accent);
  background-color: var(--funding-accent) !important;
}

.filter-field-full {
  grid-column: 1 / -1;
}

.funding-calculator-range {
  display: grid;
  gap: 12px;
}

.funding-calculator-range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.funding-calculator-range-head strong {
  color: var(--funding-accent);
  white-space: nowrap;
}

.funding-calculator-slider-ticks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  color: var(--hr-muted);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.funding-calculator-slider-ticks span:first-child {
  text-align: left;
}

.funding-calculator-slider-ticks span:last-child {
  text-align: right;
}

.funding-calculator-switches {
  display: grid;
  gap: 9px;
}

.funding-calculator-switch {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
  color: var(--hr-text);
  background: #fbfcfe;
  font-size: 14px;
  line-height: 1.35;
}

.funding-calculator-switch .form-check-input {
  margin: 2px 0 0;
}

.funding-calculator-bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.funding-calculator-bonus {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(32px, auto) 38px minmax(0, 1fr);
  gap: 9px;
  padding: 15px;
  border: 1px solid color-mix(in srgb, var(--hr-primary) 18%, #ffffff);
  border-radius: 8px;
  background: color-mix(in srgb, var(--hr-primary) 5%, #ffffff);
}

.funding-calculator-bonus.is-muted {
  border-color: #e4e8ee;
  color: #7b8798;
  background: #fbfcfe;
}

.funding-calculator-bonus-value {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.funding-calculator-bonus-value strong {
  color: var(--funding-accent);
  font-size: 28px;
  line-height: 1;
}

.funding-calculator-bonus.is-muted .funding-calculator-bonus-value strong {
  color: #8b98aa;
}

.funding-calculator-bonus-value i {
  color: var(--hr-green);
  font-size: 20px;
}

.funding-calculator-bonus h4,
.funding-calculator-bonus p {
  margin: 0;
}

.funding-calculator-bonus h4 {
  align-self: start;
  color: var(--hr-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.funding-calculator-bonus.is-muted h4 {
  color: #617083;
}

.funding-calculator-bonus p {
  min-height: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.funding-calculator-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 0 0;
}

.funding-calculator-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--hr-muted);
  font-size: 14px;
  font-weight: 700;
}

.funding-calculator-status i {
  color: var(--funding-accent);
}

@media (max-width: 980px) {
  .funding-calculator-backdrop {
    padding: 16px;
  }

  .funding-calculator-shell {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
  }

  .funding-calculator-resultbar,
  .funding-calculator-form-grid,
  .funding-calculator-bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .funding-calculator-backdrop {
    padding: 0;
  }

  .funding-calculator-shell {
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .funding-calculator-title h2 {
    font-size: 20px;
  }

  .funding-calculator-header-actions .btn {
    flex: 1 1 150px;
  }

  .funding-calculator-close {
    flex: 0 0 38px;
  }

  .funding-calculator-body {
    padding: 14px;
  }

  .funding-calculator-fields {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .funding-calculator-range-head,
  .funding-calculator-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

body.amortisation-calculator-open {
  overflow: hidden;
}

.amortisation-calculator-backdrop {
  --amortisation-accent: var(--hr-primary);
  --amortisation-accent-soft: color-mix(in srgb, var(--hr-primary) 10%, #ffffff);
  --amortisation-accent-softer: color-mix(in srgb, var(--hr-primary) 5%, #ffffff);
  --amortisation-accent-border: color-mix(in srgb, var(--hr-primary) 30%, #ffffff);
  position: fixed;
  inset: 0;
  z-index: 2065;
  padding: 24px;
  overflow-y: auto;
  background: rgba(16, 32, 63, 0.68);
  accent-color: var(--amortisation-accent);
  outline: 0;
}

.amortisation-calculator-shell {
  width: min(100%, 1180px);
  min-height: calc(100vh - 48px);
  min-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hr-shadow-md);
}

.amortisation-calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hr-border);
  background: #fff;
}

.amortisation-calculator-title {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1 1 300px;
  gap: 13px;
}

.amortisation-calculator-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--amortisation-accent-border);
  border-radius: 8px;
  color: var(--amortisation-accent);
  background: var(--amortisation-accent-soft);
}

.amortisation-calculator-title p,
.amortisation-calculator-title h2 {
  margin: 0;
}

.amortisation-calculator-title p {
  overflow: hidden;
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.amortisation-calculator-title h2 {
  overflow: hidden;
  color: var(--amortisation-accent);
  font-size: 22px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amortisation-calculator-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
}

.amortisation-calculator-header-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.amortisation-calculator-backdrop .btn-primary {
  border-color: var(--amortisation-accent);
  background: var(--amortisation-accent);
  color: #fff;
}

.amortisation-calculator-backdrop .btn-primary:hover,
.amortisation-calculator-backdrop .btn-primary:focus-visible,
.amortisation-calculator-backdrop .btn-primary:active {
  border-color: var(--amortisation-accent);
  background: var(--amortisation-accent);
  color: #fff;
}

.amortisation-calculator-backdrop .btn-outline-primary {
  border-color: var(--amortisation-accent);
  color: var(--amortisation-accent);
}

.amortisation-calculator-backdrop .btn-outline-primary:hover,
.amortisation-calculator-backdrop .btn-outline-primary:focus-visible,
.amortisation-calculator-backdrop .btn-outline-primary:active {
  border-color: var(--amortisation-accent);
  background: var(--amortisation-accent);
  color: #fff;
}

.amortisation-calculator-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  color: var(--hr-muted);
  background: #fff;
}

.amortisation-calculator-close:hover,
.amortisation-calculator-close:focus-visible {
  color: var(--hr-text);
  border-color: #c5d4e7;
  background: #f6f8fb;
  outline: 0;
}

.amortisation-calculator-body {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 20px 22px;
  background: #f7f9fc;
}

.amortisation-calculator-backdrop .project-modal-loading.inline {
  min-height: 84px;
  display: grid;
  place-items: center;
}

.amortisation-calculator-backdrop .project-upload-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.amortisation-calculator-backdrop .project-upload-message.is-success {
  color: var(--hr-green);
  background: #f1fbf4;
}

.amortisation-calculator-backdrop .project-upload-message.is-error {
  color: var(--report-red);
  background: #fff1f3;
}

.amortisation-calculator-resultbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.amortisation-calculator-resultbar > div {
  --amortisation-result-color: #506178;
  --amortisation-result-bg: #f5f7fa;
  --amortisation-result-border: #d5deea;
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--amortisation-result-border);
  border-radius: 8px;
  background: var(--amortisation-result-bg);
  box-shadow: inset 4px 0 0 var(--amortisation-result-color);
}

.amortisation-calculator-resultbar > div.is-success {
  --amortisation-result-color: var(--hr-green);
  --amortisation-result-bg: #f1fbf4;
  --amortisation-result-border: #caebd4;
}

.amortisation-calculator-resultbar > div.is-warning {
  --amortisation-result-color: var(--hr-amber);
  --amortisation-result-bg: #fff8ea;
  --amortisation-result-border: #f4d79f;
}

.amortisation-calculator-resultbar > div.is-danger {
  --amortisation-result-color: #c84d4d;
  --amortisation-result-bg: #fff5f5;
  --amortisation-result-border: #f0caca;
}

.amortisation-calculator-resultbar > div.is-neutral {
  --amortisation-result-color: var(--amortisation-accent);
  --amortisation-result-bg: color-mix(in srgb, var(--hr-primary) 10%, #ffffff);
  --amortisation-result-border: var(--amortisation-accent-border);
}

.amortisation-calculator-resultbar span {
  color: var(--hr-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.amortisation-calculator-resultbar strong {
  overflow-wrap: anywhere;
  color: var(--amortisation-result-color);
  font-size: 18px;
  line-height: 1.18;
}

.amortisation-calculator-chart {
  min-width: 0;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hr-shadow-sm);
}

.amortisation-calculator-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--hr-border);
}

.amortisation-calculator-chart-head h3 {
  margin: 0;
  color: var(--amortisation-accent);
  font-size: 17px;
  font-weight: 800;
}

.amortisation-calculator-chart-head p {
  margin: 4px 0 0;
  color: var(--hr-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.amortisation-calculator-backdrop .status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #506178;
  background: #f5f7fa;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.amortisation-calculator-backdrop .status-pill-light {
  border: 1px solid var(--amortisation-accent-border);
  color: var(--amortisation-accent);
  background: var(--amortisation-accent-softer);
}

.amortisation-result-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
  background: #fff;
}

.amortisation-result-tabs button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  color: #506178;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.amortisation-result-tabs button:hover {
  color: var(--amortisation-accent);
  border-color: var(--amortisation-accent-border);
  background: var(--amortisation-accent-soft);
}

.amortisation-result-tabs button.active {
  color: #fff;
  border-color: var(--amortisation-accent);
  background: var(--amortisation-accent);
}

.amortisation-result-tabs button i {
  font-size: 13px;
}

.amortisation-calculator-chart-canvas {
  min-width: 0;
  height: 300px;
  padding: 14px;
}

.amortisation-calculator-chart-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.amortisation-calculator-form {
  display: grid;
  gap: 16px;
}

.amortisation-calculator-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.amortisation-calculator-section {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hr-shadow-sm);
}

.amortisation-calculator-section > header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--hr-border);
}

.amortisation-calculator-section > header i {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--amortisation-accent);
  font-size: 20px;
  text-align: center;
}

.amortisation-calculator-section > header h3 {
  margin: 0;
  color: var(--amortisation-accent);
  font-size: 17px;
  font-weight: 800;
}

.amortisation-calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 13px;
  padding: 16px;
}

.amortisation-calculator-section.is-stacked .amortisation-calculator-fields {
  grid-template-columns: minmax(0, 1fr);
}

.amortisation-input-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: #fbfcfe;
}

.amortisation-field-head {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 8px;
}

.amortisation-field-head label {
  min-width: 0;
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.amortisation-field-head strong {
  color: var(--amortisation-accent);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.amortisation-field-description {
  margin: -3px 0 2px;
  color: #5f6f83;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.amortisation-calculator-section.is-stacked .amortisation-field-head label {
  font-size: 12px;
}

.amortisation-calculator-section.is-stacked .amortisation-field-head strong {
  font-size: 14px;
}

.amortisation-input-field .form-range {
  min-height: 24px;
}

.amortisation-input-field .form-select,
.amortisation-input-field .form-control {
  min-height: 38px;
  font-size: 14px;
}

.amortisation-calculator-backdrop .form-select:focus,
.amortisation-calculator-backdrop .form-control:focus,
.amortisation-calculator-backdrop .form-check-input:focus {
  border-color: var(--amortisation-accent);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hr-primary) 18%, transparent);
}

.amortisation-calculator-backdrop .form-range,
.amortisation-calculator-backdrop .form-check-input {
  accent-color: var(--amortisation-accent);
}

.amortisation-calculator-backdrop .form-check-input {
  border-color: var(--amortisation-accent-border);
}

.amortisation-calculator-backdrop .form-check-input:checked {
  border-color: var(--amortisation-accent) !important;
  background-color: var(--amortisation-accent) !important;
}

.amortisation-calculator-backdrop .form-check-input:checked:focus,
.amortisation-calculator-backdrop .form-check-input:checked:hover:not(:disabled) {
  border-color: var(--amortisation-accent) !important;
  background-color: var(--amortisation-accent) !important;
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hr-primary) 18%, transparent);
}

.amortisation-calculator-backdrop .form-range::-webkit-slider-runnable-track {
  background-color: var(--amortisation-accent-soft);
}

.amortisation-calculator-backdrop .form-range::-webkit-slider-thumb {
  background-color: var(--amortisation-accent) !important;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem color-mix(in srgb, var(--hr-primary) 12%, transparent);
}

.amortisation-calculator-backdrop .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem color-mix(in srgb, var(--hr-primary) 22%, transparent);
}

.amortisation-calculator-backdrop .form-range::-moz-range-track {
  background-color: var(--amortisation-accent-soft);
}

.amortisation-calculator-backdrop .form-range::-moz-range-progress {
  background-color: var(--amortisation-accent);
}

.amortisation-calculator-backdrop .form-range::-moz-range-thumb {
  border-color: var(--amortisation-accent);
  background-color: var(--amortisation-accent) !important;
}

.amortisation-switch {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-left: 2.6rem;
}

.amortisation-switch .form-check-input {
  cursor: pointer;
}

.amortisation-switch .form-check-label {
  color: #344258;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.amortisation-subfield-label {
  margin: -2px 0 -3px;
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.amortisation-slider-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: -5px;
  color: #7a8797;
  font-size: 11px;
  font-weight: 700;
}

.amortisation-slider-scale span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amortisation-calculator-table {
  width: 100%;
  margin-bottom: 0;
  border-color: #d7e2ef;
  background: #fff;
  font-size: 13px;
}

.amortisation-calculator-table th {
  color: var(--hr-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: #f6f8fb;
}

.amortisation-calculator-table td,
.amortisation-calculator-table th {
  padding: 10px 12px;
  vertical-align: middle;
}

.amortisation-result-table {
  padding: 14px 16px 16px;
}

.amortisation-overview-table th:first-child,
.amortisation-overview-table td:first-child {
  text-align: left;
}

.amortisation-overview-spacer td {
  height: 12px;
  padding: 0;
  border-right: 0;
  border-left: 0;
  background: #fff;
}

@media (max-width: 980px) {
  .amortisation-calculator-backdrop {
    padding: 16px;
  }

  .amortisation-calculator-shell {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
  }

  .amortisation-calculator-resultbar,
  .amortisation-calculator-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .amortisation-calculator-backdrop {
    padding: 0;
  }

  .amortisation-calculator-shell {
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .amortisation-calculator-title h2 {
    font-size: 20px;
  }

  .amortisation-calculator-header-actions .btn {
    flex: 1 1 150px;
  }

  .amortisation-calculator-close {
    flex: 0 0 38px;
  }

  .amortisation-calculator-body {
    padding: 14px;
  }

  .amortisation-calculator-fields {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .amortisation-calculator-chart-canvas {
    height: 260px;
    padding: 10px;
  }
}

@media (max-width: 1320px) {
  .report-shop-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-shop-product-group.is-featured .report-shop-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .report-shop-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-shop-product-group.is-featured .report-shop-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .report-shop-layout {
    grid-template-columns: 1fr;
  }

  .report-shop-cart {
    position: static;
  }

  .report-shop-products {
    grid-template-columns: 1fr;
  }

  .report-shop-product.is-featured {
    grid-template-columns: 1fr;
  }

  .report-shop-product.is-featured header,
  .report-shop-product.is-featured h3,
  .report-shop-product.is-featured p,
  .report-shop-product.is-featured .report-shop-price,
  .report-shop-product.is-featured > .btn {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .report-modal-overlay.report-shop-overlay {
    inset: auto 0 auto 0;
    top: var(--report-viewport-offset-top, 0px);
    width: 100%;
    max-width: 100%;
    height: var(--report-viewport-height, 100dvh);
    max-height: var(--report-viewport-height, 100dvh);
    padding: 0;
  }

  .report-modal-overlay.report-shop-overlay .report-shop-modal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .report-shop-modal > .report-modal-head,
  .report-shop-modal > .report-shop-steps {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
  }

  .report-shop-modal > .report-modal-head {
    min-height: 64px;
    padding-top: calc(14px + env(safe-area-inset-top));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
    background: #ffffff;
  }

  .report-shop-steps {
    gap: 6px;
    min-height: 64px;
    overflow: hidden;
    padding: 10px max(10px, env(safe-area-inset-right)) 10px max(10px, env(safe-area-inset-left));
  }

  .report-shop-steps button {
    min-width: 0;
    gap: 5px;
    padding: 7px 5px;
    font-size: 12px;
    white-space: nowrap;
  }

  .report-shop-steps button span {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }

  .report-shop-body {
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .report-shop-form-grid {
    grid-template-columns: 1fr;
  }

  .report-shop-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .report-shop-actions .btn {
    width: 100%;
  }

  .report-shop-product-drawer {
    width: 100%;
  }
}

.report-heatpump {
  display: grid;
  gap: 16px;
}

body.report-heatpump-modal-open {
  overflow: hidden;
}

.report-heatpump-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2075;
  display: grid;
  background: rgba(16, 32, 63, 0.68);
  outline: 0;
}

.report-heatpump-modal-shell {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #f4f7fb;
  outline: 0;
}

.report-heatpump-modal-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--report-border);
  background: #fff;
}

.report-heatpump-modal-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-heatpump-modal-title > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--report-primary) 26%, #ffffff);
  border-radius: 8px;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 10%, #ffffff);
}

.report-heatpump-modal-title h2,
.report-heatpump-modal-title p {
  margin: 0;
}

.report-heatpump-modal-title h2 {
  color: var(--report-primary);
  font-size: 1.18rem;
  font-weight: 800;
}

.report-heatpump-modal-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-text);
}

.report-heatpump-modal-close:hover,
.report-heatpump-modal-close:focus-visible {
  border-color: var(--report-primary);
  color: var(--report-primary);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 14%, transparent);
}

.report-heatpump-modal-body {
  min-height: 0;
  overflow: auto;
  padding: 18px;
}

.report-heatpump-modal-body .report-heatpump {
  min-height: 100%;
}

.report-heatpump-modal-body .report-heatpump-chart-canvas {
  min-height: 430px;
}

.report-heatpump-modal-enter-active,
.report-heatpump-modal-leave-active {
  transition: opacity 0.18s ease;
}

.report-heatpump-modal-enter-from,
.report-heatpump-modal-leave-to {
  opacity: 0;
}

.report-heatpump-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.report-heatpump-main,
.report-heatpump-chart,
.report-heatpump-empty,
.report-heatpump-alert {
  border: 1px solid var(--report-border);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.report-heatpump-main {
  display: grid;
  gap: 16px;
  padding: 18px;
  min-width: 0;
}

.report-heatpump-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.report-heatpump-toolbar h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--report-text);
}

.report-heatpump-toolbar p {
  margin: 4px 0 0;
  color: var(--report-muted);
  font-size: 0.92rem;
}

.report-heatpump-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.report-heatpump-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.report-heatpump-tabs {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-heatpump-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--report-muted);
  font-weight: 800;
}

.report-heatpump-tabs button.active {
  background: var(--report-primary);
  color: #fff;
}

.report-heatpump-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-text);
  font-weight: 700;
}

.report-heatpump-switch input {
  width: 42px;
  height: 24px;
  accent-color: var(--report-primary);
}

.report-heatpump-selection,
.report-heatpump-simulation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-heatpump-selection > div,
.report-heatpump-simulation > div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #f8fafc;
}

.report-heatpump-selection span,
.report-heatpump-simulation span {
  color: var(--report-muted);
  font-size: 0.78rem;
}

.report-heatpump-selection strong,
.report-heatpump-simulation strong {
  color: var(--report-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.report-heatpump-chart {
  position: relative;
  padding: 16px;
  min-width: 0;
}

.report-heatpump-table-wrap {
  overflow: auto;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
}

.report-heatpump-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
  color: var(--report-text);
}

.report-heatpump-table th,
.report-heatpump-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--report-border);
  border-right: 1px solid var(--report-border);
  text-align: right;
  white-space: nowrap;
}

.report-heatpump-table th:first-child,
.report-heatpump-table td:first-child {
  text-align: left;
}

.report-heatpump-table th {
  background: #f8fafc;
  color: var(--report-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.report-heatpump-table tr:last-child td {
  border-bottom: 0;
}

.report-heatpump-chart-canvas {
  position: relative;
  min-height: 360px;
}

.report-heatpump-chart-canvas canvas {
  width: 100% !important;
  max-width: 100%;
}

.report-heatpump-chart-fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-primary);
}

.report-heatpump-chart.is-fullscreen {
  position: fixed;
  inset: 16px;
  z-index: 1800;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}

.report-heatpump-chart.is-fullscreen .report-heatpump-chart-canvas {
  min-height: 0;
  padding: 18px;
}

.report-heatpump-fullscreen-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--report-border);
  background: #fff;
}

.report-heatpump-fullscreen-bar div {
  display: grid;
  gap: 2px;
}

.report-heatpump-fullscreen-bar strong {
  color: var(--report-text);
}

.report-heatpump-fullscreen-bar span {
  color: var(--report-muted);
  font-size: 0.88rem;
}

.report-heatpump-fullscreen-bar button,
.report-heatpump-catalog-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-text);
}

body.heatpump-catalog-open {
  overflow: hidden;
}

.report-heatpump-catalog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1760;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(2px);
}

.report-heatpump-catalog {
  display: grid;
  align-content: start;
  gap: 14px;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100dvh;
  padding: 16px;
  border-left: 1px solid var(--report-border);
  background: #fff;
  box-shadow: -24px 0 60px rgba(15, 23, 42, 0.18);
  overflow: auto;
  outline: 0;
}

.report-heatpump-offcanvas-enter-active,
.report-heatpump-offcanvas-leave-active {
  transition: opacity 0.22s ease;
}

.report-heatpump-offcanvas-enter-from,
.report-heatpump-offcanvas-leave-to {
  opacity: 0;
}

.report-heatpump-offcanvas-enter-active .report-heatpump-catalog,
.report-heatpump-offcanvas-leave-active .report-heatpump-catalog {
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.report-heatpump-offcanvas-enter-from .report-heatpump-catalog,
.report-heatpump-offcanvas-leave-to .report-heatpump-catalog {
  transform: translateX(100%);
}

.report-heatpump-catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.report-heatpump-catalog-head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--report-text);
}

.report-heatpump-catalog-head small {
  display: block;
  margin-top: 3px;
  color: var(--report-muted);
}

.report-heatpump-catalog-search {
  display: grid;
  gap: 6px;
}

.report-heatpump-catalog-search label {
  color: var(--report-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.report-heatpump-catalog-search > div {
  position: relative;
}

.report-heatpump-catalog-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  color: var(--report-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.report-heatpump-catalog-search input {
  padding-left: 36px;
}

.report-heatpump-catalog-preview-actions {
  display: flex;
}

.report-heatpump-catalog-preview .report-heatpump-filter-options button {
  display: grid;
  gap: 3px;
}

.report-heatpump-catalog-preview .report-heatpump-filter-options button span {
  font-weight: 800;
}

.report-heatpump-catalog-preview .report-heatpump-filter-options button small {
  color: var(--report-muted);
}

.report-heatpump-filter-steps {
  display: grid;
  gap: 12px;
}

.report-heatpump-filter-panel {
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.report-heatpump-filter-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 0;
  background: #f8fafc;
  color: var(--report-text);
  text-align: left;
}

.report-heatpump-filter-head span {
  font-weight: 800;
}

.report-heatpump-filter-head small {
  grid-column: 1;
  color: var(--report-muted);
}

.report-heatpump-filter-head i {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--report-primary);
}

.report-heatpump-selected {
  padding: 10px 12px;
  color: var(--report-text);
}

.report-heatpump-filter-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px;
}

.report-heatpump-filter-options.is-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-heatpump-filter-options button,
.report-heatpump-option {
  min-width: 0;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  color: var(--report-text);
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.report-heatpump-filter-options button {
  padding: 9px 10px;
  font-size: 0.86rem;
}

.report-heatpump-filter-options button:hover,
.report-heatpump-filter-options button.active,
.report-heatpump-option:hover,
.report-heatpump-option.active {
  border-color: var(--report-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-primary) 14%, transparent);
  color: var(--report-primary);
}

.report-heatpump-filter-actions {
  display: flex;
  justify-content: flex-end;
}

.report-heatpump-list {
  display: grid;
  gap: 8px;
}

.report-heatpump-option {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
}

.report-heatpump-option strong {
  font-size: 0.92rem;
}

.report-heatpump-option span,
.report-heatpump-option small {
  color: var(--report-muted);
  font-size: 0.82rem;
}

.report-heatpump-option.active span,
.report-heatpump-option.active small,
.report-heatpump-option:hover span,
.report-heatpump-option:hover small {
  color: inherit;
}

.report-heatpump-empty,
.report-heatpump-alert {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  color: var(--report-muted);
}

.report-heatpump-alert {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  text-align: left;
}

.report-heatpump-alert i,
.report-heatpump-empty i {
  color: var(--report-primary);
  font-size: 1.5rem;
}

.report-heatpump-alert strong,
.report-heatpump-empty h3 {
  margin: 0;
  color: var(--report-text);
}

.report-heatpump-empty p,
.report-heatpump-alert span {
  margin: 0;
}

.report-heatpump-empty.is-small {
  padding: 18px;
  box-shadow: none;
}

.report-heatpump-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  color: var(--report-muted);
}

.report-heatpump-loading.is-inline {
  min-height: 0;
  justify-content: flex-start;
  padding: 10px 0;
}

@media (max-width: 860px) {
  .report-heatpump-toolbar {
    display: grid;
  }

  .report-heatpump-actions {
    justify-content: stretch;
  }

  .report-heatpump-actions .btn {
    flex: 1 1 180px;
  }

  .report-heatpump-controls,
  .report-heatpump-selection,
  .report-heatpump-simulation {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .report-heatpump-modal-head {
    padding: 12px;
  }

  .report-heatpump-modal-title > span {
    width: 34px;
    height: 34px;
  }

  .report-heatpump-modal-title h2 {
    font-size: 1rem;
  }

  .report-heatpump-modal-body {
    padding: 10px;
  }

  .report-heatpump-main {
    padding: 12px;
  }

  .report-heatpump-catalog {
    width: 100vw;
    padding: 12px;
  }

  .report-heatpump-controls,
  .report-heatpump-selection,
  .report-heatpump-simulation,
  .report-heatpump-filter-options.is-wide {
    grid-template-columns: 1fr;
  }

  .report-heatpump-tabs {
    width: 100%;
  }

  .report-heatpump-tabs button {
    flex: 1 1 0;
    justify-content: center;
  }

  .report-heatpump-actions .btn {
    flex-basis: 100%;
  }

  .report-heatpump-chart {
    padding: 10px;
  }

  .report-heatpump-chart-canvas {
    min-height: 280px;
  }

  .report-heatpump-chart.is-fullscreen {
    inset: 0;
    border-radius: 0;
  }
}

.report-advisory {
  display: grid;
  gap: 20px;
}

.report-advisory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--report-primary) 18%, var(--report-border));
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fbff 62%,
    color-mix(in srgb, var(--report-primary) 10%, #ffffff) 100%
  );
}

.report-advisory-hero span,
.report-advisory-step-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 10%, #ffffff);
  font-size: .78rem;
  font-weight: 700;
}

.report-advisory-hero h2 {
  margin: 12px 0 8px;
  color: var(--report-text);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.report-advisory-hero p,
.report-advisory-card p,
.report-advisory-empty p,
.report-advisory-detail-main p {
  color: var(--report-muted);
}

.report-advisory-hero ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.report-advisory-hero li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--report-text);
}

.report-advisory-hero li i,
.report-advisory-hero > i {
  color: var(--report-primary);
}

.report-advisory-hero > i {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--report-primary);
  box-shadow: 0 14px 30px rgba(var(--report-primary-rgb), .22);
  font-size: 1.9rem;
}

.report-advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.report-advisory-card {
  display: grid;
  grid-template-rows: 150px minmax(150px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.report-advisory-card-image {
  position: relative;
  min-height: 150px;
  background: #eef2f7;
}

.report-advisory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-advisory-card-image span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, .74);
  font-size: .75rem;
  font-weight: 700;
}

.report-advisory-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}

.report-advisory-card-heading {
  display: grid;
  gap: 8px;
  align-content: start;
}

.report-advisory-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--report-text);
}

.report-advisory-card p,
.report-advisory-card small {
  margin: 0;
}

.report-advisory-card small {
  color: var(--report-primary);
  font-weight: 700;
}

.report-advisory-availability-badge {
  width: max-content;
  max-width: 100%;
  padding: 4px 9px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #e5e7eb;
  color: #475569;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.15;
}

.report-advisory-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--report-border);
}

.report-advisory-card footer > span {
  color: var(--report-muted);
  font-size: .82rem;
  font-weight: 700;
}

.report-advisory-card.is-available {
  border-color: color-mix(in srgb, var(--report-primary) 30%, var(--report-border));
}

.report-advisory-card.is-booked {
  border-color: #f5c542;
}

.report-advisory-card.is-done {
  border-color: #41b883;
}

.report-advisory-card.is-locked {
  opacity: .82;
}

.report-advisory-card.is-unavailable {
  border-color: #d1d5db;
  background: #f8fafc;
  box-shadow: none;
  opacity: .88;
}

.report-advisory-card.is-unavailable .report-advisory-card-image {
  background: #e5e7eb;
}

.report-advisory-card.is-unavailable .report-advisory-card-image img {
  filter: grayscale(1);
  opacity: .42;
}

.report-advisory-card.is-unavailable .report-advisory-card-image span {
  background: rgba(75, 85, 99, .76);
}

.report-advisory-card.is-unavailable h3,
.report-advisory-card.is-unavailable p,
.report-advisory-card.is-unavailable small,
.report-advisory-card.is-unavailable footer > span {
  color: #64748b;
}

.report-advisory-access-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid #f0c36d;
  border-radius: 8px;
  background: #fff8e6;
  color: #684b12;
}

.report-advisory-access-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8d98f;
  color: #7a5200;
  font-size: 1.25rem;
}

.report-advisory-access-notice h2,
.report-advisory-access-notice p {
  margin: 0;
}

.report-advisory-access-notice h2 {
  color: #5d430f;
  font-size: 1.08rem;
}

.report-advisory-access-notice p {
  margin-top: 5px;
  color: #795d28;
  line-height: 1.5;
}

.report-advisory-access-notice .btn {
  white-space: nowrap;
}

.report-advisory-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 46px 24px;
  text-align: center;
  border: 1px dashed color-mix(in srgb, var(--report-primary) 24%, var(--report-border));
  border-radius: 8px;
  background: #fff;
}

.report-advisory-empty i {
  color: var(--report-primary);
  font-size: 2rem;
}

.report-advisory-detail {
  display: grid;
  gap: 16px;
}

.report-advisory-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--report-primary) 22%, var(--report-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--report-primary) 5%, #ffffff);
}

.report-advisory-detail-toolbar > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--report-primary);
  background: #ffffff;
  font-size: .84rem;
  font-weight: 800;
}

.report-advisory-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--report-primary);
  border-radius: 8px;
  color: #ffffff;
  background: var(--report-primary);
  font-weight: 800;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.report-advisory-back:hover,
.report-advisory-back:focus-visible {
  color: #ffffff;
  background: var(--report-secondary);
  border-color: var(--report-secondary);
  box-shadow: 0 8px 18px rgba(var(--report-primary-rgb), .22);
  transform: translateY(-1px);
}

.report-advisory-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: start;
}

.report-advisory-detail-main-card,
.report-advisory-notes-card,
.report-advisory-advisor-card {
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.report-advisory-detail-main-card {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
}

.report-advisory-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #f8fafc;
}

.report-advisory-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-advisory-detail-media .report-advisory-step-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, .78);
}

.report-advisory-detail-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

.report-advisory-detail-main header {
  display: grid;
  gap: 8px;
}

.report-advisory-detail-main header > span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 10%, #ffffff);
  font-size: .78rem;
  font-weight: 800;
}

.report-advisory-detail-main h2,
.report-advisory-notes-card h3,
.report-advisory-summary h3 {
  margin: 0;
  color: var(--report-text);
}

.report-advisory-detail-main h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.report-advisory-meta-row,
.report-advisory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.report-advisory-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--report-text);
  background: #f6f8fb;
  font-size: .88rem;
}

.report-advisory-meta-row i {
  color: var(--report-primary);
}

.report-advisory-meeting-box {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--report-primary) 22%, var(--report-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--report-primary) 6%, #ffffff);
}

.report-advisory-meeting-box > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--report-primary);
}

.report-advisory-meeting-box div {
  display: grid;
  gap: 1px;
}

.report-advisory-meeting-box span,
.report-advisory-meeting-box small {
  color: var(--report-muted);
  font-size: .84rem;
}

.report-advisory-meeting-box strong {
  color: var(--report-text);
  font-size: 1.04rem;
}

.report-advisory-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.report-advisory-detail-sidebar {
  display: grid;
  gap: 14px;
}

.report-advisory-notes-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.report-advisory-notes-card > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.report-advisory-notes-card > div > span,
.report-advisory-advisor-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 10%, #ffffff);
}

.report-advisory-advisor-card > span.report-advisory-advisor-avatar {
  width: 64px;
  height: 64px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--report-primary), color-mix(in srgb, var(--report-primary) 70%, #111827));
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
}

.report-advisory-advisor-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.report-advisory-notes-card p,
.report-advisory-advisor-card p {
  margin: 3px 0 0;
  color: var(--report-muted);
  font-size: .9rem;
}

.report-advisory-notes-card textarea {
  min-height: 210px;
  resize: vertical;
}

.report-advisory-advisor-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfdff 58%, color-mix(in srgb, var(--report-primary) 9%, #ffffff) 100%);
}

.report-advisory-advisor-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--report-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-advisory-advisor-card strong {
  color: var(--report-text);
}

.report-advisory-calendar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1075;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, .42);
}

.report-advisory-calendar {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(80vw, 980px);
  max-width: 80vw;
  height: 100%;
  background: #fff;
  box-shadow: -20px 0 50px rgba(15, 23, 42, .18);
}

.report-advisory-calendar > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--report-border);
}

.report-advisory-calendar h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--report-text);
}

.report-advisory-calendar-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--report-primary) 24%, var(--report-border));
  border-radius: 999px;
  color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 7%, #ffffff);
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.report-advisory-calendar-close:hover,
.report-advisory-calendar-close:focus-visible {
  color: #ffffff;
  background: var(--report-primary);
  box-shadow: 0 8px 18px rgba(var(--report-primary-rgb), .22);
  transform: translateY(-1px);
}

.report-advisory-calendar > .report-modal-loading.inline {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 0;
  height: 100%;
  padding: 24px;
  color: var(--report-muted);
  text-align: center;
}

.report-advisory-calendar > .report-modal-loading.inline p {
  margin: 0;
}

.report-advisory-calendar-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  padding: 18px;
  overflow: auto;
}

.report-advisory-calendar-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-advisory-calendar-steps li {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  color: var(--report-muted);
  background: #ffffff;
  font-weight: 800;
}

.report-advisory-calendar-steps li span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--report-muted);
  background: #eef2f7;
  font-size: .8rem;
}

.report-advisory-calendar-steps li.active {
  color: #ffffff;
  border-color: var(--report-primary);
  background: var(--report-primary);
}

.report-advisory-calendar-steps li.active span {
  color: var(--report-primary);
  background: #ffffff;
}

.report-advisory-calendar-steps li.complete {
  color: var(--report-primary);
  border-color: color-mix(in srgb, var(--report-primary) 28%, var(--report-border));
  background: color-mix(in srgb, var(--report-primary) 8%, #ffffff);
}

.report-advisory-calendar-steps li.complete span {
  color: #ffffff;
  background: var(--report-primary);
}

.report-advisory-calendar-panel {
  animation: reportAdvisoryFadeSlide .35s ease;
}

@keyframes reportAdvisoryFadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-advisory-panel-head {
  margin-bottom: 14px;
  text-align: center;
}

.report-advisory-panel-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--report-primary);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-advisory-panel-head h3 {
  margin: 0;
  color: var(--report-text);
  font-size: 1.28rem;
}

.report-advisory-panel-head p {
  margin: 5px 0 0;
  color: var(--report-muted);
}

.report-advisory-calendar-weeks {
  display: grid;
  gap: 12px;
}

.report-advisory-calendar-week h4 {
  margin: 0 0 6px;
  color: #495057;
  font-size: .95rem;
  font-weight: 800;
}

.report-advisory-weekdays,
.report-advisory-day-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.report-advisory-weekdays {
  margin-bottom: 6px;
}

.report-advisory-weekdays span {
  padding: 6px 0;
  border-radius: 4px;
  color: #6c757d;
  background: #f1f3f5;
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
}

.report-advisory-day-grid button {
  min-height: 90px;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 7px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: var(--report-text);
  background: #ffffff;
  text-align: left;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}

.report-advisory-day-grid button strong {
  color: #343a40;
  font-size: .86rem;
}

.report-advisory-day-grid button small {
  color: var(--report-primary);
  font-size: .74rem;
  font-weight: 800;
}

.report-advisory-day-grid button.clickable {
  cursor: pointer;
  border-color: var(--report-primary);
  background: color-mix(in srgb, var(--report-primary) 10%, #ffffff);
}

.report-advisory-day-grid button.clickable:hover,
.report-advisory-day-grid button.selected {
  background: color-mix(in srgb, var(--report-primary) 18%, #ffffff);
  box-shadow: 0 2px 8px rgba(var(--report-primary-rgb), .22);
  transform: translateY(-1px);
}

.report-advisory-day-grid button.disabled {
  color: #adb5bd;
  cursor: not-allowed;
  background: #f1f3f5;
  border-color: #dee2e6;
}

.report-advisory-day-grid button.disabled strong {
  color: #adb5bd;
}

.report-advisory-day-grid button.outside {
  opacity: .55;
}

.report-advisory-day-view,
.report-advisory-confirm-view {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--report-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

.report-advisory-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.report-advisory-slot-list {
  display: grid;
  gap: 9px;
}

.report-advisory-slot-list button {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--report-primary);
  border-radius: 6px;
  color: #ffffff;
  background: var(--report-primary);
  font-weight: 800;
  transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
}

.report-advisory-slot-list button:hover,
.report-advisory-slot-list button:focus-visible {
  background: var(--report-secondary);
  border-color: var(--report-secondary);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
  transform: translateY(-1px);
}

.report-advisory-selected-slot {
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--report-green) 25%, #d1e7dd);
  border-radius: 8px;
  color: var(--report-text);
  background: #e9f7ef;
  text-align: center;
}

.report-advisory-selected-slot i {
  margin-bottom: 14px;
  color: var(--report-primary);
  font-size: 58px;
}

.report-advisory-selected-slot h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.report-advisory-selected-slot p {
  margin: 0;
  color: var(--report-text);
  line-height: 1.55;
}

.report-advisory-confirm-actions {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.report-advisory-confirm-button {
  position: relative;
  animation: reportAdvisoryPulse 1.8s infinite;
}

@keyframes reportAdvisoryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--report-primary-rgb), .42);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(var(--report-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--report-primary-rgb), 0);
  }
}

.report-booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 17000;
  display: grid;
  place-items: center;
  background: rgba(var(--report-primary-rgb), .68);
}

.report-booking-loader {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 28px;
  color: #ffffff;
  text-align: center;
}

.report-booking-loader .spinner-border {
  width: 5rem;
  height: 5rem;
  border-width: .35rem;
}

.report-booking-loader p {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 500;
}

.report-booking-overlay-enter-active,
.report-booking-overlay-leave-active {
  transition: opacity .18s ease;
}

.report-booking-overlay-enter-from,
.report-booking-overlay-leave-to {
  opacity: 0;
}

.report-advisory-calendar-enter-active,
.report-advisory-calendar-leave-active {
  transition: opacity .18s ease;
}

.report-advisory-calendar-enter-from,
.report-advisory-calendar-leave-to {
  opacity: 0;
}

.report-advisory-calendar-enter-active .report-advisory-calendar,
.report-advisory-calendar-leave-active .report-advisory-calendar {
  transition: transform .22s ease;
}

.report-advisory-calendar-enter-from .report-advisory-calendar,
.report-advisory-calendar-leave-to .report-advisory-calendar {
  transform: translateX(100%);
}

@media (max-width: 980px) {
  .report-advisory-detail-layout,
  .report-advisory-detail-main-card {
    grid-template-columns: 1fr;
  }

  .report-advisory-detail-media {
    min-height: 240px;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 680px) {
  .report-advisory-access-notice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .report-advisory-access-notice .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .report-advisory-hero {
    grid-template-columns: 1fr;
  }

  .report-advisory-hero > i {
    display: none;
  }

  .report-advisory-card {
    grid-template-rows: 140px auto auto;
  }

  .report-advisory-detail-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .report-advisory-back,
  .report-advisory-detail-toolbar > span {
    width: 100%;
    justify-content: center;
  }

  .report-advisory-detail-main {
    padding: 18px;
  }

  .report-advisory-calendar {
    width: 100vw;
    max-width: 100vw;
  }

  .report-advisory-calendar-steps {
    grid-template-columns: 1fr;
  }

  .report-advisory-weekdays {
    display: none;
  }

  .report-advisory-day-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-advisory-day-grid button {
    min-height: 72px;
  }

  .report-advisory-day-view,
  .report-advisory-confirm-view {
    padding: 16px;
  }
}

@media (min-width: 1600px) {
  .report-advisory-calendar {
    width: 50vw;
    max-width: 50vw;
  }
}

@media (max-width: 620px) {
  .report-room-list-offline-sync {
    width: 100%;
  }

  .report-room-list-offline-sync > .btn {
    flex: 0 0 auto;
    width: auto;
  }
}
