﻿/**
 * Core Factors Pro — app shell (sidebar + topbar + main column).
 * Used with body.pro-app-shell
 */
 :root {
  --shell-slate-50: #f8fafc;
  --shell-slate-100: #f1f5f9;
  --shell-slate-200: #e2e8f0;
  --shell-slate-300: #cbd5e1;
  --shell-slate-400: #94a3b8;
  --shell-slate-500: #64748b;
  --shell-slate-600: #475569;
  --shell-slate-700: #334155;
  --shell-slate-800: #1e293b;
  --shell-slate-900: #0f172a;

  --shell-teal: #0d9488;
  --shell-teal-light: #14b8a6;
  --shell-teal-dark: #0f766e;
  --shell-teal-50: #f0fdfa;
  /* Dev mock (.cm-intro): soft teal outline */
  --shell-teal-border-soft: #cce8e3;
  --nps-promoter: #3f9a4d;
  --nps-promoter-bg: #ecf6ed;
  --nps-passive: #b8932e;
  --nps-passive-bg: #f9f3e3;
  --nps-detractor: #c73e50;
  --nps-detractor-bg: #fbeaed;
  /* NPS tier pill: Strong (70–79) vs Outstanding */
  --nps-strong-tier: #2d8640;
  --nps-strong-tier-bg: #e5f2e7;
  /* Between passive yellow and detractor red */
  --nps-concerning-tier: #c45c2a;
  --nps-concerning-tier-bg: #fdf1ea;

  --shell-bg: #f0f2f5;
  --shell-white: #ffffff;
  --shell-navy: #1e3a5f;
  --shell-danger: #dc2626;
  --shell-danger-focus-ring: rgba(220, 38, 38, 0.12);
  --shell-teal-focus-ring: rgba(15, 118, 110, 0.12);
  --shell-shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shell-shadow-teal-btn: 0 1px 2px rgba(13, 148, 136, 0.2);

  /* Typography — change font stack and sizes here only */
  --shell-font-family: "Source Sans 3", "Open Sans", system-ui, -apple-system, sans-serif;
  --shell-font-family-icons: "Material Symbols Outlined";
  --shell-font-family-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --shell-font-family-mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --shell-font-size-xs: 11px;
  --shell-font-size-sm: 12px;
  --shell-font-size-md: 13px;
  --shell-font-size-base: 14px;
  --shell-font-size-lg: 16px;
  --shell-font-weight-medium: 500;
  --shell-font-weight-semibold: 600;
  --shell-font-weight-bold: 700;
  --shell-line-height-tight: 1.35;
  --shell-line-height-base: 1.4;
  --shell-line-height-relaxed: 1.5;
  --shell-letter-spacing-caps: 0.06em;

  /* Radii, spacing, motion */
  --shell-radius-sm: 8px;
  --shell-radius-lg: 14px;
  --shell-transition-fast: 0.15s;
  --shell-icon-sm: 18px;
  --shell-icon-md: 20px;

  --sidebar-w-expanded: 240px;
  --sidebar-w-collapsed: 64px;
}

body.pro-app-shell {
  margin: 0;
  background: var(--shell-bg);
  font-family: var(--shell-font-family) !important;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Product catalog/checkout — no project sidebar block */
body.pro-app-shell.product-area .sidebar-context,
body.pro-app-shell.product-area .sidebar-nav > .nav-section {
  display: none !important;
}

body.pro-app-shell .wrapper {
  margin-left: 0 !important;
  padding-top: 0;
  margin-top: 0 !important;
  margin-right: 0 !important;
}
body.pro-app-shell .wrapper .container{
  padding: 32px 32px 60px !important;
  max-width: 1400px;

}
body.pro-app-shell .wrapper .container.app-container.container-default {
  max-width: 1400px;
}
body.pro-app-shell .wrapper .container.app-container.container-wide {
  max-width: 1600px;
}
body.pro-app-shell .wrapper .container.app-container.container-narrow {
  max-width: 1100px;
}

body.pro-app-shell #content {
  margin-bottom: 48px;
}

.pro-app-shell .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  user-select: none;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.pro-app-shell .app {
  display: flex;
  min-height: 100vh;
}

.pro-app-shell .sidebar-spacer {
  width: var(--sidebar-w-expanded);
  flex-shrink: 0;
  transition: width 0.2s ease;
}
.pro-app-shell .sidebar-spacer.collapsed {
  width: var(--sidebar-w-collapsed);
}

.pro-app-shell .sidebar {
  width: var(--sidebar-w-expanded);
  background: var(--shell-slate-900);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1050;
  transition: width 0.2s ease;
  overflow: hidden;
  box-shadow: none;
}
.pro-app-shell .sidebar.collapsed {
  width: var(--sidebar-w-collapsed);
}

.pro-app-shell .sidebar.collapsed.hover-expanded {
  width: var(--sidebar-w-expanded);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pro-app-shell .sidebar-top {
  height: 16px;
  flex-shrink: 0;
}

.pro-app-shell .sidebar-context {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  white-space: nowrap;
}

.pro-app-shell .sidebar-context-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--shell-slate-500);
  margin-bottom: 6px;
  opacity: 1;
  transition: opacity 0.15s;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .sidebar-context-label {
  opacity: 0;
  height: 0;
  margin: 0;
}

.pro-app-shell .sidebar-context-name {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.pro-app-shell .ctx-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.18);
  color: var(--shell-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-app-shell .ctx-icon .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .ctx-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  opacity: 1;
  transition: opacity 0.15s;
}

.pro-app-shell .ctx-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-app-shell .ctx-type {
  font-size: 11px;
  color: var(--shell-slate-400);
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .ctx-text {
  opacity: 0;
}

.pro-app-shell .sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0 24px;
}

.pro-app-shell .sidebar-nav::-webkit-scrollbar {
  width: 6px;
}

.pro-app-shell .sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.pro-app-shell .nav-group {
  padding: 0 8px;
  margin-bottom: 1px;
}

.pro-app-shell .nav-section {
  margin: 14px 16px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shell-slate-500);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.15s;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .nav-section {
  opacity: 0;
  height: 0;
  margin: 8px 0 0;
}

.pro-app-shell .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--shell-slate-300);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: transparent;
  font-family: inherit;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  box-sizing: border-box;
}

.pro-app-shell button.nav-item {
  appearance: none;
}

.pro-app-shell a.nav-item {
  color: var(--shell-slate-300);
}

.pro-app-shell .nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.pro-app-shell .nav-item:hover .nav-item-icon {
  color: #fff;
}

.pro-app-shell .nav-item.active {
  background: rgba(20, 184, 166, 0.15);
  color: var(--shell-teal-light);
}

.pro-app-shell .nav-item.active .nav-item-icon {
  color: var(--shell-teal-light);
}

.pro-app-shell .nav-item.expanded {
  color: #fff;
}

.pro-app-shell .nav-item.expanded .nav-item-icon {
  color: #fff;
}

.pro-app-shell .nav-item.has-active-child {
  color: #fff;
}

.pro-app-shell .nav-item.has-active-child .nav-item-icon {
  color: var(--shell-teal-light);
}

.pro-app-shell .nav-item-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--shell-slate-400);
  transition: color 0.15s;
}

.pro-app-shell .nav-item-icon .material-icons {
  font-size: 22px !important;
}

.pro-app-shell .nav-item-icon .material-symbols-outlined {
  font-size: 22px;
}

.pro-app-shell .nav-item-label {
  flex: 1;
  opacity: 1;
  transition: opacity 0.15s;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .nav-item-label {
  opacity: 0;
}

.pro-app-shell .nav-item-chev {
  font-size: 18px;
  color: var(--shell-slate-500);
  transition: transform 0.2s, opacity 0.15s;
  flex-shrink: 0;
}

.pro-app-shell .nav-item.expanded .nav-item-chev,
.pro-app-shell .nav-item.has-active-child .nav-item-chev {
  transform: rotate(180deg);
  color: var(--shell-slate-300);
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .nav-item-chev {
  opacity: 0;
}

.pro-app-shell .nav-children {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2px;
  padding-left: 22px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  position: relative;
}

.pro-app-shell .nav-group.open .nav-children {
  max-height: 1200px;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .nav-children {
  display: none;
}

.pro-app-shell .nav-children::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
}

.pro-app-shell .nav-child {
  display: flex;
  align-items: center;
  padding: 7px 12px 7px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--shell-slate-400);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.pro-app-shell a.nav-child {
  color: var(--shell-slate-400);
}

.pro-app-shell .nav-child:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.pro-app-shell .nav-child.active {
  color: var(--shell-teal-light);
  background: rgba(20, 184, 166, 0.12);
  font-weight: 600;
}

.pro-app-shell .sidebar-footer {
  padding: 10px 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.pro-app-shell .sidebar-collapse-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--shell-slate-400);
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  appearance: none;
  box-sizing: border-box;
}

.pro-app-shell .sidebar-collapse-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.pro-app-shell .sidebar-collapse-btn .material-symbols-outlined {
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .sidebar-collapse-btn .material-symbols-outlined {
  transform: rotate(180deg);
}

.pro-app-shell .sidebar-collapse-label {
  opacity: 1;
  transition: opacity 0.15s;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .sidebar-collapse-label {
  opacity: 0;
}

.pro-app-shell .sidebar .nav-item,
.pro-app-shell .sidebar .sidebar-collapse-btn {
  position: relative;
}

.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .nav-item[data-tooltip]:hover::after,
.pro-app-shell .sidebar.collapsed:not(.hover-expanded) .sidebar-collapse-btn[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--shell-slate-800);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1060;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main column */
.pro-app-shell .main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Top bar */
.pro-app-shell #topnav.topbar,
.pro-app-shell header.topbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--shell-slate-200) !important;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 8px;
  position: fixed;
  top: 0;
  left: var(--sidebar-w-expanded);
  right: 0;
  z-index: 1040;
  transition: left 0.2s ease;
  margin: 0;
  box-sizing: border-box;
  justify-content: space-between;
}

.pro-app-shell #topnav.topbar.sidebar-collapsed,
.pro-app-shell header.topbar.sidebar-collapsed {
  left: var(--sidebar-w-collapsed);
}

.pro-app-shell #topnav.topbar.sidebar-hover-expanded,
.pro-app-shell header.topbar.sidebar-hover-expanded {
  left: var(--sidebar-w-expanded);
}

.pro-app-shell .main-col-top-pad {
  height: 64px;
  flex-shrink: 0;
}

.pro-app-shell .topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 8px;
}

.pro-app-shell .topbar-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--shell-teal-light), var(--shell-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-app-shell .topbar-logo-mark .material-symbols-outlined {
  color: #fff;
  font-size: 20px;
}

.pro-app-shell .topbar-logo-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pro-app-shell .topbar-logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 18px;
  color: var(--shell-slate-900);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pro-app-shell .topbar-logo-pro {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--shell-slate-900);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}

.pro-app-shell .topbar-nav-left {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.pro-app-shell .topbar-spacer {
  flex: 1;
  min-width: 8px;
}

.pro-app-shell .topbar-nav-right {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.pro-app-shell .topbar-link {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-600);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  background: transparent;
  border: 1px solid transparent;
  font-family: inherit;
  white-space: nowrap;
  box-sizing: border-box;
}

.pro-app-shell .topbar-link:hover,
.pro-app-shell .topbar-link:focus {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-200);
  color: var(--shell-slate-800);
  text-decoration: none;
}

.pro-app-shell .topbar-link .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .topbar .dropdown.open > .topbar-link {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-200);
}

.pro-app-shell .topbar-divider {
  width: 1px;
  height: 24px;
  background: var(--shell-slate-200);
  margin: 0 4px;
  flex-shrink: 0;
}

.pro-app-shell .inv-pill.dropdown-toggle,
.pro-app-shell .inv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-700);
  text-decoration: none;
  box-sizing: border-box;
}

.pro-app-shell .inv-pill:hover,
.pro-app-shell .inv-pill:focus {
  background: #fff;
  border-color: var(--shell-slate-300);
  text-decoration: none;
  color: var(--shell-slate-800);
}

.pro-app-shell .inv-pill.open {
  background: #fff;
  border-color: var(--shell-slate-300);
}

.pro-app-shell .inv-pill .material-symbols-outlined.lead-icon {
  font-size: 18px;
  color: var(--shell-slate-500);
}

.pro-app-shell .inv-pill .chev {
  font-size: 17px;
  color: var(--shell-slate-400);
  transition: transform 0.2s;
}

.pro-app-shell .inv-pill.open .chev {
  transform: rotate(180deg);
}

.pro-app-shell .topbar-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell-slate-600);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 0.15s;
  text-decoration: none;
  box-sizing: border-box;
  padding: 0;
}

.pro-app-shell .topbar-icon-btn:hover,
.pro-app-shell .topbar-icon-btn:focus {
  background: var(--shell-slate-100);
  text-decoration: none;
  color: var(--shell-slate-800);
}

.pro-app-shell .topbar-icon-btn .material-symbols-outlined {
  font-size: 22px;
}

.pro-app-shell .topbar-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pro-app-shell .topbar-avatar-btn {
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 0;
  background: var(--shell-teal-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
  text-decoration: none;
  box-sizing: border-box;
}

.pro-app-shell .topbar-avatar-btn:hover,
.pro-app-shell .topbar-avatar-btn:focus {
  border-color: var(--shell-teal-light);
  text-decoration: none;
  color: #fff;
}

/* Dropdown menus under topbar */
.pro-app-shell .topbar .dropdown-menu {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid var(--shell-slate-200);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 6px;
  min-width: 220px;
  z-index: 1055;
}

.pro-app-shell .topbar .dropdown-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--shell-slate-600);
}

.pro-app-shell .topbar .dropdown-menu > li > a:hover,
.pro-app-shell .topbar .dropdown-menu > li > a:focus {
  background: var(--shell-slate-50);
  color: var(--shell-slate-800);
}

.pro-app-shell .topbar .dropdown-menu > li > a .material-symbols-outlined {
  font-size: 18px;
  color: var(--shell-slate-400);
}

.pro-app-shell .topbar .inv-dropdown-panel {
  width: 300px;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;  
}

.pro-app-shell .topbar .inv-dropdown-panel > li {
  list-style: none;
}

.pro-app-shell .topbar .inv-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--shell-slate-100);
}

.pro-app-shell .topbar .inv-dd-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-800);
}

.pro-app-shell .topbar .inv-dd-action {
  font-size: 12px;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  cursor: default;
}

.pro-app-shell .topbar .inv-dd-section {
  padding: 10px 18px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--shell-slate-400);
}

.pro-app-shell .topbar .inv-dd-item {
  padding: 0;
}

.pro-app-shell .topbar .inv-dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  text-decoration: none;
  color: inherit;
}

.pro-app-shell .topbar .inv-dd-link:hover,
.pro-app-shell .topbar .inv-dd-link:focus {
  background: var(--shell-slate-50);
  text-decoration: none;
}

.pro-app-shell .topbar .inv-dd-name {
  font-size: 13px;
  color: var(--shell-slate-600);
  font-weight: 500;
  padding-right: 10px;
}

.pro-app-shell .topbar .inv-dd-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-800);
}

.pro-app-shell .topbar .inv-dd-count.low {
  color: #dc2626;
}

.pro-app-shell .topbar .inv-dd-sep {
  height: 1px;
  background: var(--shell-slate-100);
  margin: 6px 0;
}

.pro-app-shell .topbar .inv-dd-empty {
  padding: 16px 18px;
  color: var(--shell-slate-500);
  font-size: 13px;
}

/* Visually hidden but still in tab order / DOM for $('#authuserid') etc. */
.pro-app-shell .topbar-hidden-fields {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none;
}

/* Breadcrumb target for legacy page JS ($('.breadcrumb').html(...)) */

.pro-app-shell .topbar-breadcrumb-wrap .breadcrumb {
  margin: 0;
  padding: 4px 0;
  background: transparent;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-app-shell .topbar-breadcrumb-wrap .breadcrumb > li {
  display: inline;
}

.pro-app-shell .topbar-breadcrumb-wrap .breadcrumb > li + li:before {
  padding: 0 4px;
  color: var(--shell-slate-400);
  content: "/\00a0";
}

/* New Participant - Manual Entry */
.pro-app-shell .np-page-wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .np-page-head {
  padding: 20px 22px;
  margin-bottom: 16px;
}

.pro-app-shell .np-title {
  margin: 0 !important;
}

.pro-app-shell .np-inventory-banner,
.pro-app-shell .ap-inventory-banner {
  background: var(--shell-teal-50);
  border: 1px solid #cce8e3;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--shell-slate-700);
  line-height: 1.45;
}

.pro-app-shell .ap-banner-icon {
  font-size: 22px;
  color: var(--shell-teal-dark);
  flex-shrink: 0;
}

.pro-app-shell .ap-inventory-banner.warning {
  background: #fef9e8;
  border-color: #fbe9a8;
}

.pro-app-shell .ap-inventory-banner.warning .ap-banner-icon {
  color: #b45309;
}

.pro-app-shell .ap-inventory-banner-buy {
  margin-left: auto;
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.pro-app-shell .ap-inventory-banner-buy:hover {
  text-decoration: underline;
}

.pro-app-shell .ap-bulk-hint {
  font-size: 14px;
  color: var(--shell-slate-600);
  margin-bottom: 22px;
  padding-left: 4px;
}

.pro-app-shell .ap-bulk-hint a {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.pro-app-shell .ap-bulk-hint a:hover {
  text-decoration: underline;
}

.pro-app-shell .ap-form {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.pro-app-shell .ap-form-header,
.pro-app-shell .ap-row {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 1fr 1.4fr 50px;
  gap: 12px;
  align-items: center;
}

.pro-app-shell .ap-form-header {
  padding: 13px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pro-app-shell .ap-form-header .ap-col-num {
  text-align: center;
}

.pro-app-shell .ap-col-optional {
  font-weight: 500;
  color: var(--shell-slate-400);
  text-transform: none;
  margin-left: 6px;
  letter-spacing: 0;
  font-size: 12px;
}

.pro-app-shell .ap-row {
  padding: 23px 22px;
  border-bottom: 1px solid var(--shell-slate-100);
  transition: background 0.12s;
}

.pro-app-shell .ap-row:hover {
  background: var(--shell-slate-50);
}

.pro-app-shell .ap-row:last-of-type {
  border-bottom: none;
}

.pro-app-shell .ap-row-num {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-500);
}

.pro-app-shell .ap-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 15px;
  color: var(--shell-slate-800);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pro-app-shell .ap-input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .ap-input.customerror {
  border-color: #f6504d;
  box-shadow: none;
}

.pro-app-shell .ap-input-error {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: #f6504d;
  position: absolute;
}

.pro-app-shell .ap-row-delete {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--shell-slate-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.pro-app-shell .ap-row-delete:hover {
  background: #fee2e2;
  color: #b91c1c;
}

.pro-app-shell .ap-row-delete:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pro-app-shell .ap-row-delete:disabled:hover {
  background: transparent;
  color: var(--shell-slate-400);
}

.pro-app-shell .ap-add-row-wrap {
  padding: 16px 22px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .ap-add-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px dashed var(--shell-slate-400);
  color: var(--shell-teal-dark);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.pro-app-shell .ap-add-row:hover {
  background: var(--shell-teal-50);
  border-color: var(--shell-teal-dark);
  border-style: solid;
}

.pro-app-shell .ap-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 24px;
}

.pro-app-shell .ap-btn {
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.pro-app-shell .ap-btn-cancel {
  background: #fff;
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
}

.pro-app-shell .ap-btn-cancel:hover {
  background: var(--shell-slate-100);
  border-color: var(--shell-slate-400);
}

.pro-app-shell .ap-btn-save {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .ap-btn-save:hover {
  background: #1e3a5f;
}

.pro-app-shell .ap-btn-save:disabled {
  background: var(--shell-slate-300);
  color: var(--shell-slate-500);
  cursor: not-allowed;
}

@media (max-width: 1100px) {
  .pro-app-shell .ap-form-header,
  .pro-app-shell .ap-row {
    grid-template-columns: 42px 1fr 1fr 1fr 1.2fr 42px;
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .pro-app-shell .ap-input {
    font-size: 14px;
  }
}

/* Shared Shell Components */
.pro-app-shell .page-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pro-app-shell .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: var(--shell-teal);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2);
}
.pro-app-shell button.btn-primary,
.pro-app-shell a.btn-primary {
  background: var(--shell-teal) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.pro-app-shell .btn-primary:hover {
  background: var(--shell-teal-dark);
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.28);
}
.pro-app-shell button.btn-primary:hover,
.pro-app-shell a.btn-primary:hover {
  background: var(--shell-teal-dark) !important;
  color: #fff !important;
}

.pro-app-shell .btn-primary .material-symbols-outlined {
  font-size: 18px !important;
  color: #fff;
}

.pro-app-shell .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--shell-slate-700);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.pro-app-shell button.btn-secondary,
.pro-app-shell a.btn-secondary {
  background: #fff !important;
  border: 1px solid var(--shell-slate-200) !important;
  color: var(--shell-slate-700) !important;
}

.pro-app-shell .btn-secondary:hover {
  border-color: var(--shell-slate-300);
  background: var(--shell-slate-50);
}
.pro-app-shell button.btn-secondary:hover,
.pro-app-shell a.btn-secondary:hover {
  background: var(--shell-slate-50) !important;
  border-color: var(--shell-slate-300) !important;
  color: var(--shell-slate-700) !important;
}

.pro-app-shell .btn-secondary .material-symbols-outlined {
  font-size: 18px !important;
  color: var(--shell-slate-500);
}

.pro-app-shell .btn-secondary .chevron {
  font-size: 19px;
}

/* Shared Page Header Components */
.pro-app-shell .page-header {
  margin-bottom: 24px;
  margin-top: 0;
  border-bottom: 0;
}

.pro-app-shell .breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pro-app-shell .breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  background: transparent;
}

.pro-app-shell .breadcrumb a {
  color: var(--shell-slate-500);
  text-decoration: none;
}

.pro-app-shell .breadcrumb a:hover {
  color: var(--shell-teal-dark);
}

.pro-app-shell .breadcrumb-sep {
  margin: 0 8px;
  color: var(--shell-slate-300);
}

.pro-app-shell .breadcrumb-current {
  color: var(--shell-slate-700);
}

.pro-app-shell .page-context-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--shell-slate-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--shell-slate-500);
  white-space: nowrap;
}

.pro-app-shell .page-context-pill .material-symbols-outlined {
  font-size: 16px !important;
  color: var(--shell-slate-400);
}

.pro-app-shell .page-context-pill .pcp-text em {
  font-style: italic;
  color: var(--shell-slate-600);
  font-weight: 600;
}

.pro-app-shell .page-context-pill .pcp-sep {
  color: var(--shell-slate-300);
  font-weight: 400;
  margin: 0 2px;
}

.pro-app-shell .page-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pro-app-shell .page-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--shell-slate-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.pro-app-shell .page-subtitle {
  font-size: 16px;
  color: var(--shell-slate-500);
  margin-bottom: 28px;
}

.pro-app-shell .section {
  margin-bottom: 24px;
}

.pro-app-shell .section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--shell-slate-400);
  text-transform: uppercase;
  margin: 0 0 12px 2px;
}

/* NPS Dashboard */
#score_distribution_chart {
  flex: 1 1 auto;
  width: 100%;
  min-height: 220px;
}

.pro-app-shell .metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pro-app-shell .metric-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--shell-slate-300);
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .metric-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pro-app-shell .metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pro-app-shell .metric-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-teal-dark);
  background: var(--shell-teal-50);
  padding: 2px 8px;
  border-radius: 999px;
}

.pro-app-shell .metric-value {
  font-size: 30px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.02em;
}

.pro-app-shell .metric-value-suffix {
  font-size: 17px;
  font-weight: 600;
  color: var(--shell-slate-400);
}

.pro-app-shell .metric-sub {
  font-size: 14px;
  color: var(--shell-slate-500);
  margin-top: 2px;
}

.pro-app-shell .compact-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 20px;
  align-items: stretch;
}

.pro-app-shell .score-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pro-app-shell .score-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .score-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.pro-app-shell .score-card.promoter::before {
  background: #3f9a4d;
}

.pro-app-shell .score-card.passive::before {
  background: #b8932e;
}

.pro-app-shell .score-card.detractor::before {
  background: #c73e50;
}

.pro-app-shell .score-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-app-shell .score-card.promoter .score-card-icon {
  background: #ecf6ed;
  color: #3f9a4d;
}

.pro-app-shell .score-card.passive .score-card-icon {
  background: #f9f3e3;
  color: #b8932e;
}

.pro-app-shell .score-card.detractor .score-card-icon {
  background: #fbeaed;
  color: #c73e50;
}

.pro-app-shell .score-card-icon .material-symbols-outlined {
  font-size: 24px;
}

.pro-app-shell .score-card-body {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .score-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.pro-app-shell .score-card-numbers {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pro-app-shell .score-card-count {
  font-size: 24px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.02em;
}

.pro-app-shell .score-card-pct {
  font-size: 15px;
  font-weight: 600;
  color: var(--shell-slate-500);
}

.pro-app-shell .score-card-range {
  font-size: 13px;
  color: var(--shell-slate-400);
  margin-top: 2px;
}

.pro-app-shell .nps-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .nps-panel-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.pro-app-shell .nps-panel-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--shell-slate-400);
  text-transform: uppercase;
}

.pro-app-shell .nps-panel-score {
  font-size: 92px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 4px;
}

.pro-app-shell .nps-panel-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  width: fit-content;
}

.pro-app-shell .nps-panel-tier.tier-outstanding {
  background: var(--nps-promoter-bg);
  color: var(--nps-promoter);
}

.pro-app-shell .nps-panel-tier.tier-strong {
  background: var(--nps-strong-tier-bg);
  color: var(--nps-strong-tier);
}

.pro-app-shell .nps-panel-tier.tier-needs-attention {
  background: var(--nps-passive-bg);
  color: var(--nps-passive);
}

.pro-app-shell .nps-panel-tier.tier-concerning {
  background: var(--nps-concerning-tier-bg);
  color: var(--nps-concerning-tier);
}

.pro-app-shell .nps-panel-tier.tier-critical {
  background: var(--nps-detractor-bg);
  color: var(--nps-detractor);
}

.pro-app-shell .nps-panel-tier .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .nps-gauge-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.pro-app-shell .nps-gauge-wrap svg {
  max-width: 100%;
  height: auto;
}

.pro-app-shell .chart-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.pro-app-shell .chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin: 0;
}

.pro-app-shell .chart-subtitle {
  font-size: 14px;
  color: var(--shell-slate-500);
  margin-top: 2px;
}

.pro-app-shell .chart-legend {
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-600);
}

.pro-app-shell .legend-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pro-app-shell .legend-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.pro-app-shell .legend-dot.promoter::before {
  background: #3f9a4d;
}

.pro-app-shell .legend-dot.passive::before {
  background: #b8932e;
}

.pro-app-shell .legend-dot.detractor::before {
  background: #c73e50;
}

.pro-app-shell .chart-body {
  flex: 1;
  min-height: 200px;
  display: flex;
}

.pro-app-shell #score_distribution_chart {
  flex: 1 1 auto;
  width: 100%;
  min-height: 220px;
}

.pro-app-shell .recharts-tooltip-wrapper {
  z-index: 20;
}

.pro-app-shell .recharts-tooltip {
  background: var(--shell-slate-900);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pro-app-shell .recharts-tooltip-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--shell-slate-200);
  margin-bottom: 4px;
}

.pro-app-shell .recharts-tooltip-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.pro-app-shell .feedback-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .feedback-tabs {
  display: flex;
  border-bottom: 1px solid var(--shell-slate-200);
  padding: 0 8px;
  margin: 0;
  list-style: none;
}

.pro-app-shell .feedback-tabs li {
  list-style: none;
}

.pro-app-shell .feedback-tab {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--shell-slate-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: inherit;
  text-decoration: none;
}

.pro-app-shell .feedback-tab:hover {
  color: var(--shell-slate-700);
}

.pro-app-shell .feedback-tab.active {
  color: var(--shell-slate-900);
  border-bottom-color: var(--shell-teal);
}

.pro-app-shell .feedback-tab-count {
  font-size: 13px;
  font-weight: 700;
  background: var(--shell-slate-100);
  color: var(--shell-slate-600);
  padding: 2px 7px;
  border-radius: 999px;
}

.pro-app-shell .feedback-tab.active .feedback-tab-count {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .feedback-tab.saved-tab .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .feedback-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--shell-slate-100);
  background: var(--shell-slate-50);
}

.pro-app-shell .feedback-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-app-shell .feedback-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  padding: 7px 12px;
  width: 280px;
}

.pro-app-shell .feedback-search input {
  border: none;
  outline: none;
  font-size: 15px;
  flex: 1;
  font-family: inherit;
  color: var(--shell-slate-700);
  background: transparent;
}

.pro-app-shell .feedback-search .material-symbols-outlined {
  font-size: 18px;
  color: var(--shell-slate-400);
}

.pro-app-shell .feedback-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pro-app-shell .feedback-table {
  width: 100%;
  border-collapse: collapse;
}

.pro-app-shell .feedback-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .feedback-table thead th .sortable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.pro-app-shell .feedback-table thead th .sortable .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .feedback-table.dataTable thead .sorting:before,
.pro-app-shell .feedback-table.dataTable thead .sorting:after,
.pro-app-shell .feedback-table.dataTable thead .sorting_asc:before,
.pro-app-shell .feedback-table.dataTable thead .sorting_asc:after,
.pro-app-shell .feedback-table.dataTable thead .sorting_desc:before,
.pro-app-shell .feedback-table.dataTable thead .sorting_desc:after {
  display: none !important;
}

.pro-app-shell .feedback-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--shell-slate-100);
  font-size: 15px;
  color: var(--shell-slate-700);
  vertical-align: top;
}

.pro-app-shell .feedback-table tbody tr:last-child td {
  border-bottom: none;
}

.pro-app-shell .feedback-table tbody tr:hover {
  background: var(--shell-slate-50);
}

.pro-app-shell .feedback-table tbody tr:hover .row-actions {
  opacity: 1;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_length,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_filter,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_info {
  display: none !important;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate {
  float: none;
  text-align: right;
  padding: 14px 24px;
  border-top: 1px solid var(--shell-slate-100);
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li {
  margin: 0;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li > a,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li > span {
  min-width: 32px;
  height: 32px;
  border-radius: 7px !important;
  border: 1px solid var(--shell-slate-200) !important;
  background: #fff !important;
  color: var(--shell-slate-600) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px !important;
  line-height: 20px;
  text-align: center;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.active > a,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.active > a:hover {
  background: var(--shell-teal) !important;
  border-color: var(--shell-teal) !important;
  color: #fff !important;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > a,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > a:hover {
  opacity: 0.4;
  cursor: not-allowed !important;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.previous > a,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.next > a {
  font-size: 0 !important;
  width: 32px;
  min-width: 32px;
  padding: 5px 0 !important;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.previous > a::before,
.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.next > a::before {
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
  color: var(--shell-slate-600);
  display: inline-block;
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.previous > a::before {
  content: "chevron_left";
}

.pro-app-shell .feedback-card .dataTables_wrapper .dataTables_paginate .pagination > li.next > a::before {
  content: "chevron_right";
}

.pro-app-shell .feedback-name {
  font-weight: 600;
  color: var(--shell-slate-800);
}

.pro-app-shell .feedback-email {
  font-size: 14px;
  color: var(--shell-slate-500);
  margin-top: 2px;
}

.pro-app-shell .feedback-score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.pro-app-shell .feedback-score-pill.promoter {
  background: #ecf6ed;
  color: #3f9a4d;
}

.pro-app-shell .feedback-score-pill.passive {
  background: #f9f3e3;
  color: #b8932e;
}

.pro-app-shell .feedback-score-pill.detractor {
  background: #fbeaed;
  color: #c73e50;
}

.pro-app-shell .feedback-comment.empty {
  color: var(--shell-slate-400);
  font-style: italic;
}

.pro-app-shell .feedback-comment {
  color: var(--shell-slate-700);
  font-size: 15px;
  line-height: 1.55;
  max-width: 480px;
}

.pro-app-shell .feedback-date {
  font-size: 14px;
  color: var(--shell-slate-500);
  white-space: nowrap;
}

.pro-app-shell .row-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}

.pro-app-shell .row-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--shell-slate-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.pro-app-shell .row-action-btn:hover {
  background: var(--shell-slate-100);
  color: var(--shell-slate-700);
}

.pro-app-shell .row-action-btn .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .feedback-row-actions-head,
.pro-app-shell .feedback-row-actions-cell {
  width: 96px;
  max-width: 96px;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

.pro-app-shell .feedback-row-actions-cell .row-actions {
  justify-content: flex-end;
}

.pro-app-shell .star-cell {
  width: 36px;
  padding-left: 24px !important;
  padding-right: 0 !important;
}

.pro-app-shell .star-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--shell-slate-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.pro-app-shell .star-btn:hover {
  background: var(--shell-slate-100);
  color: #b8932e;
}

.pro-app-shell .star-btn.starred {
  color: #b8932e;
}

.pro-app-shell .star-btn.starred:hover {
  color: #b8932e;
}

.pro-app-shell .star-btn .material-symbols-outlined {
  font-size: 19px;
  font-variation-settings: "FILL" 0;
}

.pro-app-shell .star-btn.starred .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}

.pro-app-shell .feedback-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--shell-slate-100);
  font-size: 14px;
  color: var(--shell-slate-500);
}

.pro-app-shell .feedback-pagination-controls {
  display: flex;
  gap: 4px;
}

.pro-app-shell .pagination-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.pro-app-shell .pagination-btn:hover {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-300);
}

.pro-app-shell .pagination-btn.active {
  background: var(--shell-teal);
  border-color: var(--shell-teal);
  color: #fff;
}

.pro-app-shell .pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* NPS Dashboard Empty */
.pro-app-shell .empty-state-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.pro-app-shell .empty-state-card {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  width: 100%;
  max-width: 560px;
  padding: 56px 48px 48px;
  text-align: center;
}

.pro-app-shell .empty-state-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--shell-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell-slate-400);
}

.pro-app-shell .empty-state-icon .material-symbols-outlined {
  font-size: 40px;
}

.pro-app-shell .empty-state-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.pro-app-shell .empty-state-sub {
  font-size: 15px;
  color: var(--shell-slate-500);
  line-height: 1.55;
  max-width: 380px;
  margin: 0 auto 28px;
}

.pro-app-shell .empty-state-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.pro-app-shell .empty-state-actions .btn-primary {
  font-size: 15px;
  padding: 11px 22px;
}

.pro-app-shell .empty-state-cta-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pro-app-shell .empty-state-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-500);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   Customize Survey / Messaging page (cm-*)
   Used by /pro/nps_customize_message page. The actual rich-text
   editor remains Summernote (loaded via summernote.css). These
   classes only style the page chrome around it: page header,
   intro banner, navy-headed cards, dropdown, and footer.
   ============================================================ */
.pro-app-shell .cm-page {
  max-width: 1100px;
  margin: 0 auto;
}

/* Intro banner (info) */
.pro-app-shell .cm-intro {
  background: var(--shell-teal-50);
  border: 1px solid var(--shell-teal-border-soft);
  border-left: 3px solid var(--shell-teal-dark);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.pro-app-shell .cm-intro .material-symbols-outlined {
  font-size: 22px;
  color: var(--shell-teal-dark);
  flex-shrink: 0;
}
.pro-app-shell .cm-intro-text {
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.6;
}

/* Card pattern */
.pro-app-shell .cm-card,
.pro-app-shell .ps-card {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.pro-app-shell .cm-card-header,
.pro-app-shell .ps-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  border-radius: 14px 14px 0 0;
}
.pro-app-shell .cm-card-title,
.pro-app-shell .ps-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.pro-app-shell .cm-card-title .material-symbols-outlined,
.pro-app-shell .ps-card-title .material-symbols-outlined {
  font-size: 20px;
}
.pro-app-shell .cm-card-body,
.pro-app-shell .ps-card-body {
  padding: 22px 26px 24px;
}

/* Description below header explaining what this content is for */
.pro-app-shell .cm-section-desc,
.pro-app-shell .ps-section-desc {
  font-size: 13px;
  color: var(--shell-slate-500);
  line-height: 1.5;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: var(--shell-slate-50);
  border-radius: 8px;
  border-left: 3px solid var(--shell-slate-300);
}

/* Preview button on card header */
.pro-app-shell .cm-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.pro-app-shell .cm-preview-btn:hover {
  background: #fff;
  color: #1e3a5f;
  border-color: #fff;
}
.pro-app-shell .cm-preview-btn .material-symbols-outlined {
  font-size: 17px;
}

/* Card footer with Update button + saved status */
.pro-app-shell .cm-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  margin-top: 14px;
  border-top: 1px solid var(--shell-slate-200);
}
.pro-app-shell .cm-saved-status,
.pro-app-shell .ps-action-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #526b8a;
}
.pro-app-shell .cm-saved-status.success,
.pro-app-shell .ps-action-summary.success {
  color: var(--shell-teal-dark);
  font-weight: 600;
}
.pro-app-shell .cm-saved-status.dirty,
.pro-app-shell .ps-action-summary.dirty {
  color: #92400e;
  font-weight: 600;
}
.pro-app-shell .cm-saved-status .material-symbols-outlined,
.pro-app-shell .ps-action-summary .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  color: #526b8a;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.pro-app-shell .cm-btn-update,
.pro-app-shell .ps-btn-save {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.pro-app-shell .cm-btn-update:hover:not(:disabled),
.pro-app-shell .ps-btn-save:hover:not(:disabled) {
  background: #1e3a5f;
}
.pro-app-shell .cm-btn-update:disabled,
.pro-app-shell .ps-btn-save:disabled {
  background: var(--shell-slate-200);
  color: var(--shell-slate-400);
  cursor: not-allowed;
}
.pro-app-shell .cm-btn-update .material-symbols-outlined,
.pro-app-shell .ps-btn-save .material-symbols-outlined {
  font-size: 17px;
}

/* Survey question dropdown */
.pro-app-shell .cm-select-label,
.pro-app-shell .ps-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.pro-app-shell .cm-select,
.pro-app-shell .ps-form-input,
.pro-app-shell .ps-form-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--shell-slate-800);
  background-color: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  line-height: 1.4;
  height: auto;
}
.pro-app-shell .cm-select,
.pro-app-shell .ps-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.pro-app-shell .cm-select:focus,
.pro-app-shell .ps-form-input:focus,
.pro-app-shell .ps-form-select:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}
.pro-app-shell .cm-select-hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--shell-slate-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pro-app-shell .cm-select-hint .material-symbols-outlined {
  font-size: 16px;
  color: var(--shell-slate-400);
}

/* Variables hint row (under email body editor) */
.pro-app-shell .cm-variables-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--shell-slate-500);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pro-app-shell .cm-variables-hint .material-symbols-outlined {
  font-size: 16px;
  color: var(--shell-slate-400);
}
.pro-app-shell .cm-variables-hint code {
  background: var(--shell-slate-100);
  border: 1px solid var(--shell-slate-200);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 12px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: var(--shell-slate-700);
}

/* ===== Summernote editor styled to match the new cm-toolbar design =====
   The default Summernote (Bootstrap 3) toolbar uses panel-heading chrome
   with stacked btn-groups. We override that to mirror the reference
   `.cm-toolbar` layout: a single rounded slate-50 bar with 30x30
   transparent buttons, slate-200 hover, and a subtle vertical divider
   between groups. */
.pro-app-shell .cm-card-body .note-editor.note-frame {
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: none;
}

/* Toolbar bar */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: var(--shell-slate-50);
  border: none;
  border-bottom: 1px solid var(--shell-slate-200);
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

/* Each button group sits inline; flatten the default Bootstrap
   btn-group chrome (rounded outer corners, group borders, spacing). */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar > .note-btn-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Vertical divider between button groups, matching .cm-tool-divider */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar > .note-btn-group + .note-btn-group {
  margin-left: 4px;
  padding-left: 8px;
  position: relative;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar > .note-btn-group + .note-btn-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: var(--shell-slate-300);
}

/* Individual buttons - 30x30 transparent, slate-200 hover */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  padding: 0;
  margin: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-700) !important;
  font-family: inherit;
  text-shadow: none;
  transition: background 0.12s ease;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn:hover,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn:focus {
  background: var(--shell-slate-200) !important;
  color: var(--shell-slate-800);
  outline: none;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn.active,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn:active {
  background: var(--shell-slate-300) !important;
  color: var(--shell-slate-900);
}

/* Replace Summernote's default icon font with the exact icon set from the
   new design's cm-toolbar:
     - Bold / Italic / Underline render as styled letter characters
     - Lists / Link / Clear render as Material Symbols Outlined ligatures
   We hide the default <i class="note-icon-*"> glyph for B/I/U (and inject
   a styled letter on the button), and we re-skin the <i> element itself
   for the Material-Symbols icons by swapping font-family + ::before
   content. */

/* B / I / U: hide native glyph, render styled letter on the button */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-bold > .note-icon-bold,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-italic > .note-icon-italic,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-underline > .note-icon-underline {
  display: none !important;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-bold::before,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-italic::before,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-underline::before {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-bold::before {
  content: "B";
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-italic::before {
  content: "I";
  font-style: italic;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-btn-underline::before {
  content: "U";
  text-decoration: underline;
}

/* List / Link / Clear: re-skin the <i class="note-icon-*"> element to
   render a Material Symbols Outlined ligature instead of the
   summernote icon font. */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-unorderedlist,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-orderedlist,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-link,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-eraser {
  font-family: 'Material Symbols Outlined' !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline-block !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  direction: ltr !important;
  font-feature-settings: 'liga' !important;
  -webkit-font-feature-settings: 'liga' !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  width: auto !important;
  height: auto !important;
}
/* Override summernote's own ::before so the ligature text is what shows */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-unorderedlist::before {
  content: "format_list_bulleted" !important;
  font-family: inherit !important;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-orderedlist::before {
  content: "format_list_numbered" !important;
  font-family: inherit !important;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-link::before {
  content: "link" !important;
  font-family: inherit !important;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-toolbar .note-icon-eraser::before {
  content: "format_clear" !important;
  font-family: inherit !important;
}

/* Editable area */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-editing-area .note-editable {
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--shell-slate-800);
}

/* Match the reference editor's list indentation. Summernote can place
   ordered-list markers too close to the editor edge, so give lists
   their own left padding inside the editable content area. */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-editing-area .note-editable ul,
.pro-app-shell .cm-card-body .note-editor.note-frame .note-editing-area .note-editable ol {
  margin: 0 0 12px;
  padding-left: 32px;
  list-style-position: outside;
}
.pro-app-shell .cm-card-body .note-editor.note-frame .note-editing-area .note-editable li {
  margin-bottom: 4px;
  padding-left: 4px;
}

/* Statusbar (the resize handle bar at the bottom) — soften the corners
   and remove the dark default top-border. */
.pro-app-shell .cm-card-body .note-editor.note-frame .note-statusbar {
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  border-radius: 0 0 8px 8px;
}

/* Signature editor uses smaller text (14px) to match reference design,
   since signatures are typically smaller than the email body. */
.pro-app-shell #email_signature_content + .note-editor.note-frame .note-editing-area .note-editable,
.pro-app-shell #demo2 + .note-editor.note-frame .note-editing-area .note-editable {
  font-size: 14px;
}

/* ===== Preview Modal (custom, not Bootstrap) ===== */
@keyframes cmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pro-app-shell .cm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: cmFadeIn 0.18s ease-out;
}

.pro-app-shell .cm-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.pro-app-shell .cm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #1e3a5f;
  color: #fff;
  flex-shrink: 0;
  border: none;
}

.pro-app-shell .cm-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.pro-app-shell .cm-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  opacity: 0.85;
}
.pro-app-shell .cm-modal-close:hover {
  opacity: 1;
}
.pro-app-shell .cm-modal-close .material-symbols-outlined {
  font-size: 22px;
}

.pro-app-shell .cm-modal-body {
  overflow-y: auto;
  flex: 1;
  background: var(--shell-slate-50);
  padding: 28px;
}

.pro-app-shell .cm-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  flex-shrink: 0;
}

.pro-app-shell .cm-modal-btn {
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.pro-app-shell .cm-modal-btn:hover {
  background: #1e3a5f;
}

/* Small uppercase context label inside modal body */
.pro-app-shell .cm-preview-context {
  font-size: 12px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-align: center;
}

.pro-app-shell #cm-modal-welcome .cm-modal,
.pro-app-shell #cm-modal-thankyou .cm-modal,
.pro-app-shell #cm-modal-signature .cm-modal {
  max-width: 60%;
  max-height: none;
  overflow: visible;
  flex-shrink: 0;
}

.pro-app-shell #cm-modal-welcome,
.pro-app-shell #cm-modal-thankyou,
.pro-app-shell #cm-modal-signature {
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.pro-app-shell #cm-modal-welcome .cm-modal-body,
.pro-app-shell #cm-modal-thankyou .cm-modal-body,
.pro-app-shell #cm-modal-signature .cm-modal-body {
  padding: 0;
  overflow: visible;
  flex: 0 0 auto;
  min-height: 0;
}

.pro-app-shell #cm-modal-welcome .cm-preview-context,
.pro-app-shell #cm-modal-thankyou .cm-preview-context,
.pro-app-shell #cm-modal-signature .cm-preview-context {
  margin: 0;
  padding: 16px 22px 0;
}

.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell,
.pro-app-shell #cm-modal-thankyou .cm-preview-thankyou-shell,
.pro-app-shell #cm-modal-signature .cm-preview-signature-shell {
  background: #fff;
  overflow: visible;
  max-width: 100%;
}

.pro-app-shell #cm-modal-welcome .message-preview-popup .tab,
.pro-app-shell #cm-modal-thankyou .message-preview-popup .tab,
.pro-app-shell #cm-modal-signature .message-preview-popup .tab {
  height: auto;
  min-height: 0;
}

.pro-app-shell #cm-modal-welcome .message-preview-popup #content,
.pro-app-shell #cm-modal-thankyou .message-preview-popup #content,
.pro-app-shell #cm-modal-signature .message-preview-popup #content {
  overflow: visible;
  max-width: 100%;
}

.pro-app-shell .message-preview-popup .cm-pv-span {
  display: block;
  width: 100%;
  max-width: 100%;
}

.pro-app-shell .message-preview-popup .cm-pv-welcome-custom {
  margin-bottom: 14px;
}

.pro-app-shell .message-preview-popup .cm-pv-welcome-custom p {
  margin: 0 0 14px;
}

.pro-app-shell .message-preview-popup .cm-pv-welcome-custom p:last-child {
  margin-bottom: 0;
}

/* Welcome / Thank You preview card, matching the participant-facing shell */
.pro-app-shell .cm-preview-screen {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.pro-app-shell .cm-preview-screen-header {
  background: #1e3a5f;
  color: #fff;
  padding: 24px 30px;
  text-align: center;
}
.pro-app-shell .cm-preview-screen-header--plain {
  background: transparent;
  color: var(--shell-slate-900);
  padding-top: 0;
}
.pro-app-shell .cm-preview-screen-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pro-app-shell .cm-preview-screen-sub {
  font-size: 14px;
  opacity: 0.8;
}
.pro-app-shell .cm-preview-screen-body {
  padding: 30px;
  font-size: 15px;
  color: var(--shell-slate-800);
  line-height: 1.7;
}
.pro-app-shell .cm-preview-screen-body p { margin: 0 0 14px; }
.pro-app-shell .cm-preview-screen-body p:last-child { margin-bottom: 0; }
.pro-app-shell .cm-preview-screen-body em { font-style: italic; }
.pro-app-shell .cm-preview-screen-body strong { font-weight: 700; }
.pro-app-shell .cm-preview-screen-body ul,
.pro-app-shell .cm-preview-screen-body ol {
  margin: 0 0 14px;
  padding-left: 32px;
  list-style-position: outside;
}
.pro-app-shell .cm-preview-screen-body li {
  margin-bottom: 4px;
  padding-left: 4px;
}
.pro-app-shell .cm-preview-screen-cta {
  text-align: center;
  padding: 0 30px 30px;
}
.pro-app-shell #cm-modal-welcome .cm-preview-context, .pro-app-shell #cm-modal-thankyou .cm-preview-context, .pro-app-shell #cm-modal-signature .cm-preview-context{
  margin-bottom: 15px !important;  
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell, .pro-app-shell #cm-modal-thankyou .cm-preview-thankyou-shell, .pro-app-shell #cm-modal-signature .cm-preview-signature-shell{
  padding-top: 15px !important;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell.message-preview-popup, 
.pro-app-shell #cm-modal-thankyou .cm-preview-thankyou-shell.message-preview-popup, 
.pro-app-shell #cm-modal-signature .cm-preview-signature-shell.message-preview-popup{
  background: white;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  max-width: 95%;
  margin: 0 auto;
  padding: 15px 0;
}

/* NPS welcome/email preview clone (project type 1) — typography & spacing inside cm-pv-welcome-shell */
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-email-preview-inner {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-preview-greeting {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--shell-slate-900);
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-welcome-message {
  font-size: 15px;
  line-height: 1.65;
  color: var(--shell-slate-800);
  margin-bottom: 18px;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-welcome-message p {
  margin: 0 0 12px;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-welcome-message p:last-child {
  margin-bottom: 0;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-scale-preview {
  width: 100%;
  margin: 8px auto 14px;
  border-collapse: separate;
  border-spacing: 6px;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-scale-preview td {
  padding: 2px !important;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-signature-block {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--shell-slate-700);
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-signature-block p {
  margin: 0 0 8px;
}
.pro-app-shell #cm-modal-welcome .cm-preview-welcome-shell .cm-nps-signature-block p:last-child {
  margin-bottom: 0;
}

/* NPS landing / thank-you segment previews (project type 1) */
.pro-app-shell [id^="cm-modal-detractors"] .cm-preview-landing-shell,
.pro-app-shell [id^="cm-modal-passives"] .cm-preview-landing-shell,
.pro-app-shell [id^="cm-modal-promoters"] .cm-preview-landing-shell,
.pro-app-shell [id^="cm-modal-typ-"] .cm-preview-landing-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px 24px;
}
.pro-app-shell .cm-preview-landing-shell.message-preview-popup {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.pro-app-shell .cm-preview-screen-cta-btn {
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: not-allowed;
  opacity: 0.85;
}
.pro-app-shell .cm-preview-screen-checkmark {
  text-align: center;
  padding: 30px 30px 10px;
}
.pro-app-shell .cm-preview-screen-checkmark .material-symbols-outlined {
  font-size: 64px;
  color: var(--shell-teal-dark);
}

/* Email preview card (mock email window) */
.pro-app-shell .cm-preview-email {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.pro-app-shell .cm-preview-email-subject {
  background: var(--shell-slate-100);
  border-bottom: 1px solid var(--shell-slate-200);
  padding: 14px 26px;
  font-size: 13px;
}
.pro-app-shell .cm-preview-email-subject-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.pro-app-shell .cm-preview-email-subject-row:last-child {
  margin-bottom: 0;
}
.pro-app-shell .cm-preview-email-subject-label {
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}
.pro-app-shell .cm-preview-email-subject-value {
  color: var(--shell-slate-800);
  font-size: 14px;
  flex: 1;
  word-break: break-word;
}

.pro-app-shell .cm-preview-email-body {
  padding: 22px 26px;
  font-size: 14px;
  color: var(--shell-slate-800);
  line-height: 1.65;
  background: #fff;
}
.pro-app-shell .cm-preview-email-body p { margin: 0 0 12px; }
.pro-app-shell .cm-preview-email-body p:last-child { margin-bottom: 0; }
.pro-app-shell .cm-preview-email-body em { font-style: italic; }
.pro-app-shell .cm-preview-email-body strong { font-weight: 700; }
.pro-app-shell .cm-preview-email-body a { color: var(--shell-teal-dark); }
.pro-app-shell .cm-preview-email-body .cm-var-link {
  color: var(--shell-teal-dark);
  text-decoration: underline;
  word-break: break-all;
}
/* Mirror the editor's list indentation inside the preview so numbered
   and bulleted lists render identically to what the user sees while
   typing. */
.pro-app-shell .cm-preview-email-body ul,
.pro-app-shell .cm-preview-email-body ol {
  margin: 0 0 12px;
  padding-left: 32px;
  list-style-position: outside;
}
.pro-app-shell .cm-preview-email-body li {
  margin-bottom: 4px;
  padding-left: 4px;
}

/* NPS 0–10 scale in email preview: same outline as dev .cm-intro (teal-50 + #cce8e3 + 3px teal-dark) */
.pro-app-shell .cm-preview-email-body .cm-preview-nps-scale-wrap {
  margin-top: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pro-app-shell .cm-preview-email-body .cm-preview-nps-scale {
  border-collapse: separate;
  border-spacing: 4px 0;
  margin: 0;
  min-width: min-content;
}
.pro-app-shell .cm-preview-email-body .cm-preview-nps-td {
  vertical-align: middle;
  padding: 0;
}
.pro-app-shell .cm-preview-email-body .cm-preview-nps-td-inner {
  margin: 0;
  padding: 0;
  text-align: center;
}
.pro-app-shell .cm-preview-email-body a.cm-preview-nps-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--shell-slate-300);
  color: var(--shell-teal-dark);
  background: var(--shell-teal-50);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  cursor: default;
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.pro-app-shell .cm-preview-email-body a.cm-preview-nps-rating:hover {
  border-color: var(--shell-teal);
  color: var(--shell-teal);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.12);
}
.pro-app-shell .cm-preview-email-body .cm-preview-nps-caption {
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--shell-slate-700);
  font-family: inherit;
}

.pro-app-shell .cm-preview-email-divider {
  height: 1px;
  background: var(--shell-slate-200);
  margin: 0 26px;
}

.pro-app-shell .cm-preview-email-signature {
  padding: 22px 26px;
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.55;
  background: #fff;
}
.pro-app-shell .cm-preview-email-signature p { margin: 0 0 10px; }
.pro-app-shell .cm-preview-email-signature p:last-child { margin: 0; }
.pro-app-shell .cm-preview-email-signature strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}
.pro-app-shell .cm-preview-email-signature em { font-style: italic; }
.pro-app-shell .cm-preview-email-signature ul,
.pro-app-shell .cm-preview-email-signature ol {
  margin: 0 0 10px;
  padding-left: 32px;
  list-style-position: outside;
}
.pro-app-shell .cm-preview-email-signature li {
  margin-bottom: 4px;
  padding-left: 4px;
}

/* Faded body shown above the signature in the Signature preview modal */
.pro-app-shell .cm-preview-email-faded {
  padding: 22px 26px;
  font-size: 14px;
  color: var(--shell-slate-400);
  line-height: 1.6;
  background: var(--shell-slate-50);
}
.pro-app-shell .cm-preview-email-faded p { margin: 0 0 8px; }
.pro-app-shell .cm-preview-email-faded p:last-child { margin: 0; }
.pro-app-shell .cm-preview-email-faded em { font-style: italic; }
.pro-app-shell .cm-preview-email-faded a {
  color: var(--shell-slate-400);
  text-decoration: underline;
}
.pro-app-shell .cm-preview-email-faded ul,
.pro-app-shell .cm-preview-email-faded ol {
  margin: 0 0 8px;
  padding-left: 32px;
  list-style-position: outside;
}
.pro-app-shell .cm-preview-email-faded li {
  margin-bottom: 3px;
  padding-left: 4px;
}
.pro-app-shell .cm-preview-email-fade-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--shell-slate-400);
  margin-bottom: 8px;
  font-weight: 700;
}
.pro-app-shell .note-editable p{
  margin: 0 0 12px;
}
.pro-app-shell .note-editable p b{
  font-weight: 700;
}

/* ============================================================
   Project Settings page (ps-*)
   Shared card/form/status/button chrome is aliased above with cm-*.
   ============================================================ */
.pro-app-shell .ps-page {
  width: 100%;
}

.pro-app-shell .ps-grid,
.pro-app-shell .ps-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pro-app-shell .ps-grid {
  gap: 18px;
  align-items: start;
}

.pro-app-shell .ps-grid > .ps-card {
  margin-bottom: 0;
}

.pro-app-shell .ps-form-grid {
  gap: 18px 24px;
}

.pro-app-shell .ps-form-row.full-width {
  grid-column: 1 / -1;
}

.pro-app-shell .ps-form-grid.single-col {
  grid-template-columns: 1fr;
}

.pro-app-shell .ps-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pro-app-shell .ps-form-hint {
  font-size: 13px;
  color: var(--shell-slate-500);
  line-height: 1.5;
  margin-top: 4px;
}

.pro-app-shell .ps-autosave-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pro-app-shell .ps-autosave-pill .material-symbols-outlined {
  font-size: 14px;
}

.pro-app-shell .ps-autosave-pill.saved {
  background: var(--shell-teal-light);
  border-color: var(--shell-teal-light);
  color: #fff;
}

.pro-app-shell .ps-toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--shell-slate-200);
  border-radius: 10px;
  background: var(--shell-slate-50);
  margin-bottom: 12px;
}

.pro-app-shell .ps-toggle-row:last-child {
  margin-bottom: 0;
}

.pro-app-shell .ps-toggle-row.has-warning {
  border-color: #fde68a;
  background: #fffbeb;
}

.pro-app-shell .ps-toggle-text {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .ps-toggle-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin-bottom: 4px;
}

.pro-app-shell .ps-toggle-desc {
  font-size: 13px;
  color: var(--shell-slate-600);
  line-height: 1.5;
}

.pro-app-shell .ps-toggle-desc + .ps-toggle-desc {
  margin-top: 6px;
}

.pro-app-shell .ps-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pro-app-shell .ps-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pro-app-shell .ps-toggle-track {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--shell-slate-300);
  transition: 0.18s;
  border-radius: 26px;
}

.pro-app-shell .ps-toggle-track:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.18s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.pro-app-shell .ps-toggle input:checked + .ps-toggle-track {
  background-color: var(--shell-teal-dark);
}

.pro-app-shell .ps-toggle input:checked + .ps-toggle-track:before {
  transform: translateX(20px);
}

.pro-app-shell .ps-toggle input:focus + .ps-toggle-track {
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}

.pro-app-shell .ps-toggle input:disabled + .ps-toggle-track {
  cursor: not-allowed;
  opacity: 0.55;
}

/* ============================================================
   Share Link / Consignment Links page (sl-*)
   Reuses .cm-page, .cm-intro, and .ps-card chrome from above.
   ============================================================ */
.pro-app-shell .sl-page {
  max-width: 1100px;
  margin: 0 auto;
}

.pro-app-shell .sl-main-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: start;
}

.pro-app-shell .sl-main-grid + .sl-main-grid {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--shell-slate-200);
}

@media (max-width: 768px) {
  .pro-app-shell .sl-main-grid {
    grid-template-columns: 1fr;
  }
}

.pro-app-shell .sl-link-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pro-app-shell .sl-link-display {
  display: flex;
  align-items: center;
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  color: var(--shell-slate-900);
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 14px;
}

.pro-app-shell .sl-link-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pro-app-shell .sl-btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.pro-app-shell .sl-btn-copy:hover {
  background: #1e3a5f;
}

.pro-app-shell .sl-btn-copy.copied {
  background: var(--shell-teal-dark);
}

.pro-app-shell .sl-btn-copy .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .sl-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.15s;
}

.pro-app-shell .sl-btn-secondary:hover {
  border-color: var(--shell-slate-500);
  color: var(--shell-slate-900);
}

.pro-app-shell .sl-btn-secondary .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .sl-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pro-app-shell .sl-qr-box {
  width: 200px;
  height: 200px;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 12px;
}

.pro-app-shell .sl-qr-box canvas,
.pro-app-shell .sl-qr-box img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 176px;
}

.pro-app-shell .sl-qr-box .material-symbols-outlined {
  font-size: 170px;
  color: var(--shell-slate-900);
  font-variation-settings: "FILL" 0, "wght" 400;
}

.pro-app-shell .sl-qr-caption {
  font-size: 12px;
  color: var(--shell-slate-500);
  text-align: center;
  line-height: 1.4;
}

.pro-app-shell .sl-qr-download {
  margin-top: 10px;
  font-size: 13px;
  color: var(--shell-teal-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  font-family: inherit;
}

.pro-app-shell .sl-qr-download:hover {
  text-decoration: underline;
}

.pro-app-shell .sl-qr-download .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .sl-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.pro-app-shell .sl-stat-tile {
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  border-radius: 10px;
  padding: 16px 18px;
}

.pro-app-shell .sl-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.pro-app-shell .sl-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--shell-slate-900);
  line-height: 1.1;
}

.pro-app-shell .sl-stat-sub {
  font-size: 12px;
  color: var(--shell-slate-500);
  margin-top: 4px;
}

.pro-app-shell .sl-recent-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pro-app-shell .sl-recent-list {
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  overflow: hidden;
}

.pro-app-shell .sl-recent-row {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
  gap: 14px;
  padding: 11px 16px;
  align-items: center;
  border-bottom: 1px solid var(--shell-slate-100);
  font-size: 14px;
}

.pro-app-shell .sl-recent-row:last-child {
  border-bottom: none;
}

.pro-app-shell .sl-recent-row:nth-child(even) {
  background: var(--shell-teal-50);
}

.pro-app-shell .sl-recent-name {
  font-weight: 700;
  color: var(--shell-slate-900);
}

.pro-app-shell .sl-recent-email {
  color: var(--shell-slate-500);
  font-size: 13px;
}

.pro-app-shell .sl-recent-time {
  color: var(--shell-slate-500);
  font-size: 13px;
  text-align: right;
}

.pro-app-shell .sl-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .sl-setting-row:last-child {
  border-bottom: none;
}

.pro-app-shell .sl-setting-row:first-child {
  padding-top: 0;
}

.pro-app-shell .sl-setting-info {
  flex: 1;
}

.pro-app-shell .sl-setting-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin-bottom: 3px;
}

.pro-app-shell .sl-setting-desc {
  font-size: 13px;
  color: var(--shell-slate-500);
  line-height: 1.5;
}

.pro-app-shell .sl-btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.pro-app-shell .sl-btn-reset:hover {
  background: #fee2e2;
  border-color: #b91c1c;
}

.pro-app-shell .sl-btn-reset .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .sl-link-display.inactive {
  background: var(--shell-slate-100);
  color: var(--shell-slate-400);
  text-decoration: line-through;
}

.pro-app-shell .sl-inactive-warn {
  margin-top: 8px;
  padding: 10px 14px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-app-shell .sl-inactive-warn .material-symbols-outlined {
  font-size: 17px;
}

.pro-app-shell .ps-credit-warning {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-left: 3px solid #d97706;
  border-radius: 8px;
  margin-top: 10px;
}

.pro-app-shell .ps-credit-warning .material-symbols-outlined {
  font-size: 18px;
  color: #92400e;
  flex-shrink: 0;
  margin-top: 1px;
}

.pro-app-shell .ps-credit-warning-text {
  font-size: 13px;
  color: #78350f;
  line-height: 1.55;
  flex: 1;
}

.pro-app-shell .ps-credit-warning-text strong {
  color: #5a2a0c;
  font-weight: 700;
}

.pro-app-shell .ps-credit-warning-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
  white-space: nowrap;
}

.pro-app-shell .ps-credit-warning-link:hover {
  color: #5a2a0c;
}

/* SweetAlert v1 — shell-aligned modals (product, cart, settings, etc.) */
@keyframes shellSweetAlertIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

body.pro-app-shell .sweet-overlay,
body.pro-app-shell .swal2-container.swal2-backdrop-show {
  background-color: rgba(15, 23, 42, 0.45);
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

body.pro-app-shell .sweet-alert,
body.pro-app-shell .sweet-alert.shell-swal,
body.pro-app-shell .swal2-popup.shell-swal {
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  font-family: var(--shell-font-family);
  padding: 28px 34px 26px;
  width: auto;
  max-width: 520px;
}

body.pro-app-shell .sweet-alert,
body.pro-app-shell .sweet-alert.shell-swal {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
}

body.pro-app-shell .sweet-alert.showSweetAlert {
  animation: shellSweetAlertIn 0.25s ease-out !important;
}

.pro-app-shell .sweet-alert h2,
.pro-app-shell .sweet-alert.shell-swal h2,
body.pro-app-shell .swal2-popup.shell-swal .swal2-title {
  color: var(--shell-slate-900);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 14px;
}

.pro-app-shell .sweet-alert p,
.pro-app-shell .sweet-alert.shell-swal p,
body.pro-app-shell .swal2-popup.shell-swal .swal2-html-container {
  color: var(--shell-slate-600);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.pro-app-shell .sweet-alert a.shell-swal-link,
.pro-app-shell .sweet-alert.shell-swal a.shell-swal-link {
  color: var(--shell-teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

.pro-app-shell .sweet-alert a.shell-swal-link:hover,
.pro-app-shell .sweet-alert.shell-swal a.shell-swal-link:hover {
  color: var(--shell-teal);
}

.pro-app-shell .sweet-alert .sa-icon,
.pro-app-shell .sweet-alert.shell-swal .sa-icon {
  margin: 6px auto 4px;
}

.pro-app-shell .sweet-alert .sa-icon.sa-warning,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-warning,
body.pro-app-shell .swal2-popup.shell-swal .swal2-icon.swal2-warning {
  border-color: var(--shell-teal-dark);
  color: var(--shell-teal-dark);
}

.pro-app-shell .sweet-alert .sa-icon.sa-warning .sa-body,
.pro-app-shell .sweet-alert .sa-icon.sa-warning .sa-dot,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-warning .sa-body,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-warning .sa-dot {
  background-color: var(--shell-teal-dark);
}

.pro-app-shell .sweet-alert .sa-icon.sa-error,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-error,
body.pro-app-shell .swal2-popup.shell-swal .swal2-icon.swal2-error {
  border-color: #dc2626;
  color: #dc2626;
}

.pro-app-shell .sweet-alert .sa-icon.sa-error .sa-x-mark,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-error .sa-x-mark {
  background-color: #dc2626;
}

.pro-app-shell .sweet-alert .sa-icon.sa-info,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-info {
  border-color: var(--shell-teal);
}

.pro-app-shell .sweet-alert .sa-icon.sa-info::before,
.pro-app-shell .sweet-alert.shell-swal .sa-icon.sa-info::before {
  background-color: var(--shell-teal);
}

.pro-app-shell .sweet-alert button,
.pro-app-shell .sweet-alert.shell-swal button,
body.pro-app-shell .swal2-popup.shell-swal .swal2-actions button {
  font-family: var(--shell-font-family);
  font-size: 15px;
  margin: 18px 6px 0;
  min-width: 96px;
}

.pro-app-shell .sweet-alert button.confirm,
.pro-app-shell .sweet-alert.shell-swal button.confirm,
body.pro-app-shell .swal2-popup.shell-swal button.confirm {
  background-color: var(--shell-teal) !important;
  border: 1px solid transparent !important;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 10px 20px;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pro-app-shell .sweet-alert button.confirm:hover,
.pro-app-shell .sweet-alert button.confirm:focus,
.pro-app-shell .sweet-alert.shell-swal button.confirm:hover,
.pro-app-shell .sweet-alert.shell-swal button.confirm:focus,
body.pro-app-shell .swal2-popup.shell-swal button.confirm:hover,
body.pro-app-shell .swal2-popup.shell-swal button.confirm:focus {
  background-color: var(--shell-teal-dark) !important;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.28) !important;
  transform: translateY(-1px);
}

.pro-app-shell .sweet-alert button.cancel,
.pro-app-shell .sweet-alert.shell-swal button.cancel,
body.pro-app-shell .swal2-popup.shell-swal button.cancel {
  background-color: #fff !important;
  border: 1px solid var(--shell-slate-200) !important;
  border-radius: 8px;
  box-shadow: none !important;
  color: var(--shell-slate-700) !important;
  font-weight: 600;
  padding: 10px 18px;
  margin-right: 10px !important;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pro-app-shell .sweet-alert button.cancel:hover,
.pro-app-shell .sweet-alert button.cancel:focus,
.pro-app-shell .sweet-alert.shell-swal button.cancel:hover,
.pro-app-shell .sweet-alert.shell-swal button.cancel:focus,
body.pro-app-shell .swal2-popup.shell-swal button.cancel:hover,
body.pro-app-shell .swal2-popup.shell-swal button.cancel:focus {
  background-color: var(--shell-slate-50) !important;
  border-color: var(--shell-slate-300) !important;
  color: var(--shell-slate-700) !important;
}

/* Project dashboard — release result dialogs (legacy two-popup flow) */
body.pro-app-shell .swal2-popup.pd-release-credit-swal .swal2-icon.swal2-warning,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal .sa-icon.sa-warning {
  border-color: #f8bb86;
  color: #f8bb86;
}

body.pro-app-shell .swal2-popup.pd-release-credit-swal .swal2-icon.swal2-warning .swal2-icon-content,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal .sa-icon.sa-warning .sa-body,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal .sa-icon.sa-warning .sa-dot {
  background-color: #f8bb86;
}

body.pro-app-shell .swal2-popup.pd-release-credit-swal .swal2-confirm.confirm,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal button.confirm {
  background-color: #f0ad4e !important;
  border-color: #eea236 !important;
  box-shadow: 0 1px 2px rgba(238, 162, 54, 0.35) !important;
  color: #fff !important;
}

body.pro-app-shell .swal2-popup.pd-release-credit-swal .swal2-confirm.confirm:hover,
body.pro-app-shell .swal2-popup.pd-release-credit-swal .swal2-confirm.confirm:focus,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal button.confirm:hover,
.pro-app-shell .sweet-alert.shell-swal.pd-release-credit-swal button.confirm:focus {
  background-color: #eea236 !important;
  border-color: #d58512 !important;
}

body.pro-app-shell .swal2-popup.pd-release-simple-swal .swal2-icon.swal2-info,
.pro-app-shell .sweet-alert.shell-swal.pd-release-simple-swal .sa-icon.sa-info {
  border-color: #8cd4f5;
  color: #8cd4f5;
}

body.pro-app-shell .swal2-popup.pd-release-simple-swal .swal2-icon.swal2-info .swal2-icon-content,
.pro-app-shell .sweet-alert.shell-swal.pd-release-simple-swal .sa-icon.sa-info::before {
  background-color: #8cd4f5;
}

body.pro-app-shell .swal2-popup.pd-release-simple-swal .swal2-confirm.confirm,
.pro-app-shell .sweet-alert.shell-swal.pd-release-simple-swal button.confirm {
  background-color: #8cd4f5 !important;
  border-color: #7ec8ea !important;
  box-shadow: 0 1px 2px rgba(124, 200, 234, 0.35) !important;
  color: #fff !important;
}

body.pro-app-shell .swal2-popup.pd-release-simple-swal .swal2-confirm.confirm:hover,
body.pro-app-shell .swal2-popup.pd-release-simple-swal .swal2-confirm.confirm:focus,
.pro-app-shell .sweet-alert.shell-swal.pd-release-simple-swal button.confirm:hover,
.pro-app-shell .sweet-alert.shell-swal.pd-release-simple-swal button.confirm:focus {
  background-color: #7ec8ea !important;
  border-color: #6bb8de !important;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal {
  max-width: 560px;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-popup {
  text-align: left;
  margin-top: 2px;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-desc {
  background: var(--shell-slate-50);
  border-left: 3px solid var(--shell-slate-300);
  border-radius: 8px;
  color: var(--shell-slate-600);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 10px 12px;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-section-title {
  color: var(--shell-slate-800);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-list {
  color: var(--shell-slate-600);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px 20px;
  padding: 0;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-list li {
  margin-bottom: 7px;
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-list li:last-child {
  margin-bottom: 0;
}

/* Send Results — release confirm (shell-swal) */
body.pro-app-shell .swal2-popup.shell-swal.br-release-confirm-swal,
.pro-app-shell .sweet-alert.shell-swal.br-release-confirm-swal {
  max-width: 440px;
}

body.pro-app-shell .swal2-popup.shell-swal.br-release-confirm-swal .swal2-html-container,
.pro-app-shell .sweet-alert.shell-swal.br-release-confirm-swal p {
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.br-release-confirm-summary {
  background: #fff;
  border: 1px solid var(--shell-slate-200);
  border-radius: 10px;
  list-style: none;
  margin: 0 0 16px;
  overflow: hidden;
  padding: 0;
}

.br-release-confirm-summary li {
  align-items: center;
  border-bottom: 1px solid var(--shell-slate-100);
  display: flex;
  font-size: 14px;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 14px;
}

.br-release-confirm-summary li:last-child {
  border-bottom: none;
}

.br-release-confirm-label {
  color: var(--shell-slate-500);
  font-weight: 500;
}

.br-release-confirm-value {
  color: var(--shell-slate-900);
  font-weight: 700;
  text-align: right;
}

.br-release-confirm-summary-warn .br-release-confirm-value {
  color: #b45309;
}

.br-release-confirm-notice {
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  text-align: left;
}

.br-release-confirm-notice--error {
  background: #fef2f2;
  border-color: #fecaca;
}

.br-release-confirm-notice-icon {
  color: #b45309;
  flex-shrink: 0;
  font-size: 22px !important;
  line-height: 1;
}

.br-release-confirm-notice--error .br-release-confirm-notice-icon {
  color: #dc2626;
}

.br-release-confirm-notice-title {
  color: #92400e;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.br-release-confirm-notice--error .br-release-confirm-notice-title {
  color: #991b1b;
}

.br-release-confirm-notice-body p {
  color: #78350f;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.br-release-confirm-notice-body p strong {
  color: inherit;
  display: inline;
  font-weight: 700;
}

.br-release-confirm-notice--error .br-release-confirm-notice-body p {
  color: #7f1d1d;
}

.br-release-confirm-prompt {
  color: var(--shell-slate-700);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.br-release-confirm-prompt strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

body.pro-app-shell .swal2-popup.shell-swal .swal2-icon.swal2-success {
  border-color: var(--shell-teal);
  color: var(--shell-teal);
}

body.pro-app-shell .swal2-popup.shell-swal .swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: var(--shell-teal);
}

body.pro-app-shell .swal2-popup.shell-swal .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(13, 148, 136, 0.3);
}

.pro-app-shell .sweet-alert.ps-instant-access-swal .ps-ia-note {
  color: var(--shell-slate-500);
  font-size: 14px;
}

.pro-app-shell .ps-image-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pro-app-shell .ps-image-preview {
  width: 100%;
  max-width: 460px;
  height: 160px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 10px;
  background: var(--shell-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.pro-app-shell .ps-image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-dialog {
  margin-top: 56px;
  max-width: 780px;
  width: calc(100% - 32px);
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-content {
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  overflow: hidden;
  padding: 0 !important;
  border: 0 !important;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-header {
  background: #1e3a5f !important;
  border: none !important;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  padding: 18px 24px 16px !important;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-title {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  padding: 0;
  text-align: left;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 4px;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-header .close {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  text-shadow: none;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-header .close:hover,
body.pro-app-shell .ps-image-crop-modal.modal .modal-header .close:focus {
  opacity: 1;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-body {
  background: #fff;
  padding: 24px 28px 20px;
}

body.pro-app-shell .ps-image-crop-modal.modal #image_demo {
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  border-radius: 12px;
  padding: 18px 16px 12px;
}

body.pro-app-shell .ps-image-crop-modal.modal .cr-boundary {
  border-radius: 10px;
}

body.pro-app-shell .ps-image-crop-modal.modal .cr-slider-wrap {
  margin: 18px auto 0;
}

body.pro-app-shell .ps-image-crop-modal.modal .cr-slider {
  accent-color: var(--shell-teal-dark);
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer {
  align-items: center;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding: 16px 24px;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer:before,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer:after {
  display: none;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 18px;
  text-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-success.crop_image,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .crop_image {
  background: var(--shell-teal-dark) !important;
  border: 1px solid var(--shell-teal-dark) !important;
  color: #fff !important;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-success.crop_image:hover,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-success.crop_image:focus,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .crop_image:hover,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .crop_image:focus {
  background: #1e3a5f !important;
  border-color: #1e3a5f !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  color: #fff !important;
  transform: translateY(-1px);
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-default {
  background: #fff !important;
  border: 1px solid var(--shell-slate-300) !important;
  color: var(--shell-slate-700) !important;
}

body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-default:hover,
body.pro-app-shell .ps-image-crop-modal.modal .modal-footer .btn-default:focus {
  background: var(--shell-teal-50) !important;
  border-color: var(--shell-teal-dark) !important;
  color: var(--shell-teal-dark) !important;
}

.pro-app-shell .ps-image-info {
  font-size: 13px;
  color: var(--shell-slate-600);
  line-height: 1.55;
  text-align: center;
}

.pro-app-shell .ps-image-info strong {
  color: var(--shell-slate-800);
  font-weight: 700;
}

.pro-app-shell .ps-image-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pro-app-shell .ps-file-input {
  display: none !important;
}

.pro-app-shell .ps-btn-upload,
.pro-app-shell .ps-btn-remove {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.pro-app-shell .ps-btn-upload {
  background: #fff;
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
  padding: 9px 16px;
}

.pro-app-shell .ps-btn-upload:hover {
  border-color: var(--shell-teal-dark);
  color: var(--shell-teal-dark);
  background: var(--shell-teal-50);
}

.pro-app-shell .ps-btn-remove {
  background: transparent;
  color: #b91c1c;
  border: none;
  padding: 8px 12px;
}

.pro-app-shell .ps-btn-remove:hover {
  background: #fee2e2;
}

.pro-app-shell .ps-btn-upload .material-symbols-outlined,
.pro-app-shell .ps-btn-remove .material-symbols-outlined {
  font-size: 17px;
}

.pro-app-shell .ps-action-footer {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}

.pro-app-shell .ps-action-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pro-app-shell .ps-btn-cancel {
  background: #fff;
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.pro-app-shell .ps-btn-cancel:hover {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-400);
}

.pro-app-shell .ps-btn-cancel:disabled {
  background: var(--shell-slate-200);
  border-color: var(--shell-slate-200);
  color: var(--shell-slate-400);
  cursor: not-allowed;
}

@media (max-width: 1100px) {
  .pro-app-shell .ps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pro-app-shell .ps-form-grid {
    grid-template-columns: 1fr;
  }

  .pro-app-shell .ps-action-footer {
    align-items: stretch;
  }

  .pro-app-shell .ps-action-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Client Command Center (dash page) */
.pro-app-shell .cc-container {
  max-width: 1600px !important;
}
.pro-app-shell .cc-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pro-app-shell .cc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.pro-app-shell .cc-col-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pro-app-shell .cc-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}
.pro-app-shell .cc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: #1e3a5f;
  flex-wrap: wrap;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.pro-app-shell .cc-card-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pro-app-shell .cc-card-title .material-symbols-outlined {
  color: var(--shell-teal-light);
  font-size: 20px !important;
}
.pro-app-shell .cc-card-tabs {
  border: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.pro-app-shell .cc-card-tabs > li {
  margin: 0;
}
.pro-app-shell .cc-card-tabs > li > a.cc-tab {
  margin: 0;
  border: 0 !important;
  border-radius: 8px;
  padding: 6px 12px !important;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: normal;
  text-transform: capitalize;
}
.pro-app-shell .cc-card-tabs > li.active > a.cc-tab,
.pro-app-shell .cc-card-tabs > li > a.cc-tab:hover,
.pro-app-shell .cc-card-tabs > li > a.cc-tab:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}
.pro-app-shell .cc-tab-count {
  background: rgba(255, 255, 255, 0.14);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
li.active .cc-tab .cc-tab-count{
  background: var(--shell-teal);
  color: white;
}
.pro-app-shell .cc-tab-content {
  padding: 0;
}
.pro-app-shell .projects-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
}
.pro-app-shell .projects-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--shell-slate-500);
}
.pro-app-shell .show-entries-select {
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-700);
}
.pro-app-shell .projects-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  padding: 7px 12px;
  width: 280px;
}
.pro-app-shell .projects-search input {
  border: none;
  outline: none;
  font-size: 15px;
  flex: 1;
  font-family: inherit;
  color: var(--shell-slate-700);
}
.pro-app-shell .projects-search input::placeholder { color: var(--shell-slate-400); }
.pro-app-shell .projects-search .material-symbols-outlined { font-size: 18px; color: var(--shell-slate-400); }
.pro-app-shell .projects-table-wrap {
  overflow-x: auto;
}
.pro-app-shell .pricing-table-wrap {
  padding: 0 0 20px;
}
/* Catalog pricing table — match command-center ref (tier labels + discount badges) */
.pro-app-shell .projects-table.pricing-table {
  border-spacing: 0;
}
.pro-app-shell .projects-table.pricing-table thead th {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 12px;
  white-space: nowrap;
  vertical-align: middle;
}
.pro-app-shell .projects-table.pricing-table thead th:first-child {
  text-align: left;
  padding-left: 24px;
}
.pro-app-shell .projects-table.pricing-table thead th:last-child {
  width: 130px;
  padding-right: 24px;
}
.pro-app-shell .projects-table.pricing-table thead th .col-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--shell-slate-600);
}
.pro-app-shell .projects-table.pricing-table thead th .discount-badge {
  display: inline-flex;
  align-items: center;
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: none;
}
.pro-app-shell .projects-table.pricing-table tbody td {
  text-align: center;
  font-size: 15px;
  color: var(--shell-slate-700);
}
.pro-app-shell .projects-table.pricing-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
}
.pro-app-shell .projects-table.pricing-table tbody td:last-child {
  padding-right: 24px;
}
/* Catalog product cell — ref assess-mark + italic name */
.pro-app-shell .assess-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pro-app-shell .assess-mark {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--shell-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 4px;
  box-sizing: border-box;
}
.pro-app-shell .assess-mark-img {
  display: block;
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.pro-app-shell .assess-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-800);
  font-style: italic;
}
.pro-app-shell .projects-table {
  width: 100%;
  border-collapse: collapse;
}
.pro-app-shell .projects-table thead th {
  background: var(--shell-slate-50);
  color: var(--shell-slate-500);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
}
.pro-app-shell .projects-table thead th .sortable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.pro-app-shell .projects-table thead th .sortable .material-symbols-outlined {
  font-size: 16px;
  color: var(--shell-slate-400);
}
.pro-app-shell .projects-table.dataTable thead .sorting:before,
.pro-app-shell .projects-table.dataTable thead .sorting:after,
.pro-app-shell .projects-table.dataTable thead .sorting_asc:before,
.pro-app-shell .projects-table.dataTable thead .sorting_asc:after,
.pro-app-shell .projects-table.dataTable thead .sorting_desc:before,
.pro-app-shell .projects-table.dataTable thead .sorting_desc:after {
  display: none !important;
}
.pro-app-shell .projects-table tbody td {
  padding: 14px 20px;
  border-bottom: none;
  color: var(--shell-slate-700);
  font-size: 15px;
  vertical-align: middle;
}
.pro-app-shell .projects-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .projects-table .col-actions,
.pro-app-shell .projects-table .row-actions-cell {
  text-align: right;
}
.pro-app-shell .project-name-link {
  color: var(--shell-slate-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.pro-app-shell .project-name-link:hover {
  color: var(--shell-teal-dark);
}
.pro-app-shell .org-link {
  color: var(--shell-slate-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.pro-app-shell .org-link:hover {
  color: var(--shell-teal-dark);
}
.pro-app-shell .org-empty {
  color: var(--shell-slate-400);
  font-size: 14px;
}
.pro-app-shell .row-type-pill {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid var(--shell-slate-200);
  border-radius: 999px;
  background: var(--shell-slate-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-700);
  font-style: italic;
}
.pro-app-shell .participants-link {
  display: inline-flex;
  min-width: 38px;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--shell-slate-100);
  color: var(--shell-slate-800);
  font-size: 17px;
  font-weight: 800;
}
.pro-app-shell .participants-link.zero {
  background: transparent;
  color: var(--shell-slate-400);
  font-weight: 700;
  font-size: 17px;
}
.pro-app-shell .btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-700);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.cc-mb-20{  
  margin-bottom: 24px;
}
.cc-page.cc-flex{
  gap: 0 !important;
}
.pro-app-shell .btn-view-details:hover {
  background: var(--shell-teal-50);
  border-color: var(--shell-teal);
  color: var(--shell-teal-dark);
}
.pro-app-shell .btn-view-details:hover .material-symbols-outlined {
  color: var(--shell-teal-dark);
}
.pro-app-shell .btn-view-details .material-symbols-outlined {
  font-size: 16px !important;
  line-height: 1;  
  color: var(--shell-slate-700);
}
.pro-app-shell .price-info {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-800);
}
.pro-app-shell .price-each {
  font-size: 13px;
  font-weight: 500;
  color: var(--shell-slate-500);
  margin-left: 2px;
}
.pro-app-shell .cc-empty {
  padding: 24px 18px;
  color: var(--shell-slate-500);
}
.pro-app-shell .projects-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--shell-slate-200);
  font-size: 14px;
  color: var(--shell-slate-500);
  background: var(--shell-slate-50);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.pro-app-shell .projects-pagination .dataTables_paginate {
  margin-left: auto;
  float: none;
  text-align: right;
  padding: 0;
}
.pro-app-shell .projects-pagination .pagination {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pro-app-shell .projects-pagination .pagination > li > a,
.pro-app-shell .projects-pagination .pagination > li > span {
  min-width: 32px;
  height: 32px;
  border-radius: 7px !important;
  border: 1px solid var(--shell-slate-200) !important;
  background: #fff !important;
  color: var(--shell-slate-600) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px !important;
  line-height: 20px;
  text-align: center;
}
.pro-app-shell .projects-pagination .pagination > li.active > a,
.pro-app-shell .projects-pagination .pagination > li.active > a:hover {
  background: var(--shell-teal) !important;
  border-color: var(--shell-teal) !important;
  color: #fff !important;
}
.pro-app-shell .projects-pagination .pagination > li.disabled > a,
.pro-app-shell .projects-pagination .pagination > li.disabled > a:hover {
  opacity: 0.4;
  cursor: not-allowed !important;
}
.pro-app-shell .projects-pagination .pagination > li.previous > a,
.pro-app-shell .projects-pagination .pagination > li.next > a {
  font-size: 0 !important;
  width: 32px;
  min-width: 32px;
  padding: 5px 0 !important;
}
.pro-app-shell .projects-pagination .pagination > li.previous > a::before,
.pro-app-shell .projects-pagination .pagination > li.next > a::before {
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
  color: var(--shell-slate-600);
  display: inline-block;
}
.pro-app-shell .projects-pagination .pagination > li.previous > a::before { content: "chevron_left"; }
.pro-app-shell .projects-pagination .pagination > li.next > a::before { content: "chevron_right"; }
.pro-app-shell .row-actions { display: inline-flex; gap: 2px; opacity: 1; }
.pro-app-shell .row-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--shell-slate-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-app-shell .row-action-btn:hover { background: var(--shell-slate-200); color: var(--shell-slate-800); }
.pro-app-shell .row-action-btn .material-symbols-outlined { font-size: 20px; }
.pro-app-shell .evidentra-body { display: flex; flex-direction: column; gap: 14px; padding: 22px; }
.pro-app-shell .evidentra-header { display: flex; align-items: center; gap: 12px; }
.pro-app-shell .evidentra-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--shell-teal-dark) 0%, #134e4a 100%);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.pro-app-shell .evidentra-mark .material-symbols-outlined { font-size: 24px; }
.pro-app-shell .evidentra-text { flex: 1; min-width: 0; }
.pro-app-shell .evidentra-title { font-size: 18px; font-weight: 700; color: var(--shell-slate-900); margin: 0; }
.pro-app-shell .evidentra-meta { font-size: 13px; color: var(--shell-slate-500); margin-top: 3px; }
.pro-app-shell .evidentra-sub { font-size: 14px; color: var(--shell-slate-600); margin: 0; line-height: 1.5; }
.pro-app-shell .evidentra-actions .btn-primary { width: 100%; justify-content: center; }
.pro-app-shell .activity-list {
  padding: 4px 0 6px;
}
.pro-app-shell .activity-item {
  display: flex;
  gap: 10px;
  padding: 8px 22px;
  align-items: flex-start;
  transition: background 0.15s;
}
.pro-app-shell .activity-item:hover {
  background: var(--shell-slate-50);
}
.pro-app-shell .activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pro-app-shell .activity-icon.completed,
.pro-app-shell .activity-icon.feedback {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}
.pro-app-shell .activity-icon.pending {
  background: var(--shell-slate-100);
  color: var(--shell-slate-600);
}
.pro-app-shell .activity-icon .material-symbols-outlined {
  font-size: 18px;
}
.pro-app-shell .activity-content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.pro-app-shell .activity-text {
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.4;
}
.pro-app-shell .activity-text strong {
  color: var(--shell-slate-900);
  font-weight: 600;
}
.pro-app-shell .activity-text em {
  font-style: italic;
  color: var(--shell-slate-800);
  font-weight: 600;
}
.pro-app-shell .activity-time {
  font-size: 12px;
  color: var(--shell-slate-400);
  margin-top: 4px;
  font-weight: 500;
}
.pro-app-shell .activity-footer {
  padding: 12px 22px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  text-align: center;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.pro-app-shell .activity-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-teal-dark);
  text-decoration: none;
}
.pro-app-shell .activity-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .pro-app-shell .cc-row {
    grid-template-columns: 1fr;
  }
  .pro-app-shell .compact-row {
    grid-template-columns: 1fr 1fr;
  }

  .pro-app-shell .compact-row .score-stack {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .pro-app-shell .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-app-shell .compact-row {
    grid-template-columns: 1fr;
  }

  .pro-app-shell .compact-row .score-stack {
    flex-direction: column;
  }

  .pro-app-shell .nps-panel-score {
    font-size: 60px;
  }
}

@media (max-width: 700px) {
  .pro-app-shell .metrics-row {
    grid-template-columns: 1fr;
  }

  .pro-app-shell .feedback-search {
    width: 180px;
  }
}

/* Legacy sidebar hidden when shell active */
body.pro-app-shell .sidebar-dashboard {
  display: none !important;
}

/*
 * Modals + backdrop must sit above fixed sidebar (1050) and topbar (1040),
 * or the dimmed overlay will not cover the chrome (Bootstrap 3 backdrop ~1040).
 */
body.pro-app-shell .modal-backdrop {
  z-index: 1080 !important;
}

body.pro-app-shell .modal-backdrop.in {
  z-index: 1080 !important;
}

body.pro-app-shell .modal {
  z-index: 1090 !important;
}

body.pro-app-shell .modal.in,
body.pro-app-shell .modal.fade.in {
  z-index: 1090 !important;
}

/* Google Places etc. */
body.pro-app-shell .pac-container {
  z-index: 10000 !important;
}

/* ============================================================
   Create Project page — pro-account-create-project-v1.html
   (scoped; shell variables; does not duplicate dash/cc rules)
   ============================================================ */
.pro-app-shell .cp-page {
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.pro-app-shell .cp-page .page-header {
  margin-bottom: 8px;
}

.pro-app-shell .cp-intro {
  font-size: 16px;
  color: var(--shell-slate-600);
  line-height: 1.55;
  margin: 0 0 28px;
}

/* 4-card grid — matches pro-account-create-project-v1.html */
.pro-app-shell .cp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1400px) {
  .pro-app-shell .cp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .pro-app-shell .cp-grid {
    grid-template-columns: 1fr;
  }
}

.pro-app-shell .cp-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.15s, box-shadow 0.2s, transform 0.15s;
}

.pro-app-shell .cp-card:hover {
  border-color: var(--shell-teal-dark);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
  transform: translateY(-2px);
}

.pro-app-shell .cp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(30, 58, 95, 0.15);
}

.pro-app-shell .cp-icon .material-symbols-outlined {
  font-size: 30px;
}

.pro-app-shell .cp-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0;
  letter-spacing: -0.015em;
}

.pro-app-shell .cp-desc {
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.6;
  margin: 0;
}

.pro-app-shell .cp-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-app-shell .cp-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pro-app-shell .cp-products-list {
  font-size: 13px;
  color: var(--shell-slate-700);
  line-height: 1.55;
}

.pro-app-shell .cp-products-list em {
  font-style: italic;
  font-weight: 600;
  color: var(--shell-slate-800);
}

.pro-app-shell .cp-spacer {
  flex: 1;
  min-height: 4px;
}

.pro-app-shell button.cp-cta {
  width: 100%;
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.05s;
  letter-spacing: 0.005em;
  font-family: inherit;
}

.pro-app-shell button.cp-cta:hover {
  background: #1e3a5f;
  color: #fff;
}

.pro-app-shell button.cp-cta:active {
  transform: translateY(1px);
}

.pro-app-shell button.cp-cta .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .cp-helper {
  margin-top: 32px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--shell-slate-200);
  border-radius: 12px;
  font-size: 14px;
  color: var(--shell-slate-600);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pro-app-shell .cp-helper .material-symbols-outlined {
  color: var(--shell-teal-dark);
  font-size: 22px;
}

.pro-app-shell .cp-helper a {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
}

.pro-app-shell .cp-helper a:hover {
  text-decoration: underline;
}

/* Create-project modals — custom demo-style shell, no Bootstrap JS dependency */
body.cp-modal-open {
  overflow: hidden;
}

body.pro-app-shell form.cp-proj-flow-modal.modal,
body.pro-app-shell .cp-proj-secondary-modal.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  background: rgba(15, 23, 42, 0.55);
  z-index: 10000;
}

body.pro-app-shell form.cp-proj-flow-modal.modal.is-open,
body.pro-app-shell .cp-proj-secondary-modal.modal.is-open {
  display: flex !important;
  animation: modalFadeIn 0.18s ease-out;
}

body.pro-app-shell .cp-proj-secondary-modal.modal.is-open {
  z-index: 10020;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-dialog,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-dialog {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

body.pro-app-shell .cp-proj-secondary-modal.modal .modal-dialog {
  max-width: 760px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-content,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-content {
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.22s ease-out;
  padding: 0 !important;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-header,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px !important;
  background: #1e3a5f !important;
  color: #fff;
  border: none !important;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .cp-modal-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-header .modal-title,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header .modal-title {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  padding: 0;
  text-align: left;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-close,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  text-shadow: none;
  transition: opacity 0.15s;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-close:hover,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header .close:hover {
  opacity: 1;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-progress {
  width: 100%;
  height: 3px;
  margin: 0;
  background: var(--shell-slate-200);
  overflow: hidden;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .m-progress-bar-wrapper,
body.pro-app-shell form.cp-proj-flow-modal.modal .m-progress-bar {
  height: 100%;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .m-progress-bar {
  width: 0;
  background: var(--shell-teal-dark);
  transition: width 0.3s ease-out;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .m-progress-complete {
  display: none;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .cp-modal-step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 0;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-type-pill .material-symbols-outlined {
  font-size: 16px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-step-label {
  color: var(--shell-slate-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .form_content {
  padding: 0;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-body,
body.pro-app-shell .cp-proj-secondary-modal.modal .modal-body {
  padding: 18px 24px 24px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-intro {
  margin: 0 0 18px;
  color: var(--shell-slate-600);
  font-size: 14px;
  line-height: 1.5;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-field,
body.pro-app-shell .cp-proj-secondary-modal.modal .form-group {
  margin-bottom: 16px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-field:last-child,
body.pro-app-shell .cp-proj-secondary-modal.modal .form-group:last-child {
  margin-bottom: 0;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-field-label,
body.pro-app-shell .cp-proj-secondary-modal.modal label {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
  color: var(--shell-slate-700);
  font-size: 13px;
  font-weight: 600;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-field-label .optional {
  margin-left: 8px;
  color: var(--shell-slate-400);
  font-size: 12px;
  font-weight: 500;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-input,
body.pro-app-shell form.cp-proj-flow-modal.modal .modal-select,
body.pro-app-shell form.cp-proj-flow-modal.modal .form-control,
body.pro-app-shell .cp-proj-secondary-modal.modal .form-control {
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  color: var(--shell-slate-800);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-input:focus,
body.pro-app-shell form.cp-proj-flow-modal.modal .modal-select:focus,
body.pro-app-shell form.cp-proj-flow-modal.modal .form-control:focus,
body.pro-app-shell .cp-proj-secondary-modal.modal .form-control:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-create-org {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0 0;
  background: transparent;
  border: none;
  color: var(--shell-teal-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-create-org:hover {
  text-decoration: underline;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-create-org .material-symbols-outlined {
  font-size: 16px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 24px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.15s;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn .material-symbols-outlined {
  font-size: 18px;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-cancel {
  background: transparent;
  color: var(--shell-slate-600);
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-cancel:hover {
  background: var(--shell-slate-100);
  color: var(--shell-slate-800);
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-back {
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  color: var(--shell-slate-700);
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-back:hover {
  background: var(--shell-slate-100);
  border-color: var(--shell-slate-400);
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-primary {
  background: var(--shell-teal-dark);
  color: #fff;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-primary:hover {
  background: #1e3a5f;
  color: #fff;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .modal-btn-primary:disabled {
  background: var(--shell-slate-300);
  color: var(--shell-slate-500);
  cursor: not-allowed;
}

body.pro-app-shell form.cp-proj-flow-modal.modal label.error {
  display: block;
  margin: 5px 0 0;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
}

body.pro-app-shell form.cp-proj-flow-modal.modal .customerror {
  border-color: #dc2626 !important;
}

body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header .close {
  font-size: 0;
}

body.pro-app-shell .cp-proj-secondary-modal.modal .modal-header .close::before {
  content: "close";
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
}

body.pro-app-shell .cp-proj-secondary-modal.modal .client-info {
  margin: 4px 0 16px;
  color: var(--shell-slate-800);
  font-size: 16px;
  font-weight: 700;
}

/* ============================================================
   Send Invitations page (si-*)
   ============================================================ */
.pro-app-shell .si-card {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .si-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  flex-wrap: wrap;
}

.pro-app-shell .si-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.pro-app-shell .si-card-title .material-symbols-outlined {
  font-size: 20px;
  opacity: 0.9;
}

.pro-app-shell .si-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.pro-app-shell .si-preview-btn:hover {
  border-color: #fff;
  background: #fff;
  color: #1e3a5f;
}

.pro-app-shell .si-preview-btn .material-symbols-outlined {
  font-size: 17px;
}

.pro-app-shell .si-inventory-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid #cce8e3;
  border-radius: 10px;
  background: var(--shell-teal-50);
  color: var(--shell-slate-700);
  font-size: 15px;
  line-height: 1.45;
}

.pro-app-shell .si-inventory-banner .material-symbols-outlined {
  flex-shrink: 0;
  color: var(--shell-teal-dark);
  font-size: 22px;
}

.pro-app-shell .si-inventory-banner strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .si-inventory-banner-buy {
  margin-left: auto;
  color: var(--shell-teal-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.pro-app-shell .si-inventory-banner-buy:hover {
  text-decoration: underline;
}

.pro-app-shell .si-pane-tab-spacer {
  height: 28px;
}

.pro-app-shell .si-pane-search input.si-search-field {
  width: 100%;
  box-sizing: border-box;
  padding: 7px 10px 7px 32px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
}

.pro-app-shell .si-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .si-form {
  margin: 0;
}

.pro-app-shell .si-shuttle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  padding: 18px;
}

.pro-app-shell .si-pane {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--shell-slate-300);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.pro-app-shell .si-pane-header {
  padding: 12px 14px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .si-pane-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pro-app-shell .si-pane-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pro-app-shell .si-pane-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--shell-slate-200);
  color: var(--shell-slate-700);
  font-size: 12px;
  font-weight: 700;
}

.pro-app-shell .si-pane-count-pill.has-items {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .si-pane-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 10px;
}

.pro-app-shell .si-pane-tab {
  padding: 4px 9px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--shell-slate-600);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s;
}

.pro-app-shell .si-pane-tab:hover {
  background: var(--shell-slate-200);
  color: var(--shell-slate-800);
}

.pro-app-shell .si-pane-tab.active {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .si-pane-tab .si-pane-tab-ct {
  margin-left: 5px;
  font-weight: 700;
  opacity: 0.7;
}

.pro-app-shell .si-pane-search {
  position: relative;
}

.pro-app-shell .si-pane-search .material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 9px;
  z-index: 1;
  color: var(--shell-slate-400);
  font-size: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}

.pro-app-shell .si-pane-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 7px 10px 7px 32px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  transition: all 0.15s;
}

.pro-app-shell .si-pane-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .si-pane-body {
  position: relative;
  height: 200px;
  overflow-y: auto;
}

.pro-app-shell .si-pane-body.is-empty .si-pane-empty {
  display: block;
}

.pro-app-shell .si-pane-body.is-empty .si-pane-list {
  display: none;
}

.pro-app-shell .si-pane-body.is-empty select[multiple],
.pro-app-shell .si-pane-body select.si-select-hidden {
  display: none;
}

.pro-app-shell .si-pane-body:not(.is-empty) .si-pane-empty {
  display: none;
}

.pro-app-shell .si-pane-list {
  min-height: 100%;
}

.pro-app-shell .si-pane-body select[multiple]:not(.si-select-hidden) {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--shell-slate-900);
  font-family: inherit;
  font-size: 14px;
}

.pro-app-shell .si-pane-body select[multiple] option {
  padding: 9px 14px;
  border-bottom: 1px solid var(--shell-slate-100);
}

.pro-app-shell .si-pane-body select[multiple] option:checked {
  background: var(--shell-teal-50) linear-gradient(0deg, var(--shell-teal-50), var(--shell-teal-50));
  color: var(--shell-slate-900);
}

.pro-app-shell .si-pane-body::-webkit-scrollbar {
  width: 10px;
}

.pro-app-shell .si-pane-body::-webkit-scrollbar-track {
  background: var(--shell-slate-50);
}

.pro-app-shell .si-pane-body::-webkit-scrollbar-thumb {
  border: 2px solid var(--shell-slate-50);
  border-radius: 6px;
  background: var(--shell-slate-300);
}

.pro-app-shell .si-pane-body::-webkit-scrollbar-thumb:hover {
  background: var(--shell-slate-400);
}

.pro-app-shell .si-shuttle-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 4px;
}

.pro-app-shell .si-shuttle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 9px;
  background: #fff;
  color: var(--shell-slate-600);
  cursor: pointer;
  transition: all 0.15s;
}

.pro-app-shell .si-shuttle-btn:hover:not(:disabled) {
  border-color: var(--shell-teal-dark);
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .si-shuttle-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pro-app-shell .si-shuttle-btn .material-symbols-outlined {
  font-size: 22px;
}

.pro-app-shell .si-shuttle-btn .si-shuttle-tt {
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  z-index: 100;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--shell-slate-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.15s;
}

.pro-app-shell .si-shuttle-btn:hover .si-shuttle-tt {
  opacity: 1;
}

.pro-app-shell .si-recipients-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--shell-slate-200);
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: var(--shell-slate-50);
  color: var(--shell-slate-700);
  font-size: 14px;
}

.pro-app-shell .si-recipients-footer strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .si-action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0 28px;
  padding: 20px 24px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}

.pro-app-shell .si-action-summary {
  color: var(--shell-slate-700);
  font-size: 15px;
  line-height: 1.5;
}

.pro-app-shell .si-action-summary strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .si-action-summary-line2 {
  margin-top: 4px;
  color: var(--shell-slate-500);
  font-size: 13px;
}

.pro-app-shell .si-btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 10px;
  background: #f59e0b;
  box-shadow: 0 1px 3px rgba(245, 158, 11, 0.35);
  color: #0f172a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
}

.pro-app-shell .si-btn-send:hover:not(:disabled) {
  background: #d97706;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

.pro-app-shell .si-btn-send:disabled {
  background: var(--shell-slate-200);
  box-shadow: none;
  color: var(--shell-slate-400);
  cursor: not-allowed;
}

.pro-app-shell .si-btn-send .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .si-email-meta {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px 16px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
  font-size: 14px;
}

.pro-app-shell .si-email-meta-label {
  color: var(--shell-slate-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pro-app-shell .si-email-meta-value {
  color: var(--shell-slate-800);
  font-weight: 600;
}

.pro-app-shell .si-subject-input {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  background: #fff;
  color: var(--shell-slate-900);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s;
}

.pro-app-shell .si-subject-input:hover {
  border-color: var(--shell-slate-400);
}

.pro-app-shell .si-subject-input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

/* Follow-up (NPS) survey question dropdown — Send Surveys (?send_nps_survey=1) */
.pro-app-shell .si-question-select {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 36px 9px 12px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-900);
  font-family: inherit;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.4;
}

.pro-app-shell .si-question-select:hover {
  border-color: var(--shell-slate-400);
}

.pro-app-shell .si-question-select:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .si-section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 8px;
}

.pro-app-shell .si-section-label-text {
  color: var(--shell-slate-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pro-app-shell .si-variable-hint {
  color: var(--shell-slate-500);
  font-size: 12px;
}

.pro-app-shell .si-variable-hint code {
  margin: 0 2px;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  font-family: "Source Code Pro", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.pro-app-shell .si-editor-wrap {
  margin: 0 22px 18px;
}

.pro-app-shell .si-card .si-editor-wrap.cm-card-body {
  padding: 0;
}

.pro-app-shell .si-setup-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid var(--shell-slate-200);
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: var(--shell-slate-50);
  color: var(--shell-slate-600);
  font-size: 14px;
}

.pro-app-shell .si-setup-link-row .material-symbols-outlined {
  flex-shrink: 0;
  color: var(--shell-slate-400);
  font-size: 18px;
}

.pro-app-shell .si-setup-link-row .si-setup-link-text {
  flex: 1;
  min-width: 0;
  color: var(--shell-slate-600);
  font-size: 14px;
  line-height: 1.5;
}

.pro-app-shell .si-setup-link-row a {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.pro-app-shell .si-setup-link-row a:hover {
  text-decoration: underline;
}

.pro-app-shell .si-hidden-legacy {
  display: none !important;
}

.pro-app-shell .si-message-block {
  margin: 0;
}

.pro-app-shell .si-message-hint {
  margin: 0 22px 10px;
  color: var(--shell-slate-600);
  font-size: 14px;
  line-height: 1.45;
}

.pro-app-shell #staticModelMessage p {
  margin-bottom: 10px;
}

.pro-app-shell #staticModelMessage ul,
.pro-app-shell #previewModalBody ul {
  margin: 10px 0;
  padding-left: 30px;
}

.pro-app-shell #previewModalBody ul {
  list-style-type: disc;
}

.pro-app-shell #previewModalBody ul li,
.pro-app-shell .note-editor .note-editable ul li {
  display: list-item;
  margin-left: 20px;
  padding-left: 5px;
  list-style-type: disc;
}

.pro-app-shell .note-editor .note-editable ul {
  margin: 10px 0;
  padding-left: 30px;
  list-style-type: disc;
}

.pro-app-shell .note-editor .note-editable ol {
  margin: 10px 0;
  padding-left: 30px;
}

.pro-app-shell .note-editor .note-editable ol li {
  display: list-item;
  margin-left: 20px;
  padding-left: 5px;
}

.pro-app-shell #promoters_modal,
.pro-app-shell #promoters_modal_nps_survey {
  color: var(--shell-slate-900);
}

.pro-app-shell #promoters_modal .modal-header,
.pro-app-shell #promoters_modal_nps_survey .modal-header {
  border: 0 !important;
  background: none !important;
}

.pro-app-shell #promoters_modal .modal-content .modal-header .close,
.pro-app-shell #promoters_modal_nps_survey .modal-content .modal-header .close,
.pro-app-shell .message-preview-popup .modal-header .close {
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 9;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.pro-app-shell #promoters_modal .modal-dialog .modal-content,
.pro-app-shell #promoters_modal_nps_survey .modal-dialog .modal-content {
  background-color: #f7f7fc !important;
}

.pro-app-shell .inner-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 35px 45px;
  border: 1px solid #e8e9f0;
  border-radius: 5px;
  background-color: #fff;
}

.pro-app-shell #staticModelMessage {
  padding-top: 0 !important;
}

.pro-app-shell #previewModalBody {
  padding-bottom: 20px;
}

.pro-app-shell #promoters_modal .footer,
.pro-app-shell #promoters_modal_nps_survey .footer {
  position: relative !important;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.pro-app-shell .si-pane-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--shell-slate-100);
  cursor: pointer;
  transition: background 0.12s;
}

.pro-app-shell .si-pane-row:last-child {
  border-bottom: none;
}

.pro-app-shell .si-pane-row:hover,
.pro-app-shell .si-pane-row.checked {
  background: var(--shell-teal-50);
}

.pro-app-shell .si-pane-row-text {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
}

.pro-app-shell .si-pane-row-name {
  flex-shrink: 0;
  color: var(--shell-slate-900);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pro-app-shell .si-pane-row-email {
  min-width: 0;
  overflow: hidden;
  color: var(--shell-slate-500);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro-app-shell .si-pane-row-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--shell-slate-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-app-shell .si-pane-row-status .material-symbols-outlined {
  font-size: 14px;
}

.pro-app-shell .si-pane-row-status.not-invited {
  color: var(--shell-slate-600);
}

.pro-app-shell .si-pane-row-status.invited {
  color: var(--shell-slate-600);
}

.pro-app-shell .si-pane-row-status.in-progress {
  color: #92400e;
}

.pro-app-shell .si-pane-row-action-tag {
  color: var(--shell-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-app-shell .si-pane-empty {
  padding: 56px 14px;
  color: var(--shell-slate-400);
  font-size: 13px;
  text-align: center;
}

.pro-app-shell .si-pane-empty .material-symbols-outlined {
  display: block;
  margin: 0 auto 6px;
  color: var(--shell-slate-300);
  font-size: 32px;
}

.pro-app-shell .si-pane-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--shell-teal-dark);
  cursor: pointer;
}

.pro-app-shell .si-pane-tab.is-static {
  opacity: 0.72;
  cursor: default;
}

.pro-app-shell .si-pane-tab.is-static:hover {
  background: transparent;
  color: var(--shell-slate-600);
}

.pro-app-shell .si-clear-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--shell-slate-600);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.pro-app-shell .si-clear-link:hover {
  color: var(--shell-slate-900);
}

.pro-app-shell .si-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
  animation: si-fade-in 0.18s ease-out;
}

@keyframes si-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pro-app-shell .si-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: si-slide-up 0.22s ease-out;
}

@keyframes si-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pro-app-shell .si-modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #1e3a5f;
  color: #fff;
}

.pro-app-shell .si-modal-title {
  font-size: 17px;
  font-weight: 700;
}

.pro-app-shell .si-modal-close {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
}

.pro-app-shell .si-modal-close:hover {
  opacity: 1;
}

.pro-app-shell .si-modal-close .material-symbols-outlined {
  font-size: 22px;
}

.pro-app-shell .si-modal-body {
  flex: 1;
  overflow-y: auto;
}

.pro-app-shell .si-preview-email-content {
  padding: 20px 26px 22px;
}

.pro-app-shell .si-preview-email-content .container-email {
  padding: 0;
}

.pro-app-shell .si-preview-email-content .container-email .footer {
  margin-top: 18px;
  padding-top: 16px !important;
  border-top: 1px solid var(--shell-slate-200);
  color: var(--shell-slate-600);
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  text-align: center;
}

.pro-app-shell .si-preview-email-content #staticModelTitle {
  margin-bottom: 12px;
  /* color: var(--shell-slate-900); */
  font-size: 15px;
  /* font-weight: 600; */
}

.pro-app-shell .si-preview-email-content #staticModelMessage,
.pro-app-shell .si-preview-email-content #previewModalBody,
.pro-app-shell .si-preview-email-content #signaturePreview {
  color: var(--shell-slate-800);
  font-size: 14px;
  line-height: 1.6;
}

.pro-app-shell .si-preview-recipient-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-bottom: 1px solid #cce8e3;
  background: var(--shell-teal-50);
  color: var(--shell-slate-700);
  font-size: 13px;
}

.pro-app-shell .si-preview-recipient-bar .material-symbols-outlined {
  color: var(--shell-teal-dark);
  font-size: 18px;
}

.pro-app-shell .si-preview-recipient-bar strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .si-preview-recipient-bar select {
  margin-left: auto;
  padding: 5px 10px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.pro-app-shell .si-preview-meta {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 6px 14px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--shell-slate-200);
  font-size: 14px;
}

.pro-app-shell .si-preview-meta-label {
  color: var(--shell-slate-500);
  font-weight: 600;
}

.pro-app-shell .si-preview-meta-value,
.pro-app-shell .si-preview-meta-subject {
  color: var(--shell-slate-900);
  font-weight: 600;
}

.pro-app-shell .si-preview-meta-subject {
  font-size: 16px;
  font-weight: 700;
}

.pro-app-shell .si-preview-body-wrap {
  padding: 26px;
  color: var(--shell-slate-800);
  font-size: 15px;
  line-height: 1.65;
}

.pro-app-shell .si-preview-body-wrap p {
  margin: 0 0 14px;
}

.pro-app-shell .si-preview-body-wrap ul {
  margin: 0 0 14px;
  padding-left: 24px;
}

.pro-app-shell .si-preview-body-wrap li {
  margin-bottom: 6px;
}

.pro-app-shell .si-preview-body-wrap a {
  color: var(--shell-teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

.pro-app-shell .si-preview-signature {
  padding: 0 26px 22px;
  color: var(--shell-slate-700);
  font-size: 14px;
  line-height: 1.55;
}

.pro-app-shell .si-preview-nps-block {
  padding: 0 26px 18px;
}

.pro-app-shell .si-preview-signature p {
  margin: 0 0 10px;
}

.pro-app-shell .si-modal-footer {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
}

.pro-app-shell .si-modal-btn {
  padding: 9px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--shell-teal-dark);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.pro-app-shell .si-modal-btn:hover {
  background: #1e3a5f;
}

.pro-app-shell .si-pane-body > input[type="text"].form-control {
  display: none;
}

/* ============================================================
   Manage Participants page (mp-*)
   ============================================================ */
.pro-app-shell .mp-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .mp-card {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pro-app-shell .mp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  flex-wrap: wrap;
}

.pro-app-shell .mp-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.pro-app-shell .mp-card-title .material-symbols-outlined {
  font-size: 20px;
  opacity: 0.9;
}

.pro-app-shell .mp-status-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.pro-app-shell .mp-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.pro-app-shell .mp-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pro-app-shell .mp-tab.active {
  background: #fff;
  color: #1e3a5f;
}

.pro-app-shell .mp-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 1px 7px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.pro-app-shell .mp-tab.active .mp-tab-count {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .mp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  gap: 16px;
}

.pro-app-shell .mp-show-entries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--shell-slate-600);
}

.pro-app-shell .mp-show-entries select {
  padding: 5px 10px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}

.pro-app-shell .mp-search {
  position: relative;
}

.pro-app-shell .mp-search .material-symbols-outlined {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--shell-slate-400);
  pointer-events: none;
}

.pro-app-shell .mp-search input {
  padding: 8px 12px 8px 34px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 13px;
  width: 280px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pro-app-shell .mp-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .mp-bulk-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--shell-teal-50);
  border-bottom: 1px solid var(--shell-teal-border-soft);
}

.pro-app-shell .mp-bulk-bar.mp-hidden {
  display: none;
}

.pro-app-shell .mp-toolbar.mp-hidden {
  display: none;
}

/* Shared hide utility for footer actions, bulk buttons, etc. */
.pro-app-shell .mp-page .mp-hidden,
.pro-app-shell .mp-card-footer-group.mp-hidden,
.pro-app-shell .mp-bulk-btn.mp-hidden {
  display: none !important;
}

.pro-app-shell .mp-bulk-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-teal-dark);
}

.pro-app-shell .mp-bulk-actions {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.pro-app-shell .mp-bulk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.pro-app-shell .mp-bulk-btn:hover {
  color: var(--shell-teal-dark);
  border-color: var(--shell-teal-dark);
}

.pro-app-shell .mp-bulk-btn .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .mp-bulk-clear {
  background: transparent;
  border: none;
  color: var(--shell-slate-600);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 7px 10px;
  font-family: inherit;
}

.pro-app-shell .mp-bulk-clear:hover {
  color: var(--shell-slate-900);
}

.pro-app-shell .mp-table-wrap {
  overflow-x: auto;
}

.pro-app-shell .mp-table {
  width: 100%;
  border-collapse: collapse;
}

.pro-app-shell .mp-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 18px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
}

.pro-app-shell .mp-table thead th.col-checkbox {
  width: 44px;
  padding-right: 8px;
}

.pro-app-shell .mp-table thead th.col-actions {
  width: 180px;
  text-align: right;
}

.pro-app-shell .mp-table tbody td {
  padding: 14px 18px;
  font-size: 15px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: #fff;
}

.pro-app-shell .mp-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .mp-table tbody tr.mp-row-hidden {
  display: none;
}

.pro-app-shell .mp-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--shell-teal-dark);
}

.pro-app-shell .mp-name {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.pro-app-shell .mp-name:hover {
  text-decoration: underline;
}

.pro-app-shell .mp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--shell-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pro-app-shell .mp-status.not-invited {
  background: var(--shell-slate-200);
  color: var(--shell-slate-700);
}

.pro-app-shell .mp-status.invited {
  background: var(--shell-slate-100);
  color: var(--shell-slate-700);
  border: 1px solid var(--shell-slate-300);
}

.pro-app-shell .mp-status.in-progress {
  background: #fef3c7;
  color: #92400e;
}

.pro-app-shell .mp-status.completed {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .mp-status.archived {
  background: var(--shell-slate-200);
  color: var(--shell-slate-700);  
}

.pro-app-shell .mp-status .material-symbols-outlined,
.pro-app-shell .mp-status .material-icons {
  font-family: "Material Symbols Outlined";
  font-size: 15px !important;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  color: inherit;
}

.pro-app-shell .mp-status > span:not(.material-symbols-outlined):not(.material-icons) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.pro-app-shell button.mp-status,
.pro-app-shell button.mp-status.mp-status-clickable {
  border: none;
  cursor: pointer;
  font-family: var(--shell-font-family);
  transition: filter 0.15s, transform 0.15s;
}

.pro-app-shell button.mp-status:hover,
.pro-app-shell button.mp-status.mp-status-clickable:hover {
  filter: brightness(0.93);
  transform: translateY(-1px);
}

.pro-app-shell .mp-table thead th.col-reports {
  width: 110px;
}

.pro-app-shell .col-reports .mp-row-actions {
  gap: 2px;
}

.pro-app-shell .mp-table thead th.col-hub {
  width: auto;
  min-width: 220px;
  text-align: center;
}

.pro-app-shell .mp-hub-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.pro-app-shell .mp-hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--shell-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}

.pro-app-shell .mp-hub-btn:hover {
  filter: brightness(0.93);
  transform: translateY(-1px);
}

.pro-app-shell .mp-hub-btn .material-symbols-outlined,
.pro-app-shell .mp-hub-btn .material-icons {
  font-family: "Material Symbols Outlined";
  font-size: 15px !important;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  color: inherit;
}

.pro-app-shell .mp-hub-btn > span:not(.material-symbols-outlined):not(.material-icons) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.pro-app-shell .mp-hub-btn.released {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .mp-hub-btn.not-released {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.pro-app-shell .mp-hub-btn.mp-hub-account.active {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  cursor: default;
  opacity: 0.95;
}

.pro-app-shell .mp-hub-btn.mp-hub-account.active:hover {
  filter: none;
  transform: none;
}

.pro-app-shell .mp-hub-btn.mp-hub-account.resend-activation-link {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.pro-app-shell span.mp-name.js-mp-open-card {
  cursor: pointer;
  color: var(--shell-blue, #0097dc);
  font-weight: 600;
}

.pro-app-shell span.mp-name.js-mp-open-card:hover {
  text-decoration: underline;
}

.pro-app-shell .mp-name--report a {
  color: var(--shell-blue, #0097dc);
  font-weight: 600;
  text-decoration: none;
}

.pro-app-shell .mp-name--report a:hover {
  text-decoration: underline;
}

.pro-app-shell a.mp-row-action-btn {
  text-decoration: none;
  box-sizing: border-box;
}

.pro-app-shell .mp-row-actions {
  display: inline-flex;
  gap: 2px;
  justify-content: flex-end;
  width: 100%;
}

.pro-app-shell .col-reports .mp-row-actions {
  justify-content: flex-start;
}

.pro-app-shell .mp-row-action-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--shell-slate-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.pro-app-shell .mp-row-action-btn:hover {
  background: var(--shell-slate-200);
  color: var(--shell-slate-800);
}

.pro-app-shell .mp-page .mp-row-action-btn .material-symbols-outlined,
.pro-app-shell .mp-page .mp-row-action-btn .material-icons {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  color: inherit;
}

.pro-app-shell .mp-row-action-btn .tt {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--shell-slate-900);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pro-app-shell .mp-row-action-btn:hover .tt {
  opacity: 1;
}

.pro-app-shell .mp-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--shell-slate-200);
  font-size: 14px;
  color: var(--shell-slate-500);
  background: var(--shell-slate-50);
}

.pro-app-shell .mp-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid var(--shell-slate-200);
  background: #fff;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .mp-card-footer-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pro-app-shell .mp-card-footer .btn-primary {
  gap: 8px;
}

/* ============================================================
   Import Participants (ip-*)
   Reuses mp-card, mp-table, mp-toolbar, ap-bulk-hint, ap-btn
   ============================================================ */
.pro-app-shell .ip-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .ip-page .mp-card {
  margin-bottom: 18px;
}

.pro-app-shell .ip-page .ip-source-card {
  overflow: visible;
}

.pro-app-shell .ip-page .ip-hidden {
  display: none !important;
}

.pro-app-shell .ip-picker-wrap {
  padding: 22px;
  position: relative;
}

.pro-app-shell .ip-page button.ip-picker-btn,
.pro-app-shell .ip-picker-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fff !important;
  border: 1.5px solid var(--shell-slate-300) !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--shell-slate-700) !important;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pro-app-shell .ip-page button.ip-picker-btn:hover,
.pro-app-shell .ip-picker-btn:hover {
  border-color: var(--shell-teal-dark) !important;
  background: var(--shell-teal-50) !important;
  color: var(--shell-teal-dark) !important;
}

.pro-app-shell .ip-picker-btn .ip-picker-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-app-shell .ip-picker-btn .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .ip-picker-panel {
  position: absolute;
  top: calc(100% - 14px);
  left: 22px;
  right: 22px;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16), 0 2px 8px rgba(15, 23, 42, 0.06);
  z-index: 100;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pro-app-shell .ip-picker-search {
  padding: 12px 14px;
  border-bottom: 1px solid var(--shell-slate-200);
  position: relative;
}

.pro-app-shell .ip-picker-search .material-symbols-outlined {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--shell-slate-400);
  pointer-events: none;
}

.pro-app-shell .ip-picker-search input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  background: var(--shell-slate-50);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.pro-app-shell .ip-picker-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .ip-picker-list {
  display: block;
  width: 100%;
  overflow-y: auto;
  flex: 1;
}

.pro-app-shell .ip-page button.ip-picker-item,
.pro-app-shell .ip-picker-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin: 0;
  background: #fff !important;
  color: inherit !important;
  border: none !important;
  border-bottom: 1px solid var(--shell-slate-100) !important;
  border-radius: 0 !important;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: background 0.12s;
}

.pro-app-shell .ip-page button.ip-picker-item:hover,
.pro-app-shell .ip-picker-item:hover {
  background: var(--shell-teal-50) !important;
  color: inherit !important;
}

.pro-app-shell .ip-page button.ip-picker-item:last-child,
.pro-app-shell .ip-picker-item:last-child {
  border-bottom: none !important;
}

.pro-app-shell .ip-picker-item-info {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .ip-picker-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin-bottom: 3px;
}

.pro-app-shell .ip-picker-item-meta {
  font-size: 13px;
  color: var(--shell-slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-app-shell .ip-picker-item-meta em {
  font-style: italic;
  color: var(--shell-slate-700);
}

.pro-app-shell .ip-picker-item-meta-sep {
  color: var(--shell-slate-400);
}

.pro-app-shell .ip-picker-empty {
  padding: 32px 22px;
  text-align: center;
  color: var(--shell-slate-500);
  font-size: 14px;
}

.pro-app-shell .ip-source-info {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pro-app-shell .ip-source-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--shell-teal-50);
  border: 1px solid var(--shell-teal-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-app-shell .ip-source-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--shell-teal-dark);
}

.pro-app-shell .ip-source-text {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .ip-source-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pro-app-shell .ip-source-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin-bottom: 4px;
}

.pro-app-shell .ip-source-meta {
  font-size: 14px;
  color: var(--shell-slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-app-shell .ip-source-meta em {
  font-style: italic;
}

.pro-app-shell .ip-source-meta-sep {
  color: var(--shell-slate-400);
}

.pro-app-shell .ip-page button.ip-source-change,
.pro-app-shell .ip-source-change {
  background: #fff !important;
  border: 1px solid var(--shell-slate-300) !important;
  color: var(--shell-slate-700) !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.pro-app-shell .ip-page button.ip-source-change:hover,
.pro-app-shell .ip-source-change:hover {
  border-color: var(--shell-teal-dark) !important;
  color: var(--shell-teal-dark) !important;
  background: #fff !important;
}

.pro-app-shell .ip-source-change .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .ip-toolbar-summary {
  font-size: 14px;
  color: var(--shell-slate-700);
  font-weight: 600;
}

.pro-app-shell .ip-toolbar-summary strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .ip-page .mp-table thead th.col-status {
  width: 200px;
}

.pro-app-shell .ip-page .mp-table tbody tr.is-disabled td {
  color: var(--shell-slate-400);
}

.pro-app-shell .ip-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pro-app-shell .ip-status-pill.already-in {
  background: var(--shell-slate-100);
  color: var(--shell-slate-600);
  border: 1px solid var(--shell-slate-300);
}

.pro-app-shell .ip-status-pill .material-symbols-outlined {
  font-size: 15px;
}

.pro-app-shell .ip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  flex-wrap: wrap;
}

.pro-app-shell .ip-footer-summary {
  font-size: 14px;
  color: var(--shell-slate-600);
}

.pro-app-shell .ip-footer-summary strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .ip-footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer + toolbar buttons — beat global html.php button{} */
.pro-app-shell .ip-page .ip-footer-actions .ap-btn-cancel {
  background: #fff !important;
  border: 1px solid var(--shell-slate-300) !important;
  color: var(--shell-slate-700) !important;
  box-shadow: none;
}

.pro-app-shell .ip-page .ip-footer-actions .ap-btn-cancel:hover {
  background: var(--shell-slate-50) !important;
  border-color: var(--shell-slate-400) !important;
  color: var(--shell-slate-700) !important;
}

.pro-app-shell .ip-page .ip-footer-actions .ap-btn-save {
  background: var(--shell-teal-dark) !important;
  border: 1px solid var(--shell-teal-dark) !important;
  color: #fff !important;
  box-shadow: none;
}

.pro-app-shell .ip-page .ip-footer-actions .ap-btn-save:hover:not(:disabled) {
  background: #1e3a5f !important;
  border-color: #1e3a5f !important;
  color: #fff !important;
}

.pro-app-shell .ip-page .ip-footer-actions .ap-btn-save:disabled {
  background: var(--shell-slate-200) !important;
  border-color: var(--shell-slate-200) !important;
  color: var(--shell-slate-400) !important;
  cursor: not-allowed;
  opacity: 1;
}

.pro-app-shell .ip-picker-list button.ip-picker-item {
  max-width: none;
  float: none;
}

@media (max-width: 768px) {
  .pro-app-shell .ip-source-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .pro-app-shell .ip-source-change {
    width: 100%;
    justify-content: center;
  }

  .pro-app-shell .ip-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .pro-app-shell .ip-footer-actions {
    width: 100%;
  }

  .pro-app-shell .ip-footer-actions .ap-btn {
    flex: 1;
    justify-content: center;
  }
}

.pro-app-shell .mp-pagination:last-child {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .mp-pagination-controls {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* DataTables pagination inside Manage Participants footer (matches mp-page-btn / ref HTML) */
.pro-app-shell .mp-page .mp-pagination-controls .dataTables_paginate {
  float: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li {
  display: inline-flex;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li > a,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li > span {
  min-width: 32px;
  height: 32px;
  border-radius: 7px !important;
  border: 1px solid var(--shell-slate-300) !important;
  background: #fff !important;
  color: var(--shell-slate-700) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px !important;
  line-height: 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  box-shadow: none;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li > a:hover,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li > a:focus {
  background: var(--shell-teal-50) !important;
  border-color: var(--shell-teal-dark) !important;
  color: var(--shell-teal-dark) !important;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.active > a,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.active > a:hover,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.active > a:focus {
  background: var(--shell-teal-dark) !important;
  border-color: var(--shell-teal-dark) !important;
  color: #fff !important;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.disabled > a,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.disabled > a:hover,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.disabled > span {
  opacity: 0.45;
  cursor: not-allowed !important;
  background: #fff !important;
  color: var(--shell-slate-700) !important;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.previous > a,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.next > a {
  font-size: 0 !important;
  width: 32px;
  min-width: 32px;
  padding: 5px 0 !important;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.previous > a::before,
.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.next > a::before {
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  line-height: 1;
  color: inherit;
  display: inline-block;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.previous > a::before {
  content: "chevron_left";
}

.pro-app-shell .mp-page .mp-pagination-controls .pagination > li.next > a::before {
  content: "chevron_right";
}

.pro-app-shell .mp-page-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-300);
  background: #fff;
  color: var(--shell-slate-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.15s;
  font-family: inherit;
}

.pro-app-shell .mp-page-btn:hover:not(:disabled) {
  background: var(--shell-teal-50);
  border-color: var(--shell-teal-dark);
  color: var(--shell-teal-dark);
}

.pro-app-shell .mp-page-btn.active {
  background: var(--shell-teal-dark);
  color: #fff;
  border-color: var(--shell-teal-dark);
}

.pro-app-shell .mp-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pro-app-shell .mp-page-btn .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .mp-status-info-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  color: var(--shell-slate-400);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  transition: color 0.15s;
}

.pro-app-shell .mp-status-info-btn:hover {
  color: var(--shell-teal-dark);
}

.pro-app-shell .mp-page .mp-status-info-btn .material-symbols-outlined,
.pro-app-shell .mp-page .mp-status-info-btn .material-icons,
.pro-app-shell .mp-table thead th .mp-status-info-btn .material-symbols-outlined {
  font-size: 16px !important;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  color: inherit;
}

/* Override legacy changes.css (.material-icons { font-size: 60px }) inside Manage Participants */
.pro-app-shell .mp-page .material-icons {
  font-size: inherit !important;
  color: inherit !important;
}

.pro-app-shell .mp-page .mp-card-title .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.pro-app-shell .mp-page .mp-search .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .mp-page .mp-bulk-btn .material-symbols-outlined,
.pro-app-shell .mp-page .page-header-actions .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.pro-app-shell .mp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: mpFadeIn 0.18s ease-out;
}

.pro-app-shell .mp-modal-overlay.is-open {
  display: flex;
}

@keyframes mpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pro-app-shell .mp-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: mpSlideUp 0.22s ease-out;
}

@keyframes mpSlideUp {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pro-app-shell .mp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.pro-app-shell .mp-modal-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.pro-app-shell .mp-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  opacity: 0.85;
}

.pro-app-shell .mp-modal-close:hover {
  opacity: 1;
}

.pro-app-shell .mp-modal-section {
  padding: 20px 24px 8px;
}

.pro-app-shell .mp-modal-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pro-app-shell .mp-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
}

.pro-app-shell .mp-info-row + .mp-info-row {
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .mp-info-row-pill {
  display: flex;
  align-items: center;
}

.pro-app-shell .mp-info-row-text {
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.5;
}

.pro-app-shell .mp-info-action-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.pro-app-shell .mp-info-action-row + .mp-info-action-row {
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .mp-info-action-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--shell-slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell-slate-700);
}

.pro-app-shell .mp-info-action-icon .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .mp-info-action-text {
  font-size: 14px;
  color: var(--shell-slate-700);
  line-height: 1.5;
}

.pro-app-shell .mp-info-action-text strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.pro-app-shell .mp-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 24px;
  border-top: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .mp-modal-btn {
  background: var(--shell-teal-dark);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.pro-app-shell .mp-modal-btn:hover {
  background: #1e3a5f;
}

.pro-app-shell .mp-pc-name {
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .mp-pc-name-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pro-app-shell .mp-pc-name-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-900);
  letter-spacing: -0.01em;
}

.pro-app-shell .mp-pc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .mp-pc-field-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.pro-app-shell .mp-pc-field-value {
  font-size: 14px;
  color: var(--shell-slate-900);
  font-weight: 600;
}

.pro-app-shell .mp-pc-timeline {
  padding: 14px 24px 18px;
}

.pro-app-shell .mp-pc-timeline-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 10px 0;
  align-items: center;
}

.pro-app-shell .mp-pc-timeline-row + .mp-pc-timeline-row {
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .mp-pc-timeline-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-500);
}

.pro-app-shell .mp-pc-timeline-value {
  font-size: 14px;
  color: var(--shell-slate-800);
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .mp-pc-timeline-value.empty {
  color: var(--shell-slate-400);
  font-style: italic;
  font-size: 13px;
}

body.pro-app-shell.mp-modal-open {
  overflow: hidden;
}

.pro-app-shell .mp-modal-footer.mp-modal-footer-split {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.pro-app-shell .mp-page .mp-pagination-controls {
  padding: 0;
  border-top: 0;
}

/* ============================================================
   Access Results page (ar-*)
   ============================================================ */
.pro-app-shell .ar-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .ar-hint {
  font-size: 15px;
  color: var(--shell-slate-600);
  margin-bottom: 20px;
  line-height: 1.55;
}

.pro-app-shell .ar-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.pro-app-shell .ar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.pro-app-shell .ar-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.pro-app-shell .ar-card-title .material-symbols-outlined {
  font-size: 20px !important;
  opacity: 0.9;
  color: #fff !important;
}

.pro-app-shell .ar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  gap: 16px;
}

.pro-app-shell .ar-show-entries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--shell-slate-600);
}

.pro-app-shell .ar-show-entries select {
  padding: 5px 10px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}

.pro-app-shell .ar-search {
  position: relative;
}

.pro-app-shell .ar-search .material-symbols-outlined {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px !important;
  color: var(--shell-slate-400);
  pointer-events: none;
}

.pro-app-shell .ar-search input {
  padding: 8px 12px 8px 34px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 13px;
  width: 280px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pro-app-shell .ar-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .ar-bulk-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--shell-teal-50);
  border-bottom: 1px solid #cce8e3;
}

.pro-app-shell .ar-bulk-bar.ar-hidden,
.pro-app-shell .ar-toolbar.ar-hidden {
  display: none;
}

.pro-app-shell .ar-bulk-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-teal-dark);
}

.pro-app-shell .ar-bulk-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.pro-app-shell .ar-bulk-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--shell-teal);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2);
}

.pro-app-shell .ar-bulk-btn:hover {
  background: var(--shell-teal-dark);
}

.pro-app-shell .ar-bulk-btn .material-symbols-outlined,
.pro-app-shell .ar-bulk-btn .dr-mat-icon {
  font-size: 18px !important;
  color: #fff !important;
}

.pro-app-shell .ar-bulk-clear {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-teal-dark);
  cursor: pointer;
  padding: 6px 8px;
}

.pro-app-shell .ar-bulk-clear:hover {
  text-decoration: underline;
}

.pro-app-shell .ar-card .dataTables_wrapper .dataTables_length,
.pro-app-shell .ar-card .dataTables_wrapper .dataTables_filter,
.pro-app-shell .ar-card .dataTables_wrapper .dataTables_info {
  display: none !important;
}

.pro-app-shell .ar-table-wrap {
  overflow-x: auto;
}

.pro-app-shell .ar-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0 !important;
}

.pro-app-shell .ar-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 18px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
}

.pro-app-shell .ar-table thead th.col-checkbox,
.pro-app-shell .ar-table tbody td.col-checkbox {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  padding: 14px 8px 14px 18px;
  text-align: left;
  vertical-align: middle;
}

.pro-app-shell .ar-table thead th.col-status {
  min-width: 140px;
  text-align: center;
}

.pro-app-shell .ar-table thead th.col-actions {
  min-width: 140px;
}

.pro-app-shell .ar-table thead th.col-status .ar-status-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
}

.pro-app-shell .ar-table.participants-table thead th #popupstatus.ar-status-info-btn,
.pro-app-shell .ar-page .ar-table thead th .ar-status-info-btn#popupstatus,
.pro-app-shell .ar-page #popupstatus.ar-status-info-btn {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  margin: 0 0 0 2px;
  padding: 0;
  flex-shrink: 0;
}

.pro-app-shell .ar-table thead th .sortable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.pro-app-shell .ar-table thead th .sortable .material-symbols-outlined {
  font-size: 16px !important;
  color: var(--shell-slate-400);
}

.pro-app-shell .ar-table.dataTable thead .sorting:before,
.pro-app-shell .ar-table.dataTable thead .sorting:after,
.pro-app-shell .ar-table.dataTable thead .sorting_asc:before,
.pro-app-shell .ar-table.dataTable thead .sorting_asc:after,
.pro-app-shell .ar-table.dataTable thead .sorting_desc:before,
.pro-app-shell .ar-table.dataTable thead .sorting_desc:after {
  display: none !important;
}

.pro-app-shell .ar-table tbody td {
  padding: 14px 18px;
  font-size: 15px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: #fff;
}

.pro-app-shell .ar-table tbody tr:nth-child(even):not(.ar-row-selected) td {
  background: #e6f4ef;
}

.pro-app-shell .ar-table tbody tr.ar-row-selected td {
  background: #d4ede7 !important;
  font-weight: 400;
  color: var(--shell-slate-600);
}

.pro-app-shell .ar-table tbody tr.ar-row-selected:nth-child(even) td,
.pro-app-shell .ar-table tbody tr.ar-row-selected.odd td,
.pro-app-shell .ar-table tbody tr.ar-row-selected.even td {
  background: #d4ede7 !important;
}

.pro-app-shell .ar-table tbody tr.ar-row-selected:hover td {
  background: #cce8e3 !important;
}

.pro-app-shell .ar-table input[type="checkbox"].ar-checkbox,
.pro-app-shell .ar-table.participants-table input[type="checkbox"].check_participant.ar-checkbox,
.pro-app-shell .dr-page .dr-bulk-bar input[type="checkbox"].ar-checkbox,
.page-downloadreports input[type="checkbox"].ar-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0 !important;
  left: auto !important;
  top: auto !important;
  position: static !important;
  border: 2px solid var(--shell-slate-300);
  border-radius: 4px;
  background-color: #fff;
  background-image: none;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.pro-app-shell .ar-table input[type="checkbox"].ar-checkbox:checked,
.pro-app-shell .ar-table input[type="checkbox"].ar-checkbox.is-checked,
.pro-app-shell .ar-table.participants-table input[type="checkbox"].check_participant.ar-checkbox:checked,
.pro-app-shell .ar-table.participants-table input[type="checkbox"].check_participant.ar-checkbox.is-checked,
.pro-app-shell .dr-page .dr-bulk-bar input[type="checkbox"].ar-checkbox:checked,
.pro-app-shell .dr-page .dr-bulk-bar input[type="checkbox"].ar-checkbox.is-checked,
.page-downloadreports input[type="checkbox"].ar-checkbox:checked,
.page-downloadreports input[type="checkbox"].ar-checkbox.is-checked {
  background-color: var(--shell-teal-dark) !important;
  border-color: var(--shell-teal-dark) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 14px 14px !important;
}

.pro-app-shell .ar-table input[type="checkbox"].ar-checkbox:focus-visible,
.pro-app-shell .dr-page .dr-bulk-bar input[type="checkbox"].ar-checkbox:focus-visible,
.page-downloadreports input[type="checkbox"].ar-checkbox:focus-visible {
  outline: 2px solid var(--shell-teal-light);
  outline-offset: 2px;
}

/* Override legacy changes.css .check_participant offsets inside Access Results */
.pro-app-shell .ar-page .ar-table input.check_participant {
  width: 18px !important;
  height: 18px !important;
  left: auto !important;
  top: auto !important;
}

/* Download Reports — legacy .check_participant positioning must not hide boxes */
.page-downloadreports .ar-table input.check_participant,
.pro-app-shell .dr-page .ar-table input.check_participant {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  left: auto !important;
  top: auto !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 !important;
}

/* Access Results — name columns (match ref: pro-account-project-access-results-v1_2.html) */
.pro-app-shell .ar-page .ar-table tbody td.col-name,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(2),
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(3) {
  font-weight: 700 !important;
  color: var(--shell-slate-800);
}

.pro-app-shell .ar-page .ar-table tbody tr.ar-row-selected td.col-name,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr.ar-row-selected > td:nth-child(2),
.pro-app-shell .ar-page .ar-table.participants-table tbody tr.ar-row-selected > td:nth-child(3) {
  font-weight: 700 !important;
  color: var(--shell-slate-900);
}

.pro-app-shell .ar-page .ar-table tbody td.col-name a,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(2) a,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(3) a {
  font-weight: 700 !important;
  color: inherit;
  text-decoration: none;
}

.pro-app-shell .ar-page .ar-table tbody td.col-name a:hover,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(2) a:hover,
.pro-app-shell .ar-page .ar-table.participants-table tbody tr > td:nth-child(3) a:hover {
  color: var(--shell-teal-dark);
  text-decoration: underline;
}

.pro-app-shell .ar-card .feedback-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--shell-slate-100);
  background: #fff;
  font-size: 14px;
  color: var(--shell-slate-500);
}

.pro-app-shell .ar-card .feedback-pagination-controls {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pro-app-shell .ar-card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px;
  border-top: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
}

.pro-app-shell .ar-status-info-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--shell-slate-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}

.pro-app-shell .ar-status-info-btn:hover {
  color: var(--shell-teal-dark);
}

.pro-app-shell .ar-status-info-btn .material-symbols-outlined {
  font-size: 16px !important;
  color: var(--shell-slate-400);
}

.pro-app-shell .ar-page .ar-table .main-div,
.pro-app-shell .ar-page .ar-table .button-div-align {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  width: auto !important;
}

.pro-app-shell .ar-page .ar-table .img-icon {
  display: inline-flex;
  cursor: pointer;
}

.pro-app-shell .ar-page .ar-table .img-icon img {
  width: 24px;
  height: 24px;
}

.pro-app-shell .ar-page .ar-table .img-icon .hover-img {
  display: none;
}

.pro-app-shell .ar-page .ar-table .img-icon:hover .default-img {
  display: none;
}

.pro-app-shell .ar-page .ar-table .img-icon:hover .hover-img {
  display: inline;
}

.pro-app-shell .ar-card .feedback-pagination-controls .dataTables_paginate {
  float: none;
  margin: 0;
  text-align: right;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li {
  margin: 0;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li > a,
.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li > span {
  min-width: 32px;
  height: 32px;
  border-radius: 7px !important;
  border: 1px solid var(--shell-slate-200) !important;
  background: #fff !important;
  color: var(--shell-slate-600) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px !important;
  line-height: 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.active > a,
.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.active > a:hover {
  background: var(--shell-teal) !important;
  border-color: var(--shell-teal) !important;
  color: #fff !important;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.disabled > a,
.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.disabled > a:hover {
  opacity: 0.4;
  cursor: not-allowed !important;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.previous > a,
.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.next > a {
  font-size: 0 !important;
  width: 32px;
  min-width: 32px;
  padding: 5px 0 !important;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.previous > a::before,
.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.next > a::before {
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
  color: var(--shell-slate-600);
  display: inline-block;
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.previous > a::before {
  content: "chevron_left";
}

.pro-app-shell .ar-card .feedback-pagination-controls .pagination > li.next > a::before {
  content: "chevron_right";
}

/* Access Results — status info popup (page-scoped, not global .btn theme) */
#custom-popup.ar-status-popup {
  border: 1px solid var(--shell-slate-200);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  max-width: 520px;
  padding: 0;
  overflow: hidden;
}

#custom-popup.ar-status-popup .custom-popup-content {
  padding: 22px 24px 12px;
}

#custom-popup.ar-status-popup .info-popup-title-header {
  font-size: 18px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0 0 16px;
}

#custom-popup.ar-status-popup .mp-modal-footer {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

#custom-popup.ar-status-popup .custom-popup-close {
  float: none;
  text-transform: none;
}

body.pro-app-shell.dr-modal-open {
  overflow: hidden;
}

/* ============================================================
   Upload List page (ul-*)
   ============================================================ */
.pro-app-shell .ul-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .ul-page .mp-card + .mp-card,
.pro-app-shell .ul-page .ul-upload-card {
  margin-bottom: 18px;
}

.pro-app-shell .ul-dropzone {
  margin: 22px;
  padding: 56px 22px;
  border: 2px dashed var(--shell-slate-300);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--shell-slate-50);
}

.pro-app-shell .ul-dropzone:hover,
.pro-app-shell .ul-dropzone.is-dragover {
  border-color: var(--shell-teal-dark);
  background: var(--shell-teal-50);
}

.pro-app-shell .ul-dropzone .material-symbols-outlined {
  font-size: 56px;
  color: var(--shell-slate-400);
  margin-bottom: 8px;
  display: block;
}

.pro-app-shell .ul-dropzone:hover .material-symbols-outlined,
.pro-app-shell .ul-dropzone.is-dragover .material-symbols-outlined {
  color: var(--shell-teal-dark);
}

.pro-app-shell .mp-modal-close .material-symbols-outlined{
  font-size: 24px !important;  
  color: var(--shell-slate-600) !important;
  transition: color 0.15s;
}

.pro-app-shell .mp-modal-close .material-symbols-outlined:hover {
  color: var(--shell-slate-900) !important;
}

.pro-app-shell .ul-dropzone-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin-bottom: 4px;
}

.pro-app-shell .ul-dropzone-sub {
  font-size: 14px;
  color: var(--shell-slate-600);
  margin-bottom: 14px;
}

.pro-app-shell .ul-dropzone-browse {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: underline;
}

.pro-app-shell .ul-dropzone-spec {
  font-size: 13px;
  color: var(--shell-slate-500);
}

.pro-app-shell .ul-file-input {
  display: none;
}

.pro-app-shell .ul-file-preview {
  margin: 22px;
  padding: 16px 18px;
  background: var(--shell-teal-50);
  border: 1px solid #cce8e3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pro-app-shell .ul-file-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #cce8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-app-shell .ul-file-icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--shell-teal-dark);
}

.pro-app-shell .ul-file-info {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .ul-file-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin-bottom: 2px;
  word-break: break-all;
}

.pro-app-shell .ul-file-meta {
  font-size: 13px;
  color: var(--shell-slate-600);
}

.pro-app-shell .ul-file-remove {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: var(--shell-slate-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
  padding: 0;
}

.pro-app-shell .ul-file-remove:hover {
  background: var(--shell-slate-100);
  color: var(--shell-slate-900);
}

.pro-app-shell .ul-file-remove .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .ul-format-info {
  padding: 18px 22px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .ul-format-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.pro-app-shell .ul-format-fields {
  font-family: Menlo, Consolas, monospace;
  font-size: 14px;
  background: #fff;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-300);
  color: var(--shell-slate-800);
  margin-bottom: 10px;
}

.pro-app-shell .ul-format-note {
  font-size: 14px;
  color: var(--shell-slate-600);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pro-app-shell .ul-sample-link {
  color: var(--shell-teal-dark);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pro-app-shell .ul-sample-link:hover {
  text-decoration: underline;
}

.pro-app-shell .ul-sample-link .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .ul-card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 22px;
  background: var(--shell-slate-50);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .ul-history-table-wrap {
  overflow-x: auto;
}

.pro-app-shell .ul-history-table {
  width: 100%;
  border-collapse: collapse;
}

.pro-app-shell .ul-history-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .ul-history-table thead th.col-records {
  text-align: center;
}

.pro-app-shell .ul-history-table thead th.col-status {
  width: 130px;
}

.pro-app-shell .ul-history-table thead th.col-actions {
  width: 100px;
  text-align: right;
}

.pro-app-shell .ul-history-table tbody td {
  padding: 14px 22px;
  font-size: 15px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: #fff;
}

.pro-app-shell .ul-history-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .ul-history-table tbody td.col-date {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pro-app-shell .ul-history-table tbody td.col-records {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.pro-app-shell .ul-history-table tbody td.col-actions {
  text-align: right;
  white-space: nowrap;
}

.pro-app-shell .ul-history-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.pro-app-shell .ul-history-status .material-symbols-outlined {
  font-size: 14px;
}

.pro-app-shell .ul-history-status.success {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .ul-history-status.partial {
  background: #fef3c7;
  color: #92400e;
}

.pro-app-shell .ul-history-status.failed {
  background: #fee2e2;
  color: #b91c1c;
}

.pro-app-shell .ul-history-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--shell-slate-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0;
  vertical-align: middle;
}

.pro-app-shell .ul-history-action-btn:hover {
  background: var(--shell-slate-200);
  color: var(--shell-slate-800);
}

.pro-app-shell .ul-history-action-btn .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .ul-history-filename {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--shell-slate-800);
  font-weight: 600;
}

.pro-app-shell .ul-history-filename .material-symbols-outlined {
  font-size: 18px;
  color: var(--shell-slate-400);
}

.pro-app-shell .ul-history-empty {
  text-align: center;
  padding: 56px 22px;
  color: var(--shell-slate-500);
  font-size: 15px;
  background: #fff !important;
}

.pro-app-shell .ul-history-empty .material-symbols-outlined {
  font-size: 40px;
  color: var(--shell-slate-300);
  display: block;
  margin: 0 auto 8px;
}

.pro-app-shell .ul-hidden {
  display: none !important;
}
table.cm-nps-scale-preview.expense-project-table {
  width: 100% !important;
  display: inline;
  max-width: 500px !important;
}

/* ============================================================
   Product detail page (browse catalog → product)
   ============================================================ */
.pro-app-shell .product-detail {
  max-width: 1600px;
  margin: 0 auto;
  font-family: var(--shell-font-family) !important;
}
.pro-app-shell .product-detail h3{
  color: var(--shell-slate-900) !important;
  font-size: 22px !important;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.pro-app-shell .product-detail p, .pro-app-shell .product-detail .pd-description-body{
  font-family: var(--shell-font-family) !important;
  line-height: 1.65 !important;
  margin: 0 0 14px !important;
  color: var(--shell-slate-700) !important;
}
.pro-app-shell .product-detail li{
  font-size: 15px !important;
  color: var(--shell-slate-700) !important;
  line-height: 1.65 !important;
  margin-bottom: 6px !important;
}

.pro-app-shell .product-detail .pd-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pro-app-shell .product-detail .pd-hero {
    grid-template-columns: 1fr;
  }
}

/* Body row — tabs (left) + technical details sidebar (right), ref HTML layout */
.pro-app-shell .product-detail .pd-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.pro-app-shell .product-detail .pd-body-main {
  min-width: 0;
}

.pro-app-shell .product-detail .pd-body-main > .pd-tabs-card {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .pro-app-shell .product-detail .pd-body {
    grid-template-columns: 1fr;
  }
}

.pro-app-shell .product-detail .pd-tech-body {
  padding: 8px 0;
}

.pro-app-shell .product-detail .pd-tech-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  font-size: 14px;
}

.pro-app-shell .product-detail .pd-tech-row + .pd-tech-row {
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .product-detail .pd-tech-label {
  color: var(--shell-slate-600);
  font-weight: 600;
}

.pro-app-shell .product-detail .pd-tech-value {
  color: var(--shell-slate-900);
  font-weight: 700;
  text-align: right;
}

.pro-app-shell .product-detail .pd-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.pro-app-shell .product-detail .pd-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  flex-wrap: wrap;
}

.pro-app-shell .product-detail .pd-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  color: #fff;
}

.pro-app-shell .product-detail .pd-card-title .material-symbols-outlined {
  font-size: 22px;
  opacity: 0.9;
  color: inherit;
}

.pro-app-shell .product-detail .pd-identity {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  min-height: 100%;
}

.pro-app-shell .product-detail .pd-identity-mark {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.pro-app-shell .product-detail .pd-identity-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.pro-app-shell .product-detail .pd-identity-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin: 0 auto;
  object-fit: contain;
}

.pro-app-shell .product-detail .pd-sale-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pro-app-shell .product-detail .pd-identity-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-800);
  text-align: center;
}

.pro-app-shell .product-detail .pd-sample-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  background: #fff;
  color: var(--shell-teal-dark);
  border: 1.5px solid var(--shell-teal-dark);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}

.pro-app-shell .product-detail .pd-sample-btn:hover {
  background: var(--shell-teal-dark);
  color: #fff;
}

.pro-app-shell .product-detail .pd-sample-btn .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .product-detail .pd-purchase-body {
  padding: 24px 28px 28px;
}

.pro-app-shell .product-detail .pd-purchase-meta {
  margin-bottom: 18px;
}

.pro-app-shell .product-detail .pd-purchase-meta h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-slate-600);
}

.pro-app-shell .product-detail .pd-pricing {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  border: 0 !important;
}

.pro-app-shell .product-detail .pd-pricing th,
.pro-app-shell .product-detail .pd-pricing td {
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--shell-slate-200);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.pro-app-shell .product-detail .pd-pricing th:first-child,
.pro-app-shell .product-detail .pd-pricing td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--shell-slate-700);
  width: 110px;
}

.pro-app-shell .product-detail .pd-pricing thead th {
  background: var(--shell-slate-50);
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-700);
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .product-detail .pd-pricing tbody tr:last-child td {
  border-bottom: none;
}

.pro-app-shell .product-detail .pd-pricing .tier-discount {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--shell-teal-dark);
  margin-top: 3px;
}

.pro-app-shell .product-detail .pd-pricing .price {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-800);
}

.pro-app-shell .product-detail .pd-pricing .sale-strike {
  display: block;
  font-size: 13px;
  color: var(--shell-slate-400);
  text-decoration: line-through;
  font-weight: 500;
}

.pro-app-shell .product-detail .pd-pricing .sale-price {
  display: block;
  color: #dc2626;
  font-weight: 700;
}

.pro-app-shell .product-detail .pd-purchase-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  margin-top: 15px;
}
.pro-app-shell .product-detail .productTable{
  border: 0 !important;
}

.pro-app-shell .product-detail .pd-qty {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.pro-app-shell .product-detail .pd-qty-btn {
  width: 38px;
  background: #1e3a5f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.pro-app-shell .product-detail .pd-qty-btn:hover {
  background: #162e4a;
}

.pro-app-shell .product-detail .pd-qty-input {
  width: 56px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--shell-slate-800);
  outline: none;
  box-shadow: none;
  height: 40px;
  padding: 0;
  margin: 0;
}

.pro-app-shell .product-detail .pd-add-to-cart {
  background: #fbbf24 !important;
  color: var(--shell-slate-900) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
  letter-spacing: 0.005em;
  width: auto !important;
}

.pro-app-shell .product-detail .pd-add-to-cart:hover {
  background: #f59e0b !important;
}

.pro-app-shell .product-detail .pd-add-to-cart svg,
.pro-app-shell .product-detail .pd-add-to-cart .material-symbols-outlined {
  flex-shrink: 0;
}

.pro-app-shell .product-detail .pd-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--shell-slate-200);
}

.pro-app-shell .product-detail .pd-total-label {
  font-size: 14px;
  color: var(--shell-slate-600);
  font-weight: 600;
}

.pro-app-shell .product-detail .pd-total-amount,
.pro-app-shell .product-detail .pd-total .sFinal-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.015em;
}

.pro-app-shell .product-detail .pd-total .loader {
  margin: 0 auto 0 0;
}

/* Product detail tabs — ref pd-card-title + dash cc-card-tabs in header */
.pro-app-shell .product-detail > .pd-tabs-card,
.pro-app-shell .product-detail > .pd-body {
  margin-top: 24px;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs.nav.nav-tabs {
  border: 0 !important;
  border-bottom: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  flex-wrap: wrap !important;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li {
  margin: 0 !important;
  float: none !important;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li > a.cc-tab {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  line-height: normal !important;
  text-transform: capitalize !important;
  font-family: var(--shell-font-family) !important;
  letter-spacing: normal !important;
  position: static !important;
  white-space: nowrap !important;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li.active > a.cc-tab,
.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li > a.cc-tab:hover,
.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li > a.cc-tab:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li > a.cc-tab:before,
.pro-app-shell .product-detail .pd-tabs-card .pd-card-header .cc-card-tabs > li > a.cc-tab:after {
  display: none !important;
  content: none !important;
}

.pro-app-shell .product-detail .pd-tabs-card .cc-tab-content {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
}

.pro-app-shell .product-detail .pd-tabs-card .cc-tab-content .tab-pane {
  padding: 28px 32px;
}

.pro-app-shell .product-detail .pd-tabs-card .cc-tab-content .card-box {
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* Product description body — uses --shell-font-family (overrides legacy Open Sans) */
.pro-app-shell .product-detail .pd-description-body,
.pro-app-shell .product-detail .pd-description-body :is(
  p, li, td, th, span, div, a, h2, h3, h4, h5, h6, .proTitle
) {
  font-family: var(--shell-font-family) !important;
}

.pro-app-shell .product-detail .pd-description-body h2 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--shell-slate-900) !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.015em;
  line-height: 1.35 !important;
}

.pro-app-shell .product-detail .pd-description-body h3,
.pro-app-shell .product-detail .pd-description-body .proTitle {
    font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--shell-slate-800) !important;
  margin: 26px 0 10px !important;
  letter-spacing: -0.005em;
  line-height: 1.4 !important;
}

.pro-app-shell .product-detail .pd-description-body h4,
.pro-app-shell .product-detail .pd-description-body h5,
.pro-app-shell .product-detail .pd-description-body h6 {
  color: var(--shell-slate-800) !important;
  font-weight: 700 !important;
}

.pro-app-shell .product-detail .pd-description-body p {
  font-size: 15px !important;
  color: var(--shell-slate-700) !important;
  line-height: 1.65 !important;
  margin: 0 0 14px !important;
  font-weight: 400 !important;
}

.pro-app-shell .product-detail .pd-description-body ul,
.pro-app-shell .product-detail .pd-description-body ol {
  margin: 0 0 14px !important;
  padding-left: 22px !important;
}

.pro-app-shell .product-detail .pd-description-body li {
  font-size: 15px !important;
  color: var(--shell-slate-700) !important;
  line-height: 1.65 !important;
  margin-bottom: 6px !important;
}

.pro-app-shell .product-detail .pd-description-body em {
  font-style: italic;
}

.pro-app-shell .product-detail .pd-tabs-card .pd-card-title,
.pro-app-shell .product-detail .pd-card-title {
  font-family: var(--shell-font-family) !important;
}

.pro-app-shell .product-detail .pd-description-body .borderBox {
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.pro-app-shell .product-detail .pd-description-body .borderBox p {
  margin: 0 !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  border-bottom: 1px solid var(--shell-slate-200);
  color: var(--shell-slate-800) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

.pro-app-shell .product-detail .pd-description-body .borderBox p:last-child {
  border-bottom: none;
}

.pro-app-shell .product-detail .pd-description-body .borderBox p span {
  float: right;
  font-weight: 700 !important;
  color: var(--shell-slate-900) !important;
}

.pdp-info .col-md-7 {
  width: 100% !important;
}

.pdp-info .row {
  margin: 0 !important;
}

.pd-qty.quantity-control #quantity {
  border: 0 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .pro-app-shell .product-detail .pd-purchase-action {
    justify-content: stretch;
  }

  .pro-app-shell .product-detail .pd-add-to-cart {
    width: 100% !important;
  }

  .pro-app-shell .product-detail .pd-tabs-card .pd-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pro-app-shell .product-detail .pd-tabs-card .cc-tab-content .tab-pane {
    padding: 20px 16px;
  }
}

/* ============================================================
   Download Reports page (dr-* — page-specific only)
   ============================================================ */
.page-downloadreports .dr-mat-icon,
.pro-app-shell .dr-mat-icon {
  font-family: 'Material Symbols Outlined', sans-serif !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: var(--shell-teal-dark) !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

.page-downloadreports .dr-eligibility-link .dr-mat-icon,
.pro-app-shell .dr-eligibility-link .dr-mat-icon {
  font-size: 16px !important;
}

.page-downloadreports .dr-eligibility,
.pro-app-shell .dr-eligibility {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.page-downloadreports .dr-eligibility-icon,
.pro-app-shell .dr-eligibility-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-downloadreports .dr-eligibility-icon .material-symbols-outlined,
.page-downloadreports .dr-eligibility-icon .material-icons,
.page-downloadreports .dr-eligibility-icon .dr-mat-icon,
.pro-app-shell .dr-eligibility-icon .material-symbols-outlined,
.pro-app-shell .dr-eligibility-icon .material-icons,
.pro-app-shell .dr-eligibility-icon .dr-mat-icon {
  font-size: 20px !important;
  color: var(--shell-teal-dark) !important;
}

.page-downloadreports .dr-eligibility-body,
.pro-app-shell .dr-eligibility-body {
  flex: 1;
  min-width: 0;
}

.page-downloadreports .dr-eligibility-headline,
.pro-app-shell .dr-eligibility-headline {
  font-size: 15px;
  color: var(--shell-slate-700);
  margin: 2px 0 4px;
  line-height: 1.45;
}

.page-downloadreports .dr-eligibility-headline strong,
.pro-app-shell .dr-eligibility-headline strong {
  color: var(--shell-slate-900);
  font-weight: 700;
}

.page-downloadreports .dr-eligibility-sub,
.pro-app-shell .dr-eligibility-sub {
  font-size: 14px;
  color: var(--shell-slate-500);
  line-height: 1.5;
}

.page-downloadreports .dr-eligibility-link,
.pro-app-shell .dr-eligibility-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--shell-teal-dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.page-downloadreports .dr-eligibility-link:hover,
.pro-app-shell .dr-eligibility-link:hover {
  color: var(--shell-teal);
  text-decoration: none;
}

.page-downloadreports .dr-eligibility-link:hover .dr-eligibility-link-text,
.pro-app-shell .dr-eligibility-link:hover .dr-eligibility-link-text {
  color: var(--shell-teal);
  text-decoration: underline;
}

.page-downloadreports .dr-eligibility-link .material-symbols-outlined,
.page-downloadreports .dr-eligibility-link .material-icons,
.page-downloadreports .dr-eligibility-link .dr-mat-icon,
.pro-app-shell .dr-eligibility-link .material-symbols-outlined,
.pro-app-shell .dr-eligibility-link .material-icons,
.pro-app-shell .dr-eligibility-link .dr-mat-icon {
  font-size: 16px !important;
  color: var(--shell-teal-dark) !important;
  text-decoration: none !important;
}

.page-downloadreports .dr-eligibility-link:hover .material-symbols-outlined,
.page-downloadreports .dr-eligibility-link:hover .material-icons,
.page-downloadreports .dr-eligibility-link:hover .dr-mat-icon,
.pro-app-shell .dr-eligibility-link:hover .material-symbols-outlined,
.pro-app-shell .dr-eligibility-link:hover .material-icons,
.pro-app-shell .dr-eligibility-link:hover .dr-mat-icon,
.page-downloadreports .dr-eligibility-link:hover .br-mat-icon,
.pro-app-shell .dr-eligibility-link:hover .br-mat-icon {
  color: var(--shell-teal-dark) !important;
  text-decoration: none !important;
}

.page-downloadreports .dr-eligibility-link.dr-hidden,
.pro-app-shell .dr-eligibility-link.dr-hidden {
  display: none !important;
}

.pro-app-shell .dr-page .ar-bulk-bar {
  background: var(--shell-slate-50);
  border-bottom-color: var(--shell-slate-200);
}

.pro-app-shell .dr-page .ar-bulk-bar.has-selection {
  background: var(--shell-teal-50);
  border-bottom-color: #cce8e3;
}

.pro-app-shell .dr-page .ar-bulk-count {
  min-width: 5.5rem;
}

.pro-app-shell .dr-page .ar-bulk-count.is-empty {
  font-weight: 600;
  color: var(--shell-slate-400);
}

.pro-app-shell .dr-page .ar-bulk-bar.has-selection .ar-bulk-count {
  color: var(--shell-teal-dark);
}

.pro-app-shell .dr-bulk-types {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--shell-slate-200);
}

.pro-app-shell .dr-page .ar-bulk-bar.has-selection .dr-bulk-types {
  border-left-color: #cce8e3;
}

.pro-app-shell .dr-bulk-type-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.pro-app-shell .dr-bulk-type-label > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-700);
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.pro-app-shell .dr-bulk-type-label input[type="checkbox"].ar-checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.pro-app-shell .ar-bulk-btn:disabled {
  background: var(--shell-slate-300);
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

.pro-app-shell .ar-bulk-btn:disabled:hover {
  background: var(--shell-slate-300);
}

/* Download Reports — bulk download icon must match white button label (not global dr-mat-icon teal) */
.page-downloadreports #dr-bulk-download .dr-mat-icon,
.page-downloadreports #dr-bulk-download .material-symbols-outlined,
.page-downloadreports .ar-bulk-btn .dr-mat-icon,
.page-downloadreports .ar-bulk-btn .material-symbols-outlined,
.pro-app-shell .dr-page #dr-bulk-download .dr-mat-icon,
.pro-app-shell .dr-page #dr-bulk-download .material-symbols-outlined,
.pro-app-shell .dr-page .ar-bulk-btn .dr-mat-icon,
.pro-app-shell .dr-page .ar-bulk-btn .material-symbols-outlined {
  color: #fff !important;
  font-size: 18px !important;
}

.page-downloadreports .ar-bulk-btn:hover:not(:disabled) .dr-mat-icon,
.page-downloadreports .ar-bulk-btn:hover:not(:disabled) .material-symbols-outlined,
.pro-app-shell .dr-page .ar-bulk-btn:hover:not(:disabled) .dr-mat-icon,
.pro-app-shell .dr-page .ar-bulk-btn:hover:not(:disabled) .material-symbols-outlined {
  color: #fff !important;
}

.page-downloadreports .ar-bulk-btn:disabled .dr-mat-icon,
.page-downloadreports .ar-bulk-btn:disabled .material-symbols-outlined,
.pro-app-shell .dr-page .ar-bulk-btn:disabled .dr-mat-icon,
.pro-app-shell .dr-page .ar-bulk-btn:disabled .material-symbols-outlined {
  color: #fff !important;
}

.pro-app-shell .ar-table thead th.col-completed {
  width: 200px;
}

.pro-app-shell .ar-table tbody td.col-completed {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--shell-slate-600);
}

.pro-app-shell .dr-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dr-fade-in 0.15s ease-out;
}

.pro-app-shell .dr-modal-backdrop.dr-hidden {
  display: none;
}

@keyframes dr-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pro-app-shell .dr-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  width: 420px;
  max-width: 92vw;
  padding: 36px 32px;
  text-align: center;
  animation: dr-pop-in 0.2s ease-out;
}

@keyframes dr-pop-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pro-app-shell .dr-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .dr-modal-icon .material-symbols-outlined {
  font-size: 36px !important;
  color: var(--shell-teal-dark) !important;
}

.pro-app-shell .dr-modal-icon.loading .material-symbols-outlined {
  animation: dr-spin 1s linear infinite;
}

@keyframes dr-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pro-app-shell .dr-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.pro-app-shell .dr-modal-sub {
  font-size: 15px;
  color: var(--shell-slate-500);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pro-app-shell .dr-eligibility {
    flex-wrap: wrap;
  }

  .pro-app-shell .dr-page .ar-bulk-bar {
    flex-wrap: wrap;
  }

  .pro-app-shell .dr-bulk-types {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .pro-app-shell .dr-page .ar-bulk-actions {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   Download ZIP page — reuses ar-card / ar-table / feedback-pagination (Download Reports)
   ============================================================ */

.pro-app-shell .dz-hint {
  font-size: 15px;
  color: var(--shell-slate-600);
  margin-bottom: 20px;
  line-height: 1.55;
}

.pro-app-shell .dz-page .ar-card-title .dz-mat-icon,
.pro-app-shell .dz-page .ar-card-title .material-symbols-outlined {
  font-size: 20px !important;
  opacity: 0.9;
  color: #fff !important;
}

.pro-app-shell .dz-page .ar-table thead th.col-date {
  min-width: 200px;
}

.pro-app-shell .dz-page .ar-table thead th.col-status {
  min-width: 140px;
  text-align: left;
}

.pro-app-shell .dz-page .ar-table tbody td.col-status {
  text-align: left;
}

.pro-app-shell .dz-page .ar-table thead th.col-filename {
  min-width: 220px;
}

.pro-app-shell .dz-page .ar-table thead th.col-participants,
.pro-app-shell .dz-page .ar-table tbody td.col-participants {
  min-width: 130px;
  text-align: right;
}

.pro-app-shell .dz-page .ar-table thead th.col-action,
.pro-app-shell .dz-page .ar-table tbody td.col-action {
  min-width: 100px;
  text-align: right;
}

.pro-app-shell .dz-page .ar-table tbody td.col-date {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--shell-slate-600);
}

.pro-app-shell .dz-page .ar-table tbody td.col-filename {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 13px;
  color: var(--shell-slate-800);
}

.pro-app-shell .dz-page .ar-table tbody td.col-participants,
.pro-app-shell .dz-page .ar-table.dz-zip-table tbody td:nth-child(4) {
  font-variant-numeric: tabular-nums;
  font-weight: 700 !important;
  color: var(--shell-slate-800);
}

.pro-app-shell .dz-page .ar-table .dz-participants-count {
  font-weight: 700 !important;
  color: var(--shell-slate-800);
}

.pro-app-shell .dz-page .ar-table thead th .sortable .dz-mat-icon,
.pro-app-shell .dz-page .ar-table thead th .sortable .material-symbols-outlined {
  font-size: 16px !important;
  color: var(--shell-slate-400) !important;
}

.pro-app-shell .dz-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Status icons — label must be a nested span in JS (r template drops icon if text is a sibling) */
.pro-app-shell .dz-page .dz-status .dz-status-icon,
.pro-app-shell .dz-page .dz-status .material-symbols-outlined,
.pro-app-shell .dz-page .dz-status .material-icons {
  font-size: 14px !important;
  width: 14px;
  height: 14px;
  line-height: 1;
  color: inherit !important;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pro-app-shell .dz-status.completed {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .dz-status.generating {
  background: #fef3c7;
  color: #92400e;
}

.pro-app-shell .dz-page .dz-status.generating .dz-status-icon,
.pro-app-shell .dz-page .dz-status.generating .material-symbols-outlined {
  animation: dz-spin 1.5s linear infinite;
  transform-origin: center center;
}

@keyframes dz-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pro-app-shell .dz-status.failed {
  background: #fee2e2;
  color: #991b1b;
}

.pro-app-shell .dz-download-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  color: var(--shell-teal-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0;
}

.pro-app-shell .dz-download-btn:hover {
  border-color: var(--shell-teal);
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .dz-page .dz-download-btn .material-symbols-outlined,
.pro-app-shell .dz-page .dz-download-btn .material-icons {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  color: inherit !important;
}

.pro-app-shell .dz-action-placeholder {
  font-size: 13px;
  color: var(--shell-slate-400);
  font-style: italic;
}

.pro-app-shell .dz-page .page-context-pill .dz-mat-icon,
.pro-app-shell .dz-page .page-actions .dz-mat-icon {
  font-size: 18px !important;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.page-downloadzip .dz-mat-icon,
.pro-app-shell .dz-mat-icon {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

@media (max-width: 768px) {
  .pro-app-shell .dz-page .ar-toolbar {
    flex-wrap: wrap;
  }

  .pro-app-shell .dz-page .ar-search input {
    width: 100%;
    min-width: 0;
  }

  .pro-app-shell .dz-page .feedback-pagination {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ============================================================
   Send Results (batchrelease) — reuses ar-* / dr-eligibility / dr-modal
   ============================================================ */

.page-batchrelease .br-mat-icon,
.pro-app-shell .br-mat-icon {
  font-size: 18px !important;
  line-height: 1;
  vertical-align: middle;
}

.page-batchrelease .br-eligibility-link .br-mat-icon,
.pro-app-shell .br-eligibility-link .br-mat-icon {
  font-size: 16px !important;
}

.pro-app-shell .br-page .ar-bulk-bar {
  background: var(--shell-slate-50);
  border-bottom-color: var(--shell-slate-200);
}

.pro-app-shell .br-page .ar-bulk-bar.has-selection {
  background: var(--shell-teal-50);
  border-bottom-color: #cce8e3;
}

.pro-app-shell .br-page .ar-bulk-count.is-empty {
  font-weight: 600;
  color: var(--shell-slate-400);
}

.page-batchrelease #br-bulk-send .br-mat-icon,
.page-batchrelease #br-bulk-send .material-symbols-outlined,
.page-batchrelease .ar-bulk-btn .br-mat-icon,
.page-batchrelease .ar-bulk-btn .material-symbols-outlined,
.pro-app-shell .br-page #br-bulk-send .br-mat-icon,
.pro-app-shell .br-page #br-bulk-send .material-symbols-outlined,
.pro-app-shell .br-page .ar-bulk-btn .br-mat-icon,
.pro-app-shell .br-page .ar-bulk-btn .material-symbols-outlined {
  color: #fff !important;
  font-size: 18px !important;
}

.page-batchrelease .ar-bulk-btn:hover:not(:disabled) .br-mat-icon,
.page-batchrelease .ar-bulk-btn:hover:not(:disabled) .material-symbols-outlined,
.pro-app-shell .br-page .ar-bulk-btn:hover:not(:disabled) .br-mat-icon,
.pro-app-shell .br-page .ar-bulk-btn:hover:not(:disabled) .material-symbols-outlined {
  color: #fff !important;
}

.page-batchrelease .ar-bulk-btn:disabled .br-mat-icon,
.page-batchrelease .ar-bulk-btn:disabled .material-symbols-outlined,
.pro-app-shell .br-page .ar-bulk-btn:disabled .br-mat-icon,
.pro-app-shell .br-page .ar-bulk-btn:disabled .material-symbols-outlined {
  color: #fff !important;
}

.page-batchrelease input[type="checkbox"].ar-checkbox,
.pro-app-shell .br-page input[type="checkbox"].ar-checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--shell-teal-dark);
}

@media (max-width: 768px) {
  .pro-app-shell .br-page .ar-bulk-bar {
    flex-wrap: wrap;
  }

  .pro-app-shell .br-page .ar-bulk-actions {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   Purchase Evidentra — reuses ar-* / dr-eligibility; pe-* only
   ============================================================ */

.pe-hidden {
  display: none !important;
}

body.pe-modal-open {
  overflow: hidden;
}

.page-purchaseevidentra .pe-mat-icon,
.pro-app-shell .pe-mat-icon {
  font-size: 18px !important;
  line-height: 1;
  vertical-align: middle;
}

/* About panel */
.pro-app-shell .pe-about {
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 20px;
}

.pro-app-shell .pe-about-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--shell-teal-50) 0%, #e0fbf6 100%);
  border-radius: 11px;
  color: var(--shell-teal-dark);
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.pro-app-shell .pe-about-icon .material-symbols-outlined {
  font-size: 24px;
}

.pro-app-shell .pe-about-body {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .pe-about-title {
  color: var(--shell-slate-900);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 2px 0 4px;
}

.pro-app-shell .pe-about-copy {
  color: var(--shell-slate-600);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
}

.pro-app-shell .pe-about-link {
  color: var(--shell-teal-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.pro-app-shell .pe-about-link:hover {
  color: var(--shell-teal);
  text-decoration: underline;
}

.pro-app-shell .pe-about-link .material-symbols-outlined {
  font-size: 14px;
  margin-left: 2px;
  vertical-align: -2px;
}

/* Cost in bulk bar */
.pro-app-shell .pe-cost {
  align-items: baseline;
  background: #fff;
  border: 1px solid #cce8e3;
  border-radius: 8px;
  color: var(--shell-slate-600);
  display: inline-flex;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  gap: 6px;
  padding: 6px 12px;
}

.pro-app-shell .pe-cost-total {
  color: var(--shell-slate-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pro-app-shell .pe-cost-period {
  color: var(--shell-slate-500);
  font-size: 12px;
}

/* Subscription status */
.pro-app-shell .pe-status {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-app-shell .pe-status .material-symbols-outlined {
  font-size: 13px;
}

.pro-app-shell .pe-status.available {
  background: var(--shell-slate-100);
  color: var(--shell-slate-700);
}

.pro-app-shell .pe-status.active {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .pe-status-meta {
  color: var(--shell-slate-400);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  margin-left: 6px;
  white-space: nowrap;
}

.pro-app-shell .pe-page .ar-table tbody tr.is-disabled td {
  opacity: 0.55;
}

.pro-app-shell .pe-page .ar-table tbody tr.is-disabled .ar-checkbox {
  cursor: not-allowed;
}

.pro-app-shell .pe-page .ar-bulk-count.is-empty {
  color: var(--shell-slate-400);
  font-weight: 600;
}

/* Purchase modal */
.pro-app-shell .pe-modal-backdrop {
  align-items: center;
  animation: pe-fade-in 0.15s ease-out;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
}

@keyframes pe-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pro-app-shell .pe-modal {
  animation: pe-pop-in 0.2s ease-out;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  max-height: 90vh;
  max-width: 100%;
  overflow-y: auto;
  width: 560px;
}

@keyframes pe-pop-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.pro-app-shell .pe-modal-header {
  align-items: center;
  border-bottom: 1px solid var(--shell-slate-200);
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
}

.pro-app-shell .pe-modal-header-title {
  color: var(--shell-slate-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.pro-app-shell .pe-modal-close {
  align-items: center;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--shell-slate-400);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 4px;
}

.pro-app-shell .pe-modal-close:hover {
  background: var(--shell-slate-100);
  color: var(--shell-slate-700);
}

.pro-app-shell .pe-modal-close .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .pe-modal-body {
  padding: 24px;
}

.pro-app-shell .pe-modal-heading {
  color: var(--shell-slate-900);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.pro-app-shell .pe-modal-selection {
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  border-radius: 11px;
  margin-bottom: 18px;
  padding: 16px 18px;
}

.pro-app-shell .pe-modal-selection-label {
  color: var(--shell-slate-500);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pro-app-shell .pe-modal-selection-row {
  align-items: baseline;
  border-top: 1px solid var(--shell-slate-200);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 8px;
}

.pro-app-shell .pe-modal-plan {
  color: var(--shell-slate-900);
  font-size: 16px;
  font-weight: 700;
}

.pro-app-shell .pe-modal-plan-meta {
  color: var(--shell-slate-500);
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
}

.pro-app-shell .pe-modal-price {
  color: var(--shell-teal-dark);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pro-app-shell .pe-modal-price-period {
  color: var(--shell-slate-500);
  font-size: 13px;
  font-weight: 600;
}

.pro-app-shell .pe-modal-section-title {
  color: var(--shell-slate-900);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}

.pro-app-shell .pe-modal-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.pro-app-shell .pe-modal-includes li {
  align-items: flex-start;
  color: var(--shell-slate-700);
  display: flex;
  font-size: 14px;
  gap: 10px;
  line-height: 1.5;
}

.pro-app-shell .pe-modal-includes li .material-symbols-outlined {
  color: var(--shell-teal);
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 1px;
}

.pro-app-shell .pe-modal-note {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 9px;
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
  padding: 12px 14px;
}

.pro-app-shell .pe-modal-note .material-symbols-outlined {
  color: #92400e;
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 1px;
}

.pro-app-shell .pe-modal-note-body {
  color: #78350f;
  font-size: 13px;
  line-height: 1.5;
}

.pro-app-shell .pe-modal-note-body strong {
  color: #78350f;
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.pro-app-shell .pe-modal-note-body p {
  margin: 0;
}

.pro-app-shell .pe-modal-footer {
  align-items: center;
  background: var(--shell-slate-50);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top: 1px solid var(--shell-slate-200);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
}

.pro-app-shell .pe-modal-back {
  background: none;
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  color: var(--shell-slate-700);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
}

.pro-app-shell .pe-modal-back:hover {
  background: #fff;
  border-color: var(--shell-slate-400);
}

.pro-app-shell .pe-commit-btn {
  align-items: center;
  background: #f59e0b;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(245, 158, 11, 0.25);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  padding: 10px 18px;
  transition: background 0.15s ease;
}

.pro-app-shell .pe-commit-btn:hover {
  background: #d97706;
}

.pro-app-shell .pe-commit-btn .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 768px) {
  .pro-app-shell .pe-modal {
    width: 100%;
  }
}

/* ============================================================
   Create Organization — pro-account-create-organization-v1.html
   Page-only (.co-*). Shell, page-header, dr-modal-* are shared.
   Edit layout tokens on .co-page; colors/fonts use :root --shell-* vars.
   ============================================================ */
body.pro-app-shell.page-newclient #content .co-page,
.pro-app-shell .co-page {
  --co-page-max-width: 1100px;
  --co-card-padding-x: 24px;
  --co-card-padding-y-header: 14px;
  --co-body-padding: 28px;
  --co-section-gap: 24px;
  --co-grid-gap: 16px 20px;
  --co-field-gap: 6px;
  --co-footer-padding: 16px 24px;
  --co-select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  font-family: var(--shell-font-family);
  margin: 0 auto;
  max-width: var(--co-page-max-width);
  width: 100%;
}

body.pro-app-shell.page-newclient #content .co-page .co-card,
.pro-app-shell .co-card {
  background: var(--shell-white);
  border: 1px solid var(--shell-slate-300);
  border-radius: var(--shell-radius-lg);
  box-shadow: var(--shell-shadow-card);
  overflow: hidden;
}

body.pro-app-shell.page-newclient #content .co-page .co-card-header,
.pro-app-shell .co-card-header {
  align-items: center;
  background: var(--shell-navy) !important;
  border-top-left-radius: var(--shell-radius-lg);
  border-top-right-radius: var(--shell-radius-lg);
  color: var(--shell-white) !important;
  display: flex !important;
  gap: 10px;
  padding: var(--co-card-padding-y-header) var(--co-card-padding-x);
}

.pro-app-shell .co-card-header .material-symbols-outlined {
  color: var(--shell-white) !important;
  font-size: var(--shell-icon-md) !important;
  opacity: 0.9;
}

.pro-app-shell .co-card-title {
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-lg);
  font-weight: var(--shell-font-weight-bold);
  letter-spacing: -0.005em;
}

.pro-app-shell .co-body {
  padding: var(--co-body-padding) var(--co-body-padding) 8px;
}

.pro-app-shell .co-section {
  padding-bottom: var(--co-section-gap);
}

.pro-app-shell .co-section + .co-section {
  border-top: 1px solid var(--shell-slate-200);
  padding-top: var(--co-section-gap);
}

.pro-app-shell .co-section-header {
  margin-bottom: 16px;
}

.pro-app-shell .co-section-title {
  color: var(--shell-slate-900);
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-base);
  font-weight: var(--shell-font-weight-bold);
  letter-spacing: var(--shell-letter-spacing-caps);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.pro-app-shell .co-section-desc {
  color: var(--shell-slate-500);
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-base);
  line-height: var(--shell-line-height-relaxed);
  margin: 0;
}

body.pro-app-shell.page-newclient #content .co-page .co-grid,
.pro-app-shell .co-grid {
  display: grid !important;
  gap: var(--co-grid-gap);
  grid-template-columns: 1fr 1fr;
}

body.pro-app-shell.page-newclient #content .co-page .co-grid-3,
.pro-app-shell .co-grid-3 {
  display: grid !important;
  gap: var(--co-grid-gap);
  grid-template-columns: 1.4fr 1fr 0.8fr;
}

body.pro-app-shell.page-newclient #content .co-page .co-grid-3-spaced,
.pro-app-shell .co-grid-3-spaced {
  margin-top: 16px;
}

body.pro-app-shell.page-newclient #content .co-page .co-section-title.co-label-inline,
.pro-app-shell .co-section-title.co-label-inline {
  align-items: center;
  display: inline-flex !important;
  gap: 6px;
}

body.pro-app-shell.page-newclient #content .co-page .co-grid-full,
.pro-app-shell .co-grid-full {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  body.pro-app-shell.page-newclient #content .co-page .co-grid,
  body.pro-app-shell.page-newclient #content .co-page .co-grid-3,
  .pro-app-shell .co-grid,
  .pro-app-shell .co-grid-3 {
    grid-template-columns: 1fr;
  }
}

body.pro-app-shell.page-newclient #content .co-page .co-field,
.pro-app-shell .co-field {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  gap: var(--co-field-gap);
  margin: 0;
  min-width: 0;
}

body.pro-app-shell.page-newclient #content .co-page label.co-label,
.pro-app-shell .co-label {
  align-items: center;
  color: var(--shell-slate-700);
  display: block !important;
  float: none !important;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-semibold);
  gap: 4px;
  line-height: var(--shell-line-height-tight);
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: auto !important;
}

body.pro-app-shell.page-newclient #content .co-page label.co-label.co-label-inline,
.pro-app-shell .co-label.co-label-inline {
  display: inline-flex !important;
}

body.pro-app-shell.page-newclient #content .co-page label.co-label.co-label-required,
.pro-app-shell label.co-label.co-label-required {
  display: inline-flex !important;
}

body.pro-app-shell.page-newclient #content .co-page label.co-label.co-label-required::after,
.pro-app-shell label.co-label.co-label-required::after {
  color: var(--shell-danger);
  content: "*";
  font-weight: var(--shell-font-weight-bold);
  margin-left: 2px;
}

.pro-app-shell .co-label-optional {
  color: var(--shell-slate-400);
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-xs);
  font-weight: var(--shell-font-weight-medium);
  letter-spacing: var(--shell-letter-spacing-caps);
  margin-left: 4px;
  text-transform: uppercase;
}

/* Shared field control base (inputs + selects) */
body.pro-app-shell.page-newclient #content .co-page input.co-input,
body.pro-app-shell.page-newclient #content .co-page select.co-select,
.pro-app-shell .co-page .co-input,
.pro-app-shell .co-page .co-select,
.pro-app-shell .co-input,
.pro-app-shell .co-select,
.pro-app-shell .co-page input.form-control,
.pro-app-shell .co-page select.form-control {
  background-color: var(--shell-white) !important;
  border: 1px solid var(--shell-slate-300) !important;
  border-radius: var(--shell-radius-sm) !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  color: var(--shell-slate-900) !important;
  display: block !important;
  float: none !important;
  font-family: var(--shell-font-family) !important;
  font-size: var(--shell-font-size-base) !important;
  height: auto !important;
  line-height: var(--shell-line-height-base) !important;
  margin: 0 !important;
  max-width: 100% !important;
  transition: border-color var(--shell-transition-fast), box-shadow var(--shell-transition-fast);
  width: 100% !important;
}

body.pro-app-shell.page-newclient #content .co-page input.co-input,
.pro-app-shell .co-page .co-input,
.pro-app-shell .co-input,
.pro-app-shell .co-page input.form-control {
  padding: 10px 12px !important;
}

body.pro-app-shell.page-newclient #content .co-page select.co-select,
.pro-app-shell .co-page .co-select,
.pro-app-shell .co-select,
.pro-app-shell .co-page select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: var(--co-select-chevron) !important;
  background-position: right 12px center !important;
  background-repeat: no-repeat !important;
  background-size: 12px 12px !important;
  cursor: pointer;
  padding: 10px 32px 10px 12px !important;
}

.pro-app-shell .co-input::placeholder {
  color: var(--shell-slate-400);
}

body.pro-app-shell.page-newclient #content .co-page .co-input:focus,
body.pro-app-shell.page-newclient #content .co-page .co-select:focus,
.pro-app-shell .co-page .co-input:focus,
.pro-app-shell .co-page .co-select:focus,
.pro-app-shell .co-input:focus,
.pro-app-shell .co-select:focus,
.pro-app-shell .co-page input.form-control:focus,
.pro-app-shell .co-page select.form-control:focus {
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px var(--shell-teal-focus-ring);
  outline: none;
}

body.pro-app-shell.page-newclient #content .co-page .co-input.has-error,
body.pro-app-shell.page-newclient #content .co-page .co-select.has-error,
.pro-app-shell .co-page .co-input.has-error,
.pro-app-shell .co-page .co-select.has-error,
.pro-app-shell .co-input.has-error,
.pro-app-shell .co-select.has-error,
.pro-app-shell .co-page input.form-control.has-error,
.pro-app-shell .co-page select.form-control.has-error {
  border-color: var(--shell-danger);
}

body.pro-app-shell.page-newclient #content .co-page .co-input.has-error:focus,
body.pro-app-shell.page-newclient #content .co-page .co-select.has-error:focus,
.pro-app-shell .co-input.has-error:focus,
.pro-app-shell .co-select.has-error:focus {
  box-shadow: 0 0 0 3px var(--shell-danger-focus-ring);
}

.pro-app-shell .co-helper {
  color: var(--shell-slate-500);
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-sm);
}

.pro-app-shell .co-error {
  color: var(--shell-danger);
  display: none;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-sm);
  font-weight: var(--shell-font-weight-medium);
  line-height: var(--shell-line-height-base);
  margin: 0;
}

.pro-app-shell .co-error.is-visible {
  display: block;
}

.pro-app-shell .co-footer-required-mark {
  color: var(--shell-danger);
  font-weight: var(--shell-font-weight-bold);
  margin-right: 2px;
}

body.pro-app-shell.page-newclient #content .co-page .co-footer,
.pro-app-shell .co-footer {
  align-items: center;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: var(--co-footer-padding);
}

body.pro-app-shell.page-newclient #content .co-page form {
  display: block;
  margin: 0;
}

.pro-app-shell .co-footer-helper {
  align-items: center;
  color: var(--shell-slate-500);
  display: inline-flex;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  gap: 0;
}

.pro-app-shell .co-footer-required-text {
  color: var(--shell-slate-500);
  font-family: var(--shell-font-family);
}

.pro-app-shell .co-footer-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.pro-app-shell button.co-btn-cancel {
  background: var(--shell-white);
  border: 1px solid var(--shell-slate-300);
  border-radius: var(--shell-radius-sm);
  color: var(--shell-slate-700);
  cursor: pointer;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-base);
  font-weight: var(--shell-font-weight-semibold);
  padding: 9px 18px;
  transition: all var(--shell-transition-fast);
}

.pro-app-shell button.co-btn-cancel:hover {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-400);
}

.pro-app-shell button.co-btn-primary {
  align-items: center;
  background: var(--shell-teal);
  border: 1px solid transparent;
  border-radius: var(--shell-radius-sm);
  box-shadow: var(--shell-shadow-teal-btn);
  color: var(--shell-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-base);
  font-weight: var(--shell-font-weight-bold);
  gap: 7px;
  padding: 10px 20px;
  transition: all var(--shell-transition-fast);
}

.pro-app-shell button.co-btn-primary:hover:not(:disabled) {
  background: var(--shell-teal-dark);
}

.pro-app-shell button.co-btn-primary:disabled {
  background: var(--shell-slate-300);
  box-shadow: none;
  cursor: not-allowed;
}

body.pro-app-shell.page-newclient #content .co-page button.co-btn-primary .material-symbols-outlined,
.pro-app-shell button.co-btn-primary .material-symbols-outlined {
  color: var(--shell-white) !important;
  font-size: var(--shell-icon-sm) !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ============================================================
   Organizations list — table uses dash.js projects-table pattern
   Page-only (.org-page). Shared: cc-card, projects-toolbar, projects-table.
   ============================================================ */
body.pro-app-shell.page-organizations #content .org-page,
.pro-app-shell .org-page {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.pro-app-shell .org-page .org-list-card .cc-card-header {
  justify-content: flex-start;
}

.pro-app-shell .org-page .org-list-panel {
  padding: 0;
}

.pro-app-shell .org-page .org-list-card .projects-pagination {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* Override legacy changes.css (.material-icons { font-size: 60px }) on Organizations */
.pro-app-shell .org-page .material-icons {
  font-size: inherit !important;
  color: inherit !important;
}

.pro-app-shell .org-page .mp-row-action-btn .material-symbols-outlined {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.pro-app-shell .org-page .row-action-btn .material-symbols-outlined {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.pro-app-shell .org-page .projects-search .material-symbols-outlined {
  font-size: 18px !important;
}

.pro-app-shell .org-page .cc-card-header .cc-card-title .material-symbols-outlined {
  color: var(--shell-white) !important;
  font-size: 20px !important;
}
/* Organizations table — column widths + horizontal scroll (ref: .hd-table-wrap) */
.pro-app-shell .org-page .org-table-scroll,
.pro-app-shell .org-page .projects-table-wrap.org-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.pro-app-shell .org-page .org-list-card .cc-card-header,
.pro-app-shell .org-page .org-list-panel,
.pro-app-shell .org-page .org-list-card {
  min-width: 0;
}

.pro-app-shell .org-page #org_list_datatable_wrapper {
  overflow: visible;
  max-width: none;
}

/* Organizations table — column widths match pro-account-organizations-v1_2.html
   ref: ID 150px | Org/Contact/Location flex | Projects 110px right | Actions 160px */
.pro-app-shell .org-page .projects-table.org-table {
  table-layout: fixed;
  width: max-content;
  min-width: max(100%, 900px);
}

.pro-app-shell .org-page .projects-table.org-table col.col-w-id {
  width: 150px;
}

.pro-app-shell .org-page .projects-table.org-table col.col-w-projects {
  width: 110px;
}

.pro-app-shell .org-page .projects-table.org-table col.col-w-actions {
  width: 160px;
}

.pro-app-shell .org-page .projects-table.org-table thead th.col-id,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-id {
  width: 150px !important;
  max-width: 150px;
  min-width: 150px;
}

.pro-app-shell .org-page .projects-table.org-table thead th.col-projects,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-projects {
  width: 110px !important;
  max-width: 110px;
  min-width: 110px;
  text-align: right;
}

.pro-app-shell .org-page .projects-table.org-table thead th.col-actions,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-actions,
.pro-app-shell .org-page .projects-table.org-table tbody td.row-actions-cell {
  width: 160px !important;
  max-width: 160px;
  min-width: 160px;
  text-align: left;
}

.pro-app-shell .org-page .projects-table.org-table .mp-row-actions,
.pro-app-shell .org-page .projects-table.org-table .row-actions {
  justify-content: flex-start;
}

.pro-app-shell .org-page .projects-table.org-table thead th {
  padding: 13px 18px;
}

.pro-app-shell .org-page .projects-table.org-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
}

.pro-app-shell .org-page .projects-table.org-table tbody td.col-id {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--shell-slate-500);
  font-variant-numeric: tabular-nums;
}

/* Ref .col-ticket — ID link (not .project-name-link; that stays bold on .col-org) */
.pro-app-shell .org-page .projects-table.org-table .org-id-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
}

.pro-app-shell .org-page .projects-table.org-table .org-id-link:hover {
  color: var(--shell-slate-700);
}

.pro-app-shell .org-page .projects-table.org-table tbody td.col-org {
  font-weight: 600;
  color: var(--shell-slate-900);
}

.pro-app-shell .org-page .projects-table.org-table tbody td.col-projects {
  font-weight: 600;
  color: var(--shell-teal-dark);
}

.pro-app-shell .org-page .projects-table.org-table thead th.col-org,
.pro-app-shell .org-page .projects-table.org-table thead th.col-contact,
.pro-app-shell .org-page .projects-table.org-table thead th.col-location,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-org,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-contact,
.pro-app-shell .org-page .projects-table.org-table tbody td.col-location {
  min-width: 120px;
}

.pro-app-shell .org-page #org_list_datatable_wrapper table.org-table {
  table-layout: fixed;
  width: max-content;
  min-width: max(100%, 900px);
}

/* ============================================================
   Project Dashboard (pd-*) — pipeline stage tiles
   ============================================================ */
.pro-app-shell .pd-page {
  max-width: 1600px;
  margin: 0 auto;
}

.pro-app-shell .pd-pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.pro-app-shell .pd-stage-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--shell-slate-300);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  transition: all 0.15s;
}

.pro-app-shell .pd-stage-tile:hover {
  border-color: var(--shell-slate-400);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.pro-app-shell .pd-stage-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  gap: 4px;
}

.pro-app-shell .pd-donut-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-app-shell .pd-donut {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.pro-app-shell .pd-donut circle {
  fill: none;
  stroke-width: 8;
}

.pro-app-shell .pd-donut .track {
  stroke: var(--shell-slate-100);
}

.pro-app-shell .pd-donut-text {
  font-size: 18px;
  font-weight: 800;
  fill: var(--shell-slate-900);
  letter-spacing: -0.02em;
}

.pro-app-shell .pd-donut-text.zero {
  fill: var(--shell-slate-400);
}

.pro-app-shell .pd-donut-side {
  flex: 1;
  min-width: 0;
}

.pro-app-shell .pd-stage-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.pro-app-shell .pd-stage-pct {
  font-size: 12px;
  color: var(--shell-slate-400);
  margin-top: 2px;
}

.pro-app-shell .pd-stage-action {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
}

.pro-app-shell .pd-stage-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 7px 10px;
  border-radius: 7px;
  border: 1px solid var(--shell-slate-200);
  background: #fff;
  color: var(--shell-slate-700);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-app-shell .pd-stage-action-btn:hover:not(:disabled) {
  border-color: var(--shell-teal);
  background: var(--shell-teal-50, #f0fdfa);
  color: var(--shell-teal-dark);
}

.pro-app-shell .pd-stage-action-btn:disabled {
  color: var(--shell-slate-300);
  cursor: not-allowed;
  background: var(--shell-slate-50);
}

.pro-app-shell .pd-stage-action-btn:disabled:hover {
  border-color: var(--shell-slate-200);
  background: var(--shell-slate-50);
  color: var(--shell-slate-300);
}

.pro-app-shell .pd-stage-action-btn .material-symbols-outlined {
  font-size: 16px;
  flex-shrink: 0;
}

.pro-app-shell .pd-stage-terminal {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--shell-slate-400);
  font-style: italic;
}

.pro-app-shell .pd-stage-stripe {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

.pro-app-shell .pd-not-invited { stroke: #94a3b8; }
.pro-app-shell .pd-in-progress { stroke: #5eead4; }
.pro-app-shell .pd-completed { stroke: #14b8a6; }
.pro-app-shell .pd-accessed { stroke: #0d9488; }
.pro-app-shell .pd-sent { stroke: #0f766e; }
.pro-app-shell .pd-feedback { stroke: #f59e0b; }

.pro-app-shell .pd-stripe-not-invited { background: #94a3b8; }
.pro-app-shell .pd-stripe-in-progress { background: #5eead4; }
.pro-app-shell .pd-stripe-completed { background: #14b8a6; }
.pro-app-shell .pd-stripe-accessed { background: #0d9488; }
.pro-app-shell .pd-stripe-sent { background: #0f766e; }
.pro-app-shell .pd-stripe-feedback { background: #f59e0b; }

@media (max-width: 1300px) {
  .pro-app-shell .pd-pipeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .pro-app-shell .pd-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pro-app-shell .pd-pipeline {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Shopping Cart — pro-account-shopping-cart-*-v1.html
   (scoped; shell variables only)
   ============================================================ */
.pro-app-shell .cart-page {
  --cart-navy: #1e3a5f;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.pro-app-shell .cart-page .cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1000px) {
  .pro-app-shell .cart-page .cart-grid {
    grid-template-columns: 1fr;
  }
}

.pro-app-shell .cart-page .cart-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--shell-slate-300);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.pro-app-shell .cart-page .cart-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--cart-navy);
  color: #fff;
}

.pro-app-shell .cart-page .cart-card-header .material-symbols-outlined {
  font-size: 20px;
  opacity: 0.9;
}

.pro-app-shell .cart-page .cart-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.pro-app-shell .cart-page .cart-card-meta {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.pro-app-shell .cart-page .cart-card-body {
  padding: 24px;
}

.pro-app-shell .cart-page .cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .cart-page .cart-item + .cart-item {
  padding-top: 22px;
}

.pro-app-shell .cart-page .cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pro-app-shell .cart-page .cart-item-image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pro-app-shell .cart-page .cart-item-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pro-app-shell .cart-page .cart-item-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.pro-app-shell .cart-page .cart-sale-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f59e0b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.pro-app-shell .cart-page .cart-item-details {
  min-width: 0;
}

.pro-app-shell .cart-page .cart-item-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  font-style: italic;
}

.pro-app-shell .cart-page .cart-item-sku {
  font-size: 12px;
  color: var(--shell-slate-500);
  margin: 0 0 14px;
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .cart-page .cart-item-name a {
  color: inherit;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-item-name a:hover {
  color: var(--shell-teal-dark);
}

.pro-app-shell .cart-page .cart-tiers {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  border: 1px solid var(--shell-slate-200);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
}

.pro-app-shell .cart-page .cart-tiers th,
.pro-app-shell .cart-page .cart-tiers td {
  text-align: left;
  padding: 7px 12px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .cart-page .cart-tiers th {
  background: var(--shell-slate-50);
  color: var(--shell-slate-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.pro-app-shell .cart-page .cart-tiers tr:last-child td {
  border-bottom: none;
}

.pro-app-shell .cart-page .cart-tiers tbody tr.active-tier td {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  font-weight: 700;
  position: relative;
}

.pro-app-shell .cart-page .cart-tiers tbody tr.active-tier td:first-child::before {
  content: '▸';
  position: absolute;
  left: 4px;
  color: var(--shell-teal-dark);
}

.pro-app-shell .cart-page .cart-tier-price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--shell-slate-800);
}

.pro-app-shell .cart-page .cart-tier-save {
  color: #15803d;
  font-weight: 600;
}

.pro-app-shell .cart-page .cart-tiers tbody tr.active-tier .cart-tier-save {
  color: var(--shell-teal-dark);
}

.pro-app-shell .cart-page .cart-tier-strike {
  text-decoration: line-through;
  color: var(--shell-slate-500);
  font-weight: 500;
}

.pro-app-shell .cart-page .cart-tier-sale {
  color: #dc2626;
  font-weight: 700;
}

.pro-app-shell .cart-page .cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 180px;
}

.pro-app-shell .cart-page .cart-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--shell-slate-300);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pro-app-shell .cart-page .cart-qty-btn {
  width: 36px;
  border: none;
  background: var(--shell-slate-50);
  color: var(--shell-slate-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s;
}

.pro-app-shell .cart-page .cart-qty-btn:hover:not(:disabled) {
  background: var(--shell-slate-100);
}

.pro-app-shell .cart-page .cart-qty-btn:disabled {
  color: var(--shell-slate-300);
  cursor: not-allowed;
}

.pro-app-shell .cart-page .cart-qty-btn .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .cart-page .cart-qty-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--shell-slate-300);
  border-right: 1px solid var(--shell-slate-300);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--shell-slate-900);
  font-variant-numeric: tabular-nums;
  background: #fff;
  padding: 0;
  -moz-appearance: textfield;
}

.pro-app-shell .cart-page .cart-qty-input:focus {
  outline: none;
}

.pro-app-shell .cart-page .cart-qty-input::-webkit-outer-spin-button,
.pro-app-shell .cart-page .cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pro-app-shell .cart-page .cart-item-subtotal {
  font-size: 18px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .cart-page .cart-item-subtotal-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pro-app-shell .cart-page .cart-item-remove {
  background: none;
  border: none;
  color: var(--shell-slate-500);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-item-remove:hover {
  color: #dc2626;
}

.pro-app-shell .cart-page .cart-item-remove .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .cart-page .cart-card-footer {
  padding: 16px 24px;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  display: flex;
  justify-content: center;
}

.pro-app-shell .cart-page .cart-btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--shell-teal);
  background: #fff;
  color: var(--shell-teal-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-btn-browse:hover {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-btn-browse .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .cart-page .cart-empty-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.pro-app-shell .cart-page .cart-empty-wrap .cart-card {
  width: 100%;
  max-width: 560px;
}

.pro-app-shell .cart-page .cart-empty {
  padding: 48px 32px 40px;
  text-align: center;
}

.pro-app-shell .cart-page .cart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--shell-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--shell-slate-400);
}

.pro-app-shell .cart-page .cart-empty-icon .material-symbols-outlined {
  font-size: 40px;
}

.pro-app-shell .cart-page .cart-empty-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.pro-app-shell .cart-page .cart-empty-sub {
  font-size: 15px;
  color: var(--shell-slate-500);
  margin: 0 auto 22px;
  max-width: 380px;
  line-height: 1.55;
}

.pro-app-shell .cart-page .cart-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: var(--shell-teal);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2);
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-empty-cta:hover {
  background: var(--shell-teal-dark);
  color: #fff;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-empty-cta .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
}

.pro-app-shell .cart-page .cart-summary {
  position: sticky;
  top: 24px;
}

@media (max-width: 1000px) {
  .pro-app-shell .cart-page .cart-summary {
    position: static;
  }
}

.pro-app-shell .cart-page .cart-summary-list {
  padding: 0;
}

.pro-app-shell .cart-page .cart-summary-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .cart-page .cart-summary-item:first-child {
  padding-top: 18px;
}

.pro-app-shell .cart-page .cart-summary-item-name {
  font-size: 14px;
  color: var(--shell-slate-800);
  font-weight: 600;
  font-style: italic;
}

.pro-app-shell .cart-page .cart-summary-item-qty {
  font-size: 12px;
  color: var(--shell-slate-500);
  font-weight: 600;
  margin-left: 6px;
  font-style: normal;
}

.pro-app-shell .cart-page .cart-summary-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-900);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pro-app-shell .cart-page .cart-summary-totals {
  padding: 16px 24px 20px;
}

.pro-app-shell .cart-page .cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--shell-slate-600);
  padding: 4px 0;
}

.pro-app-shell .cart-page .cart-summary-line .num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--shell-slate-800);
}

.pro-app-shell .cart-page .cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 2px solid var(--shell-slate-200);
}

.pro-app-shell .cart-page .cart-summary-total-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pro-app-shell .cart-page .cart-summary-total-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--shell-slate-900);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .cart-page .cart-summary-total-amount .currency {
  font-size: 14px;
  color: var(--shell-slate-500);
  font-weight: 600;
  margin-left: 4px;
}

.pro-app-shell .cart-page .cart-checkout-wrap {
  padding: 0 24px 24px;
}

.pro-app-shell .cart-page .cart-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f59e0b;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(245, 158, 11, 0.25);
  transition: background 0.15s;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-checkout:hover {
  background: #d97706;
  color: #fff;
  text-decoration: none;
}

.pro-app-shell .cart-page .cart-checkout .material-symbols-outlined {
  font-size: 19px;
}

.pro-app-shell .cart-page .cart-checkout-helper {
  font-size: 12px;
  color: var(--shell-slate-500);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   Project List — pro-account-projects-v1_1.html
   Reuses cc-card, projects-toolbar, projects-table (dash.js pattern)
   ============================================================ */
body.pro-app-shell.page-projectlist #content .pl-page,
.pro-app-shell .pl-page {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 32px;
}

.pro-app-shell .pl-page .pl-projects-card .cc-card-header {
  flex-wrap: wrap;
  gap: 12px;
}

.pro-app-shell .pl-page .pl-card-tabs {
  margin-left: auto;
}

.pro-app-shell .pl-page .pl-list-panel {
  padding: 0;
}

.pro-app-shell .pl-page .pl-projects-card .projects-pagination {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .pl-page .pl-projects-card .cc-card-header,
.pro-app-shell .pl-page .pl-list-panel,
.pro-app-shell .pl-page .pl-projects-card {
  min-width: 0;
}

.pro-app-shell .pl-page .pl-table-scroll,
.pro-app-shell .pl-page .projects-table-wrap.pl-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.pro-app-shell .pl-page .pl-table-scroll .dataTables_wrapper {
  overflow: visible;
  max-width: none;
}

/* No DataTables responsive child-row (+) control — use horizontal scroll instead */
.pro-app-shell .pl-page .dtr-control,
.pro-app-shell .pl-page table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
.pro-app-shell .pl-page table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
  display: none !important;
}

/* Table — pro-account-projects-v1_1.html (.hd-table) */
.pro-app-shell .pl-page .pl-projects-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 900px;
  margin-top: 0 !important;
}

.pro-app-shell .pl-page .pl-projects-table thead th {
  text-align: left;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
  vertical-align: middle;
}

.pro-app-shell .pl-page .pl-projects-table thead th.col-type {
  width: 180px;
}

.pro-app-shell .pl-page .pl-projects-table thead th.col-participants {
  width: 130px;
  text-align: right;
}

.pro-app-shell .pl-page .pl-projects-table thead th.col-participants .sortable {
  width: 100%;
  justify-content: flex-end;
}

.pro-app-shell .pl-page .pl-projects-table thead th.col-organization {
  width: 200px;
}

.pro-app-shell .pl-page .pl-projects-table thead th.col-actions {
  width: 170px;
}

.pro-app-shell .pl-page .pl-projects-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: #fff;
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-subject {
  font-weight: 600;
  color: var(--shell-slate-900);
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-subject .project-name-link {
  font-weight: 600;
  font-size: 14px;
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-type {
  font-size: 14px;
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-participants {
  width: 130px;
  text-align: right;
  font-weight: 600;
  color: var(--shell-teal-dark);
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .pl-page .pl-participants-val {
  color: var(--shell-teal-dark);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  background: none;
  padding: 0;
  min-width: 0;
  border-radius: 0;
  font-size: 14px;
}

.pro-app-shell .pl-page .pl-participants-val:hover {
  color: var(--shell-teal-dark);
  text-decoration: underline;
}

.pro-app-shell .pl-page .pl-participants-val.is-zero {
  color: var(--shell-slate-400);
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-organization {
  width: 200px;
}

.pro-app-shell .pl-page .pl-projects-table tbody td.col-actions {
  width: 170px;
}

.pro-app-shell .pl-page .org-empty {
  color: var(--shell-slate-400);
  font-size: 14px;
}

.pro-app-shell .pl-page .mp-row-actions {
  justify-content: flex-start;
}

.pro-app-shell .pl-page .mp-row-action-btn {
  color: var(--shell-slate-500);
}

.pro-app-shell .pl-page .mp-row-action-btn:hover {
  background: var(--shell-slate-200);
  color: var(--shell-slate-800);
}

.pro-app-shell .pl-page .mp-row-action-btn .material-symbols-outlined {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-variant-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  color: inherit !important;
}

.pro-app-shell .pl-page .pl-projects-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .pl-page .pl-projects-table tbody tr:hover td {
  background: var(--shell-slate-50);
}

.pro-app-shell .pl-page .pl-projects-table tbody tr:nth-child(even):hover td {
  background: #d4ece4;
}

/* Navy Projects card header — white folder icon like ref */
.pro-app-shell .pl-page .cc-card-header .cc-card-title .material-symbols-outlined {
  color: #fff !important;
  opacity: 0.9;
  font-size: 20px !important;
}

.pro-app-shell .pl-page .projects-search .material-symbols-outlined {
  font-size: 18px !important;
}

.pro-app-shell .pl-page .page-actions .btn-primary .material-symbols-outlined,
.pro-app-shell .pl-page .page-actions .btn-secondary .material-symbols-outlined {
  font-size: 18px !important;
}

@media (max-width: 900px) {
  .pro-app-shell .pl-page .pl-card-tabs {
    margin-left: 0;
    width: 100%;
  }

  .pro-app-shell .pl-page .pl-projects-card .cc-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Archived Projects — pro-account-archived-projects-v1.html
   Page-only (.arx-page). Reuses shared shell hd/table styles.
   ============================================================ */
body.pro-app-shell.page-archivedprojects #content .arx-page,
.pro-app-shell .arx-page,
body.page-archivedprojects #content .arx-page,
.arx-page {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 32px;
  font-family: var(--shell-font-family);
}

.pro-app-shell .arx-page .arx-card.hd-card {
  background: var(--shell-white);
  border-radius: var(--shell-radius-lg);
  border: 1px solid var(--shell-slate-300);
  box-shadow: var(--shell-shadow-card);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Explicit header styles for archived card (same as ref) */
body.page-archivedprojects #content .arx-page .hd-card-header,
.pro-app-shell .arx-page .hd-card-header,
.arx-page .hd-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

body.page-archivedprojects #content .arx-page .hd-card-header .material-symbols-outlined,
.pro-app-shell .arx-page .hd-card-header .material-symbols-outlined,
.arx-page .hd-card-header .material-symbols-outlined {
  font-size: 20px !important;
  opacity: 0.9;
}

body.page-archivedprojects #content .arx-page .hd-card-title,
.pro-app-shell .arx-page .hd-card-title,
.arx-page .hd-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* Archived toolbar — force ref styles (prevent overrides) */
body.page-archivedprojects #content .arx-page .hd-toolbar,
.pro-app-shell .arx-page .hd-toolbar,
.arx-page .hd-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  gap: 16px;
  flex-wrap: wrap;
}

body.page-archivedprojects #content .arx-page .hd-toolbar-left,
.pro-app-shell .arx-page .hd-toolbar-left,
.arx-page .hd-toolbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

body.page-archivedprojects #content .arx-page .hd-show-entries,
.pro-app-shell .arx-page .hd-show-entries,
.arx-page .hd-show-entries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--shell-slate-600);
}

body.page-archivedprojects #content .arx-page .hd-show-entries select,
.pro-app-shell .arx-page .hd-show-entries select,
.arx-page .hd-show-entries select {
  padding: 5px 10px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--shell-font-family);
  background: var(--shell-white);
  cursor: pointer;
}

body.page-archivedprojects #content .arx-page .hd-search,
.pro-app-shell .arx-page .hd-search,
.arx-page .hd-search {
  position: relative;
}

body.page-archivedprojects #content .arx-page .hd-search .material-symbols-outlined,
.pro-app-shell .arx-page .hd-search .material-symbols-outlined,
.arx-page .hd-search .material-symbols-outlined {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px !important;
  color: var(--shell-slate-400);
  pointer-events: none;
}

body.page-archivedprojects #content .arx-page .hd-search input,
.pro-app-shell .arx-page .hd-search input,
.arx-page .hd-search input {
  padding: 8px 12px 8px 34px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 13px;
  width: 260px;
  font-family: var(--shell-font-family);
  background: var(--shell-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

body.page-archivedprojects #content .arx-page .hd-search input:focus,
.pro-app-shell .arx-page .hd-search input:focus,
.arx-page .hd-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pro-app-shell .arx-page .arx-count {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Ref: .hd-table-wrap { overflow: visible } — no horizontal scroll on large screens */
.pro-app-shell .arx-page .arx-table-wrap {
  overflow: visible;
}

.pro-app-shell .arx-page .arx-table-wrap .dataTables_wrapper {
  overflow: visible;
  max-width: 100%;
  width: 100%;
}

/* Ref column widths: check 44 | name * | assessment 180 | participants 130 | org 200 | archived 130 | actions 140 */
.pro-app-shell .arx-page .arx-projects-table {
  width: 100% !important;
  border-collapse: collapse;
  margin-top: 0 !important;
}

.pro-app-shell .arx-page .arx-projects-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 18px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box;
}

.pro-app-shell .arx-page .arx-projects-table thead th.ms-check-cell,
.pro-app-shell .arx-page .arx-projects-table tbody td.ms-check-cell {
  width: 44px;
  padding-left: 22px !important;
  padding-right: 4px !important;
  box-sizing: border-box;
}

.pro-app-shell .arx-page .arx-projects-table thead th.col-assessment {
  width: 180px;
}

.pro-app-shell .arx-page .arx-projects-table thead th.col-participants {
  width: 130px;
  text-align: right;
}

.pro-app-shell .arx-page .arx-projects-table thead th.col-organization {
  width: 200px;
}

.pro-app-shell .arx-page .arx-projects-table thead th.col-date {
  width: 130px;
}

.pro-app-shell .arx-page .arx-projects-table thead th.col-actions {
  width: 140px;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-subject {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Small screens only — ref does not scroll on desktop */
@media (max-width: 900px) {
  .pro-app-shell .arx-page .arx-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting:before,
.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting:after,
.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting_asc:before,
.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting_asc:after,
.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting_desc:before,
.pro-app-shell .arx-page .arx-projects-table.dataTable thead .sorting_desc:after {
  display: none !important;
}

.pro-app-shell .arx-page .arx-projects-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: var(--shell-white);
}

.pro-app-shell .arx-page .arx-projects-table tbody tr:hover td {
  background: var(--shell-slate-50);
}

.pro-app-shell .arx-page .arx-projects-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .arx-page .arx-projects-table tbody tr:nth-child(even):hover td {
  background: #d4ece4;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-subject,
.pro-app-shell .arx-page .arx-projects-table tbody td.col-subject .arx-project-link {
  font-weight: 600;
  color: var(--shell-slate-900);
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-subject .arx-project-link {
  text-decoration: none;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-subject .arx-project-link:hover {
  color: var(--shell-teal-dark);
  text-decoration: underline;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-date {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--shell-slate-600);
  font-size: 13px;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.col-participants {
  text-align: right;
  font-weight: 600;
  color: var(--shell-slate-700);
  font-variant-numeric: tabular-nums;
}

.pro-app-shell .arx-page .arx-projects-table tbody td.ms-assessment {
  color: var(--shell-slate-600);
}

/* Row actions (ref: 20px icons; global rule is scoped to .mp-page only) */
body.page-archivedprojects #content .arx-page .mp-row-actions,
.pro-app-shell .arx-page .mp-row-actions {
  justify-content: flex-start;
}

body.page-archivedprojects #content .arx-page .mp-row-action-btn .material-symbols-outlined,
.pro-app-shell .arx-page .mp-row-action-btn .material-symbols-outlined {
  font-size: 20px !important;
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20 !important;
  color: inherit !important;
}

body.page-archivedprojects #content .arx-page .mp-row-action-btn.danger:hover,
.pro-app-shell .arx-page .mp-row-action-btn.danger:hover {
  background: #fee2e2;
  color: #b91c1c;
}

body.page-archivedprojects #content .arx-page .mp-row-action-btn.danger:hover .tt,
.pro-app-shell .arx-page .mp-row-action-btn.danger:hover .tt {
  background: #b91c1c;
}

.pro-app-shell .arx-page .mp-row-action-btn .tt {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--shell-slate-900);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pro-app-shell .arx-page .mp-row-action-btn:hover .tt {
  opacity: 1;
}

.pro-app-shell .arx-page .arx-empty {
  color: var(--shell-slate-400);
}

.pro-app-shell .arx-page input[type="checkbox"].ms-check {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  cursor: pointer;
  border: 2px solid var(--shell-slate-300);
  border-radius: 4px;
  background-color: var(--shell-white);
  background-image: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  accent-color: var(--shell-teal-dark);
}

.pro-app-shell .arx-page input[type="checkbox"].ms-check:checked {
  background-color: var(--shell-teal-dark) !important;
  border-color: var(--shell-teal-dark) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px 12px !important;
}

.pro-app-shell .arx-page input[type="checkbox"].ms-check:focus-visible {
  outline: 2px solid var(--shell-teal-light, #5eead4);
  outline-offset: 2px;
}

.pro-app-shell .arx-page .arx-bulk-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--shell-teal-50);
  border-bottom: 1px solid #cce8e3;
}

.pro-app-shell .arx-page .arx-bulk-status,
.pro-app-shell .arx-page .ms-bulk-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--shell-teal-dark);
  font-size: 14px;
  font-weight: 600;
}

.pro-app-shell .arx-page .ms-bulk-status .material-symbols-outlined {
  font-size: 18px;
}

.pro-app-shell .arx-page .arx-bulk-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pro-app-shell .arx-page .arx-bulk-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--shell-slate-300);
  background: var(--shell-white);
  color: var(--shell-slate-700);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pro-app-shell .arx-page .ms-bulk-btn .material-symbols-outlined {
  font-size: 16px;
}

.pro-app-shell .arx-page .arx-bulk-btn.danger {
  color: #b91c1c;
  border-color: #fca5a5;
}

.pro-app-shell .arx-page .arx-bulk-btn:hover {
  border-color: var(--shell-slate-400);
  background: var(--shell-slate-50);
}

.pro-app-shell .arx-page .arx-bulk-btn.danger:hover {
  background: #fef2f2;
  border-color: #f87171;
}

.pro-app-shell .arx-page .arx-bulk-clear {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-teal-dark);
  cursor: pointer;
  padding: 6px 8px;
}

.pro-app-shell .arx-page .arx-pagination .js-arx-page-info {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-600);
}

/* Empty state (matches ref / .ap-page) */
body.page-archivedprojects #content .arx-page .hd-empty,
.pro-app-shell .arx-page .hd-empty,
.arx-page .hd-empty {
  margin: 0;
  padding: 48px 32px 40px;
  text-align: center;
}

body.page-archivedprojects #content .arx-page .hd-empty-icon,
.pro-app-shell .arx-page .hd-empty-icon,
.arx-page .hd-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--shell-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--shell-slate-400);
}

body.page-archivedprojects #content .arx-page .hd-empty-icon .material-symbols-outlined,
.pro-app-shell .arx-page .hd-empty-icon .material-symbols-outlined,
.arx-page .hd-empty-icon .material-symbols-outlined {
  font-size: 40px !important;
}

body.page-archivedprojects #content .arx-page .hd-empty-headline,
.pro-app-shell .arx-page .hd-empty-headline,
.arx-page .hd-empty-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin: 0 0 8px;
}

body.page-archivedprojects #content .arx-page .hd-empty-sub,
.pro-app-shell .arx-page .hd-empty-sub,
.arx-page .hd-empty-sub {
  font-size: 15px;
  color: var(--shell-slate-500);
  margin: 0 auto;
  max-width: 380px;
  line-height: 1.55;
}

/* Archived modal (matches ref popup look) */
.pro-app-shell .arx-page .hd-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pro-app-shell .arx-page .hd-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  width: 620px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.pro-app-shell .arx-page .hd-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .arx-page .hd-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0;
}

.pro-app-shell .arx-page .hd-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--shell-slate-400);
  padding: 4px;
  border-radius: 6px;
}

.pro-app-shell .arx-page .hd-modal-close:hover {
  background: var(--shell-slate-100);
  color: var(--shell-slate-700);
}

.pro-app-shell .arx-page .hd-modal-close .material-symbols-outlined {
  font-size: 20px;
}

.pro-app-shell .arx-page .hd-modal-body {
  padding: 22px 24px;
  overflow-y: auto;
}

.pro-app-shell .arx-page .hd-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--shell-slate-200);
  background: var(--shell-slate-50);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pro-app-shell .arx-page .ms-modal-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pro-app-shell .arx-page .ms-modal-warning .material-symbols-outlined {
  font-size: 18px;
  color: #92400e;
  flex-shrink: 0;
}

.pro-app-shell .arx-page .ms-modal-warning.danger {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #7f1d1d;
}

.pro-app-shell .arx-page .ms-modal-warning.danger .material-symbols-outlined {
  color: #b91c1c;
}

.pro-app-shell .arx-page .ms-modal-warning.danger strong {
  font-weight: 700;
}

.pro-app-shell .arx-page .ms-modal-list {
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-200);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 13px;
}

.pro-app-shell .arx-page .ms-modal-list-item + .ms-modal-list-item {
  border-top: 1px solid var(--shell-slate-200);
  margin-top: 10px;
  padding-top: 10px;
}

.pro-app-shell .arx-page .ms-modal-list-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell-slate-800);
}

.pro-app-shell .arx-page .ms-modal-list-item-meta {
  font-size: 12px;
  color: var(--shell-slate-500);
  margin-top: 2px;
}

.pro-app-shell .arx-page .ms-delete-btn {
  background: #dc2626;
  border: 1px solid transparent;
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pro-app-shell .arx-page .ms-delete-btn:hover {
  background: #b91c1c;
}

/* Success toast (matches ref static delete/restore feedback) */
.pro-app-shell .arx-page .co-success-modal {
  background: var(--shell-white);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  width: 440px;
  max-width: 92vw;
  padding: 36px 32px;
  text-align: center;
}

.pro-app-shell .arx-page .co-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--shell-teal-50, #f0fdfa);
  color: var(--shell-teal-dark);
}

.pro-app-shell .arx-page .co-success-icon .material-symbols-outlined {
  font-size: 36px !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48 !important;
}

.pro-app-shell .arx-page .co-success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--shell-slate-900);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ============================================================
   All Participants — pro-account-all-participants-v1.html
   Page-only (.ap-page). Reuses shared shell page-header styles.
   ============================================================ */
body.pro-app-shell.page-allparticipants #content .ap-page,
.pro-app-shell .ap-page {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 32px;  
}

.pro-app-shell .ap-page .ap-participants-card.hd-card {
  background: var(--shell-white);
  border-radius: var(--shell-radius-lg);
  border: 1px solid var(--shell-slate-300);
  box-shadow: var(--shell-shadow-card);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Navy card header */
.pro-app-shell .ap-page .hd-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #1e3a5f;
  color: #fff;
  flex-wrap: wrap;
}

.pro-app-shell .ap-page .hd-card-header .material-symbols-outlined {
  font-size: 20px !important;
  opacity: 0.9;
}

.pro-app-shell .ap-page .hd-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* Status tabs inside header */
.pro-app-shell .ap-page .ap-card-tabs {
  margin-left: auto;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.pro-app-shell .ap-page .ap-card-tabs .cc-tab {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.pro-app-shell .ap-page .ap-card-tabs .cc-tab.active,
.pro-app-shell .ap-page .ap-card-tabs .cc-tab:hover,
.pro-app-shell .ap-page .ap-card-tabs .cc-tab:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pro-app-shell .ap-page .ap-card-tabs .cc-tab-count {
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}

.pro-app-shell .ap-page .ap-card-tabs .cc-tab.active .cc-tab-count {
  background: var(--shell-teal);
  color: #fff;
}

/* Toolbar */
.pro-app-shell .ap-page .hd-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  gap: 16px;
  flex-wrap: wrap;
}

.pro-app-shell .ap-page .hd-show-entries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--shell-slate-600);
}

.pro-app-shell .ap-page .hd-show-entries select {
  padding: 5px 10px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--shell-font-family);
  background: var(--shell-white);
  cursor: pointer;
}

.pro-app-shell .ap-page .hd-search {
  position: relative;
}

.pro-app-shell .ap-page .hd-search .material-symbols-outlined {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px !important;
  color: var(--shell-slate-400);
  pointer-events: none;
}

.pro-app-shell .ap-page .hd-search input {
  padding: 8px 12px 8px 34px;
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  font-size: 13px;
  width: 260px;
  font-family: var(--shell-font-family);
  background: var(--shell-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pro-app-shell .ap-page .hd-search input:focus {
  outline: none;
  border-color: var(--shell-teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

/* Table */
.pro-app-shell .ap-page .hd-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pro-app-shell .ap-page .ap-participants-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0 !important;
}

.pro-app-shell .ap-page .ap-participants-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 18px;
  background: var(--shell-slate-50);
  border-bottom: 1px solid var(--shell-slate-200);
  white-space: nowrap;
}

.pro-app-shell .ap-page .ap-participants-table thead th .sortable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.pro-app-shell .ap-page .ap-participants-table thead th .sortable .material-symbols-outlined {
  font-size: 16px;
  color: var(--shell-slate-400);
}

.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting:before,
.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting:after,
.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting_asc:before,
.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting_asc:after,
.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting_desc:before,
.pro-app-shell .ap-page .ap-participants-table.dataTable thead .sorting_desc:after {
  display: none !important;
}

.pro-app-shell .ap-page .ap-participants-table thead th.col-first { width: 130px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-last { width: 130px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-email { width: 260px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-project { width: 220px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-assessment { width: 160px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-status { width: 140px !important; }
.pro-app-shell .ap-page .ap-participants-table thead th.col-actions { width: 110px !important; }

.pro-app-shell .ap-page .ap-participants-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--shell-slate-700);
  vertical-align: middle;
  background: var(--shell-white);
}

.pro-app-shell .ap-page .ap-participants-table tbody tr:hover td {
  background: var(--shell-slate-50);
}

.pro-app-shell .ap-page .ap-participants-table tbody tr:nth-child(even) td {
  background: #e6f4ef;
}

.pro-app-shell .ap-page .ap-participants-table tbody tr:nth-child(even):hover td {
  background: #d4ece4;
}

.pro-app-shell .ap-page .ap-name-link {
  color: var(--shell-slate-900);
  font-weight: 600;
  text-decoration: none;
}

.pro-app-shell .ap-page .ap-project-link {
  color: var(--shell-teal-dark);
  font-weight: 600;
  text-decoration: none;
}

.pro-app-shell .ap-page .ap-empty-val {
  color: var(--shell-slate-400);
  font-weight: 400;
}

/* Status pills */
.pro-app-shell .ap-page .hd-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pro-app-shell .ap-page .hd-status .material-symbols-outlined {
  font-size: 12px !important;
  text-transform: none;
}

.pro-app-shell .ap-page .hd-status.not-invited {
  background: var(--shell-slate-100);
  color: var(--shell-slate-600);
}

.pro-app-shell .ap-page .hd-status.in-progress {
  background: #ccfbf1;
  color: #0f766e;
}

.pro-app-shell .ap-page .hd-status.completed {
  background: var(--shell-teal-50);
  color: var(--shell-teal-dark);
}

.pro-app-shell .ap-page .hd-status.accessed {
  background: #99f6e4;
  color: #115e59;
}

.pro-app-shell .ap-page .hd-status.released {
  background: #5eead4;
  color: #0f3a36;
}

/* Pagination */
.pro-app-shell .ap-page .hd-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--shell-slate-200);
  background: var(--shell-white);
}

.pro-app-shell .ap-page .js-ap-page-info {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--shell-slate-600);
  line-height: 1.4;
}

.pro-app-shell .ap-page .dataTables_paginate {
  margin-left: auto;
}

/* Empty state */
.pro-app-shell .ap-page .hd-empty {
  padding: 48px 32px 40px;
  text-align: center;
}

.pro-app-shell .ap-page .hd-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--shell-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--shell-slate-400);
}

.pro-app-shell .ap-page .hd-empty-icon .material-symbols-outlined {
  font-size: 40px !important;
}

.pro-app-shell .ap-page .hd-empty-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--shell-slate-800);
  margin: 0 0 8px;
}

.pro-app-shell .ap-page .hd-empty-sub {
  font-size: 14px;
  color: var(--shell-slate-500);
  margin: 0 auto;
  max-width: 520px;
}

@media (max-width: 900px) {
  .pro-app-shell .ap-page .ap-card-tabs {
    margin-left: 0;
    width: 100%;
  }
}

/* ============================================================
   Account Profile (general) — pro-account-profile-v1.html
   Page-only (.gen-page). Reuses shared .co-page form tokens.
   ============================================================ */
.pro-app-shell .gen-page.co-page,
body.pro-app-shell #content .gen-page.co-page {
  --co-page-max-width: 1100px;
  --co-card-padding-x: 24px;
  --co-card-padding-y-header: 14px;
  --co-body-padding: 28px;
  --co-section-gap: 24px;
  --co-grid-gap: 16px 20px;
  --co-field-gap: 6px;
  --co-footer-padding: 16px 24px;
  --co-select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  font-family: var(--shell-font-family);
  margin: 0 auto;
  max-width: var(--co-page-max-width);
  width: 100%;
}

.pro-app-shell .gen-page .co-card {
  background: var(--shell-white);
  border: 1px solid var(--shell-slate-300);
  border-radius: var(--shell-radius-lg);
  box-shadow: var(--shell-shadow-card);
  margin-bottom: 24px;
  overflow: hidden;
}

/* Panels — ref renders tab body directly inside .co-card (no Bootstrap .tab-pane) */
.pro-app-shell .gen-page .gen-tab-panel {
  display: none;
}

.pro-app-shell .gen-page .gen-tab-panel.active {
  display: block;
}

/* Tab nav — ref pro-account-profile-v1.html (.co-tabs / button.co-tab) */
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs {
  align-items: stretch;
  background: var(--shell-white);
  border: 0;
  border-bottom: 1px solid var(--shell-slate-200);
  border-radius: 0;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;  
  padding: 0 24px;
  width: 100%;
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs::before,
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs::after {
  display: none;
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab {
  align-items: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--shell-slate-600);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-family: var(--shell-font-family);
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
  line-height: 1.4;
  margin: 0;
  outline: none;
  padding: 14px 18px;
  position: relative;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab .material-symbols-outlined {
  color: inherit;
  display: inline-block;
  flex-shrink: 0;
  font-family: "Material Symbols Outlined" !important;
  font-size: 18px !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  width: 18px;
  height: 18px;
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab .gen-tab-label {
  line-height: 1.4;
}

/* Legacy changes.css sets .material-icons { font-size: 60px } — never apply on profile tabs */
.pro-app-shell .gen-page .material-icons {
  color: inherit !important;
  font-size: inherit !important;
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab:hover,
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab:focus {
  background: transparent;
  color: var(--shell-slate-900);
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab.active {
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--shell-teal-dark);
}

.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab.active::after {
  background: var(--shell-teal-dark);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 6px;
  position: absolute;
  right: 6px;
}

/* Kill legacy/bootstrap tab chrome if it leaks onto profile tabs */
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs.nav,
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs.nav-tabs {
  border: 0;
  border-bottom: 1px solid var(--shell-slate-200);
}

.pro-app-shell .gen-page #tabing-view-box .co-tabs.gen-profile-tabs > .co-tab::before,
.pro-app-shell .gen-page #tabing-view-box .co-tabs.gen-profile-tabs > .co-tab::after,
.pro-app-shell .gen-page .co-tabs.gen-profile-tabs > .co-tab::before {
  display: none !important;
  content: none !important;
}

/* Form layout inside profile card — match ref .co-body / .co-footer */
.pro-app-shell .gen-page .co-body {
  padding: var(--co-body-padding) var(--co-body-padding) 8px;
}

.pro-app-shell .gen-page .co-footer {
  align-items: center;
  background: var(--shell-slate-50);
  border-top: 1px solid var(--shell-slate-200);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: var(--co-footer-padding);
}

.pro-app-shell .gen-page .co-grid,
.pro-app-shell .gen-page .co-grid-3 {
  display: grid !important;
  gap: 16px 20px;
  width: 100%;
}

/* Company + address fields — 2-col grid, full-width rows */
.pro-app-shell .gen-page .co-section .co-grid:not(.co-grid-3) {
  grid-template-columns: 1fr 1fr;
}

/* City / state / postal + country / timezone — same 3-col tracks as ref */
.pro-app-shell .gen-page .co-grid.co-grid-3,
.pro-app-shell .gen-page .co-grid-3 {
  grid-template-columns: 1.4fr 1fr 0.8fr;
}

.pro-app-shell .gen-page .co-grid-3-spaced {
  margin-top: 16px;
}

/* Country col 1, Time zone cols 2–3 (aligns with state + postal above) */
.pro-app-shell .gen-page .gen-locale-grid .gen-locale-tz {
  grid-column: 2 / -1;
  min-width: 0;
}

.pro-app-shell .gen-page .gen-address-line1 {
  margin-bottom: 8px !important;
}

.pro-app-shell .gen-page .co-grid-full {
  grid-column: 1 / -1;
}

.pro-app-shell .gen-page .co-field {
  display: flex !important;
  flex-direction: column !important;
  gap: var(--co-field-gap);
  margin: 0;
  min-width: 0;
}

.pro-app-shell .gen-page label.co-label {
  color: var(--shell-slate-700);
  display: block !important;
  float: none !important;
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-semibold);
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.pro-app-shell .gen-page input.co-input,
.pro-app-shell .gen-page select.co-select {
  background-color: var(--shell-white) !important;
  border: 1px solid var(--shell-slate-300) !important;
  border-radius: var(--shell-radius-sm) !important;
  box-shadow: none !important;
  color: var(--shell-slate-900) !important;
  display: block !important;
  float: none !important;
  font-family: var(--shell-font-family) !important;
  font-size: var(--shell-font-size-base) !important;
  height: auto !important;
  line-height: var(--shell-line-height-base) !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.pro-app-shell .gen-page input.co-input {
  padding: 10px 12px !important;
}

.pro-app-shell .gen-page select.co-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: var(--co-select-chevron) !important;
  background-position: right 12px center !important;
  background-repeat: no-repeat !important;
  background-size: 12px 12px !important;
  cursor: pointer;
  padding: 10px 32px 10px 12px !important;
}

.pro-app-shell .gen-page input.co-input:focus,
.pro-app-shell .gen-page select.co-select:focus {
  border-color: var(--shell-teal-dark) !important;
  box-shadow: 0 0 0 3px var(--shell-teal-focus-ring) !important;
  outline: none;
}

.pro-app-shell .gen-page .co-helper {
  color: var(--shell-slate-500);
  font-size: var(--shell-font-size-sm);
  line-height: var(--shell-line-height-relaxed);
  margin: 0;
}

.pro-app-shell .gen-page button.co-btn-primary {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.pro-app-shell .gen-page button.co-btn-primary .material-symbols-outlined {
  color: var(--shell-white) !important;
  font-size: var(--shell-icon-sm) !important;
}

@media (max-width: 760px) {
  .pro-app-shell .gen-page .co-grid,
  .pro-app-shell .gen-page .co-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Profile picture */
.pro-app-shell .gen-page .co-avatar-row {
  align-items: center;
  display: flex;
  gap: 20px;
}

.pro-app-shell .gen-page .co-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--shell-teal) 0%, var(--shell-teal-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.25);
  color: var(--shell-white);
  display: flex;
  flex-shrink: 0;
  font-size: 30px;
  font-weight: var(--shell-font-weight-bold);
  height: 80px;
  justify-content: center;
  letter-spacing: -0.02em;
  overflow: hidden;
  position: relative;
  width: 80px;
}

.pro-app-shell .gen-page .co-avatar .gen-profile-avatar-img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.pro-app-shell .gen-page .gen-avatar-initials {
  position: relative;
  z-index: 0;
}

.pro-app-shell .gen-page .co-avatar-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pro-app-shell .gen-page .co-avatar-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pro-app-shell .gen-page button.co-avatar-btn {
  align-items: center;
  background: var(--shell-white);
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  color: var(--shell-slate-700);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-semibold);
  gap: 5px;
  padding: 7px 12px;
}

.pro-app-shell .gen-page button.co-avatar-btn:hover {
  background: var(--shell-slate-50);
  border-color: var(--shell-slate-400);
}

.pro-app-shell .gen-page button.co-avatar-btn .material-symbols-outlined {
  font-size: 16px !important;
}

.pro-app-shell .gen-page .co-avatar-helper {
  color: var(--shell-slate-500);
  font-size: var(--shell-font-size-sm);
  line-height: 1.4;
  margin: 0;
}

/* Email change UI */
.pro-app-shell .gen-page .co-email-display {
  align-items: center;
  background: var(--shell-slate-50);
  border: 1px solid var(--shell-slate-300);
  border-radius: var(--shell-radius-sm);
  display: flex;
  gap: 10px;
  padding: 10px 12px;
}

.pro-app-shell .gen-page .co-email-value {
  color: var(--shell-slate-700);
  flex: 1;
  font-size: var(--shell-font-size-base);
  word-break: break-word;
}

.pro-app-shell .gen-page .co-email-change {
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--shell-teal-dark);
  cursor: pointer;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-semibold);
  padding: 4px 8px;
}

.pro-app-shell .gen-page .co-email-change:hover {
  background: var(--shell-teal-50);
}

.pro-app-shell .gen-page .co-email-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pro-app-shell .gen-page .co-email-verify-btn {
  background: var(--shell-teal);
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--shell-white);
  cursor: pointer;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-bold);
  padding: 7px 14px;
}

.pro-app-shell .gen-page .co-email-verify-btn:hover {
  background: var(--shell-teal-dark);
}

.pro-app-shell .gen-page .co-email-cancel-btn {
  background: var(--shell-white);
  border: 1px solid var(--shell-slate-300);
  border-radius: 7px;
  color: var(--shell-slate-700);
  cursor: pointer;
  font-family: var(--shell-font-family);
  font-size: var(--shell-font-size-md);
  font-weight: var(--shell-font-weight-semibold);
  padding: 7px 14px;
}

.pro-app-shell .gen-page .co-email-cancel-btn:hover {
  border-color: var(--shell-slate-400);
}

.pro-app-shell .gen-page .co-email-pending {
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 9px;
  color: #78350f;
  display: flex;
  font-size: var(--shell-font-size-md);
  gap: 10px;
  line-height: 1.5;
  margin-top: 8px;
  padding: 12px 14px;
}

.pro-app-shell .gen-page .co-email-pending .material-symbols-outlined {
  color: #92400e;
  flex-shrink: 0;
  font-size: 18px;
}

/* Password hint */
.pro-app-shell .gen-page .gen-pass-hint {
  margin: 4px 0 0;
}

.pro-app-shell .gen-page .gen-pass-hint.error {
  color: var(--shell-danger);
}

/* Suppress legacy chrome inside profile page */
.pro-app-shell .gen-page .card-box,
.pro-app-shell .gen-page .client-info,
.pro-app-shell .gen-page .sub_header_bar {
  display: none !important;
}

.pro-app-shell .gen-page .row {
  margin-left: 0;
  margin-right: 0;
}

.pro-app-shell .gen-page #tabing-view-box {
  border: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 760px) {
  .pro-app-shell .gen-page .co-avatar-row {
    align-items: flex-start;
    flex-direction: column;
  }
}