:root {
  --bhrc-bg: #050816;
  --bhrc-bg-2: #0b1120;
  --bhrc-bg-3: #111827;
  --bhrc-panel: rgba(8, 13, 27, 0.92);
  --bhrc-panel-2: rgba(15, 23, 42, 0.88);
  --bhrc-surface: rgba(255, 255, 255, 0.075);
  --bhrc-surface-strong: rgba(255, 255, 255, 0.115);
  --bhrc-card: rgba(255, 255, 255, 0.97);
  --bhrc-card-soft: rgba(248, 250, 252, 0.94);
  --bhrc-line: rgba(148, 163, 184, 0.22);
  --bhrc-line-strong: rgba(191, 219, 254, 0.34);
  --bhrc-text: #e5ecff;
  --bhrc-text-strong: #ffffff;
  --bhrc-muted: #9fb0d9;
  --bhrc-muted-2: #c7d2fe;
  --bhrc-ink: #0f172a;
  --bhrc-ink-muted: #64748b;
  --bhrc-accent: #60a5fa;
  --bhrc-accent-2: #22c55e;
  --bhrc-accent-3: #a855f7;
  --bhrc-warning: #f59e0b;
  --bhrc-danger: #ef4444;
  --bhrc-radius-sm: 12px;
  --bhrc-radius: 18px;
  --bhrc-radius-lg: 28px;
  --bhrc-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  --bhrc-shadow-soft: 0 14px 42px rgba(15, 23, 42, 0.16);
  --bhrc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bhrc-scrollbar-size: 5px;
  --bhrc-scrollbar-track: #ffffff;
  --bhrc-scrollbar-thumb: #b7c0c8;
  --bhrc-scrollbar-thumb-hover: #929da6;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--bhrc-scrollbar-thumb) var(--bhrc-scrollbar-track);
}

*::-webkit-scrollbar {
  width: var(--bhrc-scrollbar-size);
  height: var(--bhrc-scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: var(--bhrc-scrollbar-track);
}

*::-webkit-scrollbar-thumb {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--bhrc-scrollbar-thumb);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--bhrc-scrollbar-thumb-hover);
}

*::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
  background: transparent;
}

a[href],
button,
summary,
select,
input[type="button"],
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"],
[role="button"],
[tabindex]:not([tabindex="-1"]),
[data-bhrc-settings-item],
[data-bhrc-settings-section],
label:has(input[type="checkbox"]),
label:has(input[type="radio"]) {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
[aria-disabled="true"] {
  cursor: default;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--bhrc-text);
  font-family: var(--bhrc-font);
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(96, 165, 250, 0.28), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.14), transparent 36%),
    linear-gradient(135deg, var(--bhrc-bg), var(--bhrc-bg-2) 46%, var(--bhrc-bg-3)) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(96, 165, 250, 0.38);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
input,
select,
textarea {
  outline-color: rgba(96, 165, 250, 0.70);
}

button,
.btn,
.www-btn,
.panel-link {
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

button:hover,
.btn:hover,
.www-btn:hover {
  transform: translateY(-1px);
}

code,
pre {
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(15, 23, 42, 0.72);
  color: #dbeafe;
  border-radius: 0.55rem;
}

.bhrc-public-body,
.bhrc-panel-body {
  min-height: 100vh;
}

.bhrc-glass {
  border: 1px solid var(--bhrc-line);
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--bhrc-shadow);
}

.brand-logo,
.www-brand img {
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.44), transparent 24%),
    linear-gradient(135deg, #60a5fa, #2563eb 52%, #22c55e) !important;
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.38);
}

.brand-mark {
  width: 26px;
  height: 26px;
  display: block;
}

.www-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.www-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 28px;
}

.www-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.www-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.www-nav-actions,
.hero-actions,
.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.www-nav-actions {
  justify-content: flex-end;
}

.www-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  color: #e5ecff;
  background: rgba(255, 255, 255, 0.055);
}

.www-btn:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.62);
  background: rgba(96, 165, 250, 0.16);
}

.www-btn.primary,
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  border-color: rgba(96, 165, 250, 0.88) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 52px rgba(37, 99, 235, 0.32);
}

.btn-success {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
  border-color: rgba(22, 163, 74, 0.82) !important;
}

.btn-outline-light,
.btn-outline-secondary {
  border-color: rgba(148, 163, 184, 0.48) !important;
}

.www-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px 0;
}

.hero-card,
.metric-card,
.www-card {
  border: 1px solid var(--bhrc-line);
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(18px);
  border-radius: var(--bhrc-radius-lg);
  box-shadow: var(--bhrc-shadow);
}

.hero-card {
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -148px;
  top: -168px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.32), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.surface-badge,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(96, 165, 250, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.eyebrow {
  padding: 8px 12px;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 950;
  margin: 0 0 22px;
  color: #ffffff;
}

.hero-title span {
  color: #93c5fd;
}

.hero-copy {
  color: var(--bhrc-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 780px;
  margin: 0 0 28px;
}

.metric-panel {
  display: grid;
  gap: 14px;
}

.metric-card {
  padding: 22px;
}

.metric-label,
.session-label {
  color: var(--bhrc-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  font-size: 2.15rem;
  font-weight: 920;
  letter-spacing: -0.045em;
  margin-top: 6px;
  color: #ffffff;
}

.metric-note {
  color: var(--bhrc-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.www-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.www-card {
  padding: 22px;
  min-height: 190px;
}

.www-card h2 {
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: #ffffff;
}

.www-card p {
  color: var(--bhrc-muted);
  line-height: 1.62;
  margin: 0;
}

.www-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--bhrc-muted);
  padding-top: 28px;
  font-size: 0.9rem;
}

.app-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
}

.app-sidebar {
  border-right: 1px solid var(--bhrc-line);
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.97), rgba(15, 23, 42, 0.93)) !important;
  backdrop-filter: blur(14px);
  box-shadow: 18px 0 80px rgba(0, 0, 0, 0.22);
  padding: 1.25rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.brand-box,
.session-card {
  display: flex;
  border: 1px solid var(--bhrc-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.brand-box {
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-title {
  font-weight: 780;
  line-height: 1.15;
  color: #ffffff;
}

.brand-subtitle {
  color: var(--bhrc-muted);
  font-size: 0.83rem;
  margin-top: 0.15rem;
}

.surface-badge {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.session-card {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
}

.session-value {
  font-weight: 760;
  font-size: 1rem;
  margin-top: 0.15rem;
  color: #ffffff;
}

.sidebar-group-title {
  color: var(--bhrc-muted);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.2rem 0 0.65rem;
  padding: 0 0.35rem;
}

.panel-nav {
  display: grid;
  gap: 0.45rem;
}

.panel-link {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--bhrc-text);
  border: 1px solid transparent;
  border-radius: 0.95rem;
  padding: 0.78rem 0.9rem;
  background: transparent;
}

.panel-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.16), rgba(34, 197, 94, 0.10));
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: -1;
}

.panel-link:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.38);
  transform: translateX(2px);
}

.panel-link:hover::before,
.panel-link.active::before {
  opacity: 1;
}

.panel-link.active {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.44);
  transform: translateX(2px);
}

.panel-link small {
  color: var(--bhrc-muted);
}

.app-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--bhrc-line);
  background: rgba(2, 6, 23, 0.68) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-title {
  font-size: 1.12rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  margin: 0;
  color: #ffffff;
}

.topbar-subtitle {
  color: var(--bhrc-muted);
  font-size: 0.87rem;
  margin: 0.15rem 0 0;
}

.chip {
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  color: var(--bhrc-text);
  border-color: var(--bhrc-line);
  background: rgba(255, 255, 255, 0.045);
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bhrc-accent-2);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.btn-logout {
  border: 1px solid rgba(239, 68, 68, 0.34);
  color: #fecaca;
  background: rgba(239, 68, 68, 0.10);
}

.btn-logout:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.52);
}

.page-wrap {
  width: 100%;
  max-width: 1540px;
  padding: 1.4rem;
}

.card,
.panel-card,
.placeholder-box {
  background: var(--bhrc-card) !important;
  color: var(--bhrc-ink) !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: var(--bhrc-radius) !important;
  box-shadow: var(--bhrc-shadow-soft) !important;
}

.card .text-muted,
.panel-card .text-muted {
  color: var(--bhrc-ink-muted) !important;
}

.placeholder-box {
  padding: 1.5rem;
  min-height: 150px;
}

.form-control,
.form-select,
textarea {
  border-radius: 0.85rem !important;
}

.table {
  vertical-align: middle;
}

.footer {
  color: var(--bhrc-muted);
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem 1.4rem 1.4rem;
}

.mobile-header {
  display: none;
}

[data-bhrc-static="wo20"] .footer::after {
  content: " ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ Wo-2.0 design foundation";
  color: rgba(191, 219, 254, 0.92);
}

@media (max-width: 991.98px) {
  .www-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .www-nav-actions {
    justify-content: flex-start;
  }

  .www-hero,
  .www-grid {
    grid-template-columns: 1fr;
  }

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

  .app-sidebar {
    display: none;
  }

  .mobile-header {
    display: block;
    padding: 1rem 1rem 0;
  }

  .page-wrap {
    padding: 1rem;
  }

  .topbar {
    align-items: flex-start !important;
    flex-direction: column;
    padding: 0.9rem 1rem;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-actions .chip,
  .topbar-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .www-shell {
    width: min(100% - 22px, 1220px);
    padding-top: 18px;
  }

  .hero-card,
  .metric-card,
  .www-card {
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 15vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Wo-2.2 standalone legacy surface modernization */
.wo22-surface {
  min-height: 100vh;
}

.wo22-auth-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.wo22-page-kicker {
  margin: 0 0 0.7rem;
  color: var(--bhrc-muted-2);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wo22-section-title {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
  font-weight: 900;
}

.wo22-copy {
  color: var(--bhrc-muted);
  line-height: 1.7;
  margin: 0;
}

.wo22-stack {
  display: grid;
  gap: 1rem;
}

.wo22-grid {
  display: grid;
  gap: 1rem;
}

.wo22-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wo22-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wo22-card {
  border: 1px solid var(--bhrc-line);
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(18px);
  border-radius: var(--bhrc-radius-lg);
  box-shadow: var(--bhrc-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.wo22-card.light {
  background: var(--bhrc-card) !important;
  color: var(--bhrc-ink) !important;
  border-color: rgba(226, 232, 240, 0.78) !important;
  box-shadow: var(--bhrc-shadow-soft) !important;
}

.wo22-card.light .wo22-section-title,
.wo22-card.light h1,
.wo22-card.light h2,
.wo22-card.light h3 {
  color: var(--bhrc-ink);
}

.wo22-card.light .wo22-copy,
.wo22-card.light .wo22-muted {
  color: var(--bhrc-ink-muted);
}

.wo22-form {
  display: grid;
  gap: 0.85rem;
}

.wo22-label {
  color: var(--bhrc-muted-2);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo22-input,
.wo22-textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 1rem;
  padding: 0.82rem 0.95rem;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.68);
}

.wo22-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: Consolas, Menlo, monospace;
}

.wo22-error,
.wo22-notice {
  min-height: 1.35rem;
  color: #fecaca;
  line-height: 1.45;
}

.wo22-notice.ok {
  color: #bbf7d0;
}

.wo22-output {
  min-height: 84px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1rem;
  padding: 1rem;
  color: #dbeafe;
  background: rgba(2, 6, 23, 0.62);
}

.wo22-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--bhrc-line);
  border-radius: var(--bhrc-radius);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: var(--bhrc-shadow);
}

.wo22-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.wo22-table th,
.wo22-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--bhrc-line);
  text-align: left;
  vertical-align: top;
}

.wo22-table th {
  color: var(--bhrc-muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo22-table tr:last-child td {
  border-bottom: 0;
}

.wo22-mono {
  font-family: Consolas, Menlo, monospace;
  font-size: 0.84rem;
  word-break: break-all;
}

.wo22-empty {
  text-align: center;
  color: var(--bhrc-muted);
  padding: 1.3rem;
}

.wo22-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bhrc-line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wo22-status.ok {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.wo22-status.warn {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
}

.wo22-status.bad {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}

@media (max-width: 860px) {
  .wo22-grid.two,
  .wo22-grid.three {
    grid-template-columns: 1fr;
  }
}

/* Wo-2.3 operator panel v2 foundation */
body.bhrc-panel-body {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.16), transparent 32rem),
    linear-gradient(135deg, #030712 0%, #07111f 48%, #020617 100%);
}

body.bhrc-panel-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 76%);
  z-index: -1;
}

.wo23-operator-shell {
  min-height: 100vh;
}

.wo23-sidebar {
  border-right: 1px solid rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(180deg, rgba(8, 13, 27, 0.96), rgba(2, 6, 23, 0.92)),
    radial-gradient(circle at top, rgba(96, 165, 250, 0.18), transparent 24rem);
}

.wo23-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.35rem;
}

.wo23-brand-orb {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.26), rgba(34, 197, 94, 0.16));
  border: 1px solid rgba(191, 219, 254, 0.36);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.wo23-brand-orb img {
  width: 30px;
  height: 30px;
}

.wo23-sidebar-pulse {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 1.15rem;
  padding: 0.85rem;
  background: rgba(34, 197, 94, 0.08);
}

.wo23-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.13);
}

.wo23-sidebar-meta {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.wo23-nav-caption {
  color: rgba(199, 210, 254, 0.92);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 1rem 0 0.45rem;
}

.wo23-panel-link {
  min-height: 58px;
}

.wo23-panel-link span {
  font-weight: 760;
}

.wo23-panel-link small {
  font-size: 0.73rem;
}

.wo23-topbar {
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.72) !important;
}

.wo23-topbar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(191, 219, 254, 0.94);
  font-size: 0.74rem;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wo23-command-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.wo23-command-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  color: rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  text-decoration: none;
}

.wo23-command-chip:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(96, 165, 250, 0.14);
}

.wo23-page-wrap {
  padding: clamp(1rem, 2vw, 1.65rem);
}

.wo23-mission-control {
  display: grid;
  gap: 1.15rem;
}

.wo23-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.26);
  border-radius: 2rem;
  padding: clamp(1.35rem, 3vw, 2.45rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.86)),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.28), transparent 26rem);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.wo23-hero-panel::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: -7rem;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22), transparent 68%);
}

.wo23-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.wo23-kicker {
  margin: 0 0 0.65rem;
  color: rgba(191, 219, 254, 0.94);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.wo23-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.wo23-lead {
  margin: 1rem 0 0;
  max-width: 780px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
}

.wo23-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.wo23-glass-card {
  border: 1px solid rgba(191, 219, 254, 0.22);
  border-radius: 1.5rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.wo23-glass-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.wo23-glass-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
}

.wo23-status-lane {
  display: grid;
  gap: 0.75rem;
}

.wo23-status-pill {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.1rem;
  padding: 0.82rem 0.9rem;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(2, 6, 23, 0.42);
}

.wo23-home-stats {
  margin-top: 0.2rem;
}

.wo23-home-stats .card {
  border-radius: 1.35rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94)) !important;
}

.wo23-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wo23-command-card {
  display: flex;
  flex-direction: column;
  min-height: 142px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.35rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--bhrc-ink);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.wo23-command-card:hover {
  color: var(--bhrc-ink);
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.48);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.14);
}

.wo23-command-card small {
  color: var(--bhrc-ink-muted);
  line-height: 1.55;
}

.wo23-command-card .wo23-arrow {
  margin-top: auto;
  color: #2563eb;
  font-weight: 850;
}

.wo23-quickbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.wo23-quickbar a {
  border-radius: 999px;
}

[data-bhrc-static="wo20"] .footer::after,
[data-bhrc-static="wo23"] .footer::after {
  content: " ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ Wo-2.3 operator panel v2";
  color: rgba(191, 219, 254, 0.92);
}

@media (max-width: 1120px) {
  .wo23-hero-content,
  .wo23-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .wo23-command-strip {
    width: 100%;
  }

  .wo23-command-chip {
    flex: 1 1 auto;
    justify-content: center;
  }
}
/* /Wo-2.3 operator panel v2 foundation */

/* Wo-2.3 status explorer operational surface */
.wo23-operational-surface {
  display: grid;
  gap: 1rem;
}

.wo23-ops-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(191, 219, 254, 0.26);
  border-radius: 2rem;
  padding: clamp(1.25rem, 3vw, 2.15rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.84)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.20), transparent 24rem);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.30);
}

.wo23-ops-hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 68%);
  pointer-events: none;
}

.wo23-title.compact {
  font-size: clamp(1.85rem, 4vw, 3.45rem);
  letter-spacing: -0.07em;
}

.wo23-lead.compact {
  max-width: 720px;
}

.wo23-ops-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.wo23-ops-rail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.1rem;
  padding: 0.85rem 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(2, 6, 23, 0.44);
  backdrop-filter: blur(14px);
}

.wo23-ops-rail-item span {
  color: rgba(191, 219, 254, 0.84);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo23-ops-rail-item strong {
  color: #ffffff;
  text-align: right;
}

.wo23-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.wo23-metric-grid .card {
  border-radius: 1.25rem !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10) !important;
}

.wo23-skeleton-card {
  grid-column: 1 / -1;
  border: 1px dashed rgba(148, 163, 184, 0.55);
  border-radius: 1.25rem;
  padding: 1rem;
  color: rgba(226, 232, 240, 0.78);
  background: rgba(15, 23, 42, 0.52);
}

.wo23-ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wo23-ops-card {
  border-radius: 1.45rem !important;
}

.wo23-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wo23-mini-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  color: #1d4ed8;
  background: rgba(96, 165, 250, 0.10);
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.wo23-list .list-group-item {
  border-color: rgba(226, 232, 240, 0.84);
  padding: 0.9rem 0;
}

.wo23-chart-frame {
  height: 320px;
  min-height: 320px;
}

.wo23-json-output {
  min-height: 260px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 1rem;
  padding: 1rem;
  margin: 0;
  color: #0f172a;
  background: #f8fafc;
  font-size: 0.82rem;
}

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

  .wo23-ops-hero,
  .wo23-ops-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wo23-metric-grid {
    grid-template-columns: 1fr;
  }
}
/* /Wo-2.3 status explorer operational surface */

/* Wo-2.3 assets operational surface */
.wo23-asset-surface {
  display: grid;
  gap: 1rem;
}

.wo23-asset-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(191, 219, 254, 0.26);
  border-radius: 2rem;
  padding: clamp(1.25rem, 3vw, 2.15rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.84)),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.20), transparent 24rem);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.30);
}

.wo23-asset-hero.danger {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(39, 25, 42, 0.84)),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.20), transparent 24rem);
}

.wo23-asset-hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 68%);
  pointer-events: none;
}

.wo23-asset-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.wo23-asset-rail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.1rem;
  padding: 0.85rem 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(2, 6, 23, 0.44);
  backdrop-filter: blur(14px);
}

.wo23-asset-rail-item span {
  color: rgba(191, 219, 254, 0.84);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo23-asset-rail-item strong {
  color: #ffffff;
  text-align: right;
}

.wo23-asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wo23-asset-card {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.45rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-asset-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.wo23-asset-metric {
  min-height: 112px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.25rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-asset-card .form-control,
.wo23-asset-card .form-select {
  border-radius: 0.9rem;
}

.wo23-asset-card textarea.form-control {
  min-height: 88px;
}

.wo23-asset-card pre,
.wo23-asset-card .wo23-json-output {
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: #f8fafc;
  color: #0f172a;
}

.wo23-asset-card code,
.wo23-asset-metric code {
  color: #1d4ed8;
  word-break: break-all;
}

@media (max-width: 1180px) {
  .wo23-asset-hero,
  .wo23-asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wo23-asset-metric-grid {
    grid-template-columns: 1fr;
  }
}
/* /Wo-2.3 assets operational surface */

/* Wo-2.3 network intelligence operational surface */
.wo23-intel-surface {
  display: grid;
  gap: 1rem;
}

.wo23-intel-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(191, 219, 254, 0.26);
  border-radius: 2rem;
  padding: clamp(1.25rem, 3vw, 2.15rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.84)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.20), transparent 24rem);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.30);
}

.wo23-intel-hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 68%);
  pointer-events: none;
}

.wo23-intel-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.wo23-intel-rail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.1rem;
  padding: 0.85rem 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(2, 6, 23, 0.44);
  backdrop-filter: blur(14px);
}

.wo23-intel-rail-item span {
  color: rgba(191, 219, 254, 0.84);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo23-intel-rail-item strong {
  color: #ffffff;
  text-align: right;
}

.wo23-intel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wo23-intel-card {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.45rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-intel-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.wo23-intel-metric {
  min-height: 112px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.25rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-intel-table th {
  color: #334155;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wo23-intel-table td {
  vertical-align: middle;
}

.wo23-intel-chart-frame {
  height: 330px;
  min-height: 330px;
}

.wo23-intel-card code,
.wo23-intel-metric code {
  color: #1d4ed8;
  word-break: break-all;
}

@media (max-width: 1180px) {
  .wo23-intel-hero,
  .wo23-intel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wo23-intel-metric-grid {
    grid-template-columns: 1fr;
  }
}
/* /Wo-2.3 network intelligence operational surface */

/* Wo-2.3 control plane operational surface */
.wo23-control-surface {
  display: grid;
  gap: 1rem;
}

.wo23-control-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(191, 219, 254, 0.26);
  border-radius: 2rem;
  padding: clamp(1.25rem, 3vw, 2.15rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.84)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.20), transparent 24rem);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.30);
}

.wo23-control-hero.danger {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(45, 25, 32, 0.86)),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.22), transparent 24rem);
}

.wo23-control-hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.16), transparent 68%);
  pointer-events: none;
}

.wo23-control-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.wo23-control-rail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.1rem;
  padding: 0.85rem 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(2, 6, 23, 0.44);
  backdrop-filter: blur(14px);
}

.wo23-control-rail-item span {
  color: rgba(191, 219, 254, 0.84);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wo23-control-rail-item strong {
  color: #ffffff;
  text-align: right;
}

.wo23-control-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.wo23-control-metric {
  min-height: 112px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.25rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-control-card {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.45rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--bhrc-ink);
}

.wo23-control-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.wo23-control-action {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 132px;
  text-align: left;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 1.15rem;
  padding: 1rem;
  background: #ffffff;
  color: #0f172a;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.wo23-control-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.wo23-control-action strong {
  font-size: 1rem;
}

.wo23-control-action small {
  color: #64748b;
  line-height: 1.5;
}

.wo23-control-action.danger {
  border-color: rgba(239, 68, 68, 0.42);
  background: linear-gradient(180deg, #fff7f7, #ffffff);
}

.wo23-control-action.warning {
  border-color: rgba(245, 158, 11, 0.42);
  background: linear-gradient(180deg, #fffbeb, #ffffff);
}

.wo23-control-action.neutral {
  border-color: rgba(100, 116, 139, 0.36);
}

.wo23-control-action.info {
  border-color: rgba(14, 165, 233, 0.36);
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
}

.wo23-control-table th {
  color: #334155;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wo23-control-table td {
  vertical-align: middle;
}

.wo23-mini-badge.danger {
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.34);
  background: rgba(239, 68, 68, 0.10);
}

@media (max-width: 1180px) {
  .wo23-control-hero,
  .wo23-control-action-grid {
    grid-template-columns: 1fr;
  }

  .wo23-control-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wo23-control-metric-grid {
    grid-template-columns: 1fr;
  }
}
/* /Wo-2.3 control plane operational surface */

/* Wo-2.4 public surface v2 foundation */
body.wo24-public-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(96, 165, 250, 0.20), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(168, 85, 247, 0.18), transparent 32rem),
    linear-gradient(135deg, #020617 0%, #07111f 48%, #020617 100%);
}

body.wo24-public-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 78%);
  z-index: -1;
}

.wo24-www-shell {
  position: relative;
}

.wo24-public-nav {
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.wo24-public-brand img {
  filter: drop-shadow(0 14px 28px rgba(96, 165, 250, 0.30));
}

.wo24-public-main {
  display: grid;
  gap: 1rem;
}

.wo24-public-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(191, 219, 254, 0.24);
  border-radius: 2rem;
  padding: clamp(1.35rem, 4vw, 2.55rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.86)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.20), transparent 28rem);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.34);
}

.wo24-public-hero.compact {
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
}

.wo24-public-hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 21rem;
  height: 21rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 68%);
  pointer-events: none;
}

.wo24-public-hero-copy,
.wo24-public-hero > div {
  position: relative;
  z-index: 1;
}

.wo24-eyebrow {
  color: rgba(191, 219, 254, 0.94);
}

.wo24-public-title {
  color: #ffffff;
  max-width: 940px;
  letter-spacing: -0.075em;
}

.wo24-public-copy {
  max-width: 760px;
  color: rgba(226, 232, 240, 0.82);
}

.wo24-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.wo24-public-sidecard,
.wo24-public-metrics {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(191, 219, 254, 0.20);
  border-radius: 1.45rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.wo24-public-sidecard {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-height: 180px;
}

.wo24-public-sidecard span {
  color: rgba(191, 219, 254, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.wo24-public-sidecard strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.wo24-public-sidecard small {
  color: rgba(226, 232, 240, 0.72);
}

.wo24-public-grid,
.wo24-dashboard-grid,
.wo24-block-grid {
  display: grid;
  gap: 1rem;
}

.wo24-public-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wo24-dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wo24-block-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wo24-public-card,
.wo24-metric-card,
.wo24-block-card {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}

.wo24-public-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #2563eb;
  font-weight: 850;
  text-decoration: none;
}

.wo24-card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.85rem;
  color: #1d4ed8;
  background: rgba(96, 165, 250, 0.12);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.wo24-block-card {
  padding: 1rem;
}

.wo24-block-head,
.wo24-block-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.wo24-block-head {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
}

.wo24-block-head span,
.wo24-block-row span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wo24-block-head strong {
  color: #0f172a;
  font-size: 1.5rem;
}

.wo24-block-row {
  padding: 0.42rem 0;
}

.wo24-block-row code {
  max-width: 65%;
  text-align: right;
  word-break: break-all;
  color: #1d4ed8;
}

.wo24-event-list {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.86);
  padding-top: 0.75rem;
}

.wo24-search-card {
  display: grid;
  gap: 1rem;
}

.wo24-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.wo24-public-input {
  min-height: 48px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 999px;
  padding: 0.72rem 1rem;
}

.wo24-output {
  min-height: 260px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #f8fafc;
  color: #0f172a;
  white-space: pre-wrap;
  word-break: break-word;
}

.wo24-public-footer {
  color: rgba(226, 232, 240, 0.78);
}

.wo24-ready .wo24-public-nav {
  border-color: rgba(96, 165, 250, 0.36);
}

@media (max-width: 1120px) {
  .wo24-public-hero,
  .wo24-public-hero.compact,
  .wo24-public-grid,
  .wo24-dashboard-grid,
  .wo24-block-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .wo24-search-form {
    grid-template-columns: 1fr;
  }

  .wo24-block-head,
  .wo24-block-row {
    display: grid;
  }

  .wo24-block-row code {
    max-width: 100%;
    text-align: left;
  }
}
/* /Wo-2.4 public surface v2 foundation */

/* Wo-2.5 mobile pwa contract surface */
.wo25-pwa-body {
  min-height: 100vh;
}

.wo25-pwa-shell {
  isolation: isolate;
}

.wo25-pwa-nav {
  border-color: rgba(34, 197, 94, 0.24);
}

.wo25-pwa-hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(18, 37, 41, 0.88)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.22), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.16), transparent 24rem);
}

.wo25-feed-panel {
  display: grid;
  gap: 0.75rem;
}

.wo25-contract-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wo25-contract-card {
  position: relative;
  overflow: hidden;
}

.wo25-contract-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.14), transparent 68%);
  pointer-events: none;
}

.wo25-contract-card h2 {
  color: #0f172a;
}

.wo25-contract-card p {
  color: #475569;
}

.wo25-pwa-ready .wo25-pwa-nav {
  box-shadow: 0 18px 70px rgba(34, 197, 94, 0.10);
}

.wo25-pwa-ready [data-bhrc-wo25-feed-panel] {
  border-color: rgba(34, 197, 94, 0.28);
}

@media (max-width: 1120px) {
  .wo25-contract-grid {
    grid-template-columns: 1fr;
  }
}
/* /Wo-2.5 mobile pwa contract surface */
/* Wo-3.1 release console visual layer */
.bhrc-release-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(84, 127, 255, 0.18), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.13), transparent 30rem),
    #07111f;
  color: #e5eefc;
}

.bhrc-release-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.bhrc-release-hero {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.bhrc-release-kicker {
  margin: 0 0 10px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bhrc-release-hero h1,
.bhrc-release-section h2 {
  margin: 0;
  color: #f8fafc;
}

.bhrc-release-hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.bhrc-release-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 1.04rem;
  line-height: 1.7;
}

.bhrc-release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.bhrc-release-card {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 22px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.bhrc-release-card-wide {
  grid-column: span 2;
}

.bhrc-release-label {
  display: block;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bhrc-release-value {
  display: block;
  margin-top: 10px;
  color: #f8fafc;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

.bhrc-release-code {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.72);
  color: #bfdbfe;
  font-size: 0.82rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.bhrc-release-muted {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.bhrc-copy-button {
  margin-top: 12px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(37, 99, 235, 0.2);
  color: #dbeafe;
  font-weight: 800;
  cursor: pointer;
}

.bhrc-copy-button:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.5);
  outline-offset: 3px;
}

.bhrc-release-section {
  margin-top: 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 24px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.68);
}

.bhrc-release-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.bhrc-release-table-wrap {
  overflow-x: auto;
}

.bhrc-release-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.bhrc-release-table th,
.bhrc-release-table td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.bhrc-release-table th {
  color: #93c5fd;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bhrc-release-table td {
  color: #dbeafe;
}

.bhrc-release-table code {
  color: #bfdbfe;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .bhrc-release-grid {
    grid-template-columns: 1fr;
  }

  .bhrc-release-card-wide {
    grid-column: span 1;
  }

  .bhrc-release-hero {
    padding: 24px;
  }
}

/* BHRC official public surface */
body.bhrc-site-body {
  min-height: 100vh;
  color: #101820;
  background: #f5f7fb !important;
}

body.bhrc-site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
}

.bhrc-site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bhrc-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px 0;
}

.bhrc-site-brand,
.bhrc-site-actions,
.bhrc-hero-actions {
  display: flex;
  align-items: center;
}

.bhrc-site-brand {
  gap: 10px;
  color: #101820;
  font-weight: 850;
}

.bhrc-site-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.bhrc-site-actions,
.bhrc-hero-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bhrc-nav-link,
.bhrc-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

.bhrc-nav-link {
  color: #334155;
  padding: 0 10px;
}

.bhrc-nav-link:hover {
  color: #0f766e;
}

.bhrc-btn {
  border: 1px solid #cbd5e1;
  color: #101820;
  background: #ffffff;
  padding: 0 14px;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.bhrc-btn-primary {
  border-color: #0f766e;
  color: #ffffff;
  background: #0f766e;
}

.bhrc-official-hero,
.bhrc-scan-hero {
  color: #ffffff;
  background-color: #101820;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bhrc-official-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.bhrc-hero-layout,
.bhrc-scan-hero-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.bhrc-hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.bhrc-scan-hero {
  padding: 46px 0;
}

.bhrc-scan-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
}

.bhrc-kicker {
  margin: 0 0 12px;
  color: #14b8a6;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bhrc-hero-copy h1,
.bhrc-scan-hero h1,
.bhrc-section-head h2,
.bhrc-economy-band h2 {
  margin: 0;
  letter-spacing: 0;
}

.bhrc-hero-copy h1 {
  max-width: 720px;
  font-size: 4rem;
  line-height: 1;
}

.bhrc-scan-hero h1 {
  max-width: 680px;
  font-size: 2.75rem;
  line-height: 1.06;
}

.bhrc-hero-copy p:not(.bhrc-kicker),
.bhrc-scan-hero p:not(.bhrc-kicker) {
  max-width: 700px;
  color: #dbe7f3;
  font-size: 1.05rem;
  line-height: 1.72;
}

.bhrc-chain-visual {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.bhrc-chain-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bhrc-chain-ledger span,
.bhrc-stat-strip article,
.bhrc-feature-card,
.bhrc-block-card,
.bhrc-economy-band,
.bhrc-search-output {
  border-radius: 8px;
}

.bhrc-chain-ledger span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px;
  color: #e2e8f0;
  background: rgba(16, 24, 32, 0.54);
  font-weight: 780;
}

.bhrc-chain-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px;
}

.bhrc-chain-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #14b8a6;
}

.bhrc-chain-track i {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border: 2px solid #14b8a6;
  border-radius: 8px;
  background: #101820;
}

.bhrc-chain-track i:nth-child(2),
.bhrc-chain-track i:nth-child(4) {
  border-color: #f59e0b;
}

.bhrc-chain-hash {
  border-left: 4px solid #14b8a6;
  padding-left: 16px;
}

.bhrc-chain-hash small {
  display: block;
  color: #a7f3d0;
  font-weight: 760;
}

.bhrc-chain-hash strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
}

.bhrc-stat-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.bhrc-scan-stats {
  margin-top: 18px;
}

.bhrc-stat-strip article {
  min-height: 88px;
  border: 1px solid #d8e0ea;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.bhrc-stat-strip span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 760;
}

.bhrc-stat-strip strong {
  display: block;
  margin-top: 8px;
  color: #101820;
  font-size: 1.55rem;
}

.bhrc-section {
  padding: 58px 0 18px;
}

.bhrc-section-head {
  max-width: 680px;
  margin-bottom: 18px;
}

.bhrc-section-head h2,
.bhrc-economy-band h2 {
  color: #101820;
  font-size: 2rem;
}

.bhrc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bhrc-feature-card,
.bhrc-block-card {
  border: 1px solid #d8e0ea;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.bhrc-feature-card span {
  color: #0f766e;
  font-weight: 850;
}

.bhrc-feature-card h3 {
  margin: 14px 0 8px;
  color: #101820;
}

.bhrc-feature-card p {
  min-height: 82px;
  margin: 0;
  color: #475569;
  line-height: 1.58;
}

.bhrc-feature-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #0f766e;
  font-weight: 820;
}

.bhrc-economy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid #d8e0ea;
  background: #ffffff;
  padding: 24px;
}

.bhrc-economy-band dl,
.bhrc-block-card dl {
  margin: 0;
}

.bhrc-economy-band dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bhrc-economy-band dt,
.bhrc-block-card dt {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 760;
}

.bhrc-economy-band dd {
  margin: 5px 0 0;
  color: #101820;
  font-weight: 850;
}

.bhrc-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 34px 0;
  color: #64748b;
}

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

.bhrc-scan-search input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #101820;
  background: #ffffff;
  padding: 0 12px;
}

.bhrc-search-result-wrap {
  margin-top: 14px;
}

.bhrc-search-output {
  min-height: 150px;
  width: 100%;
  margin: 0;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  color: #101820;
  background: #ffffff;
  padding: 16px;
  word-break: break-word;
}

.bhrc-search-placeholder {
  margin: 0;
  color: #64748b;
}

.bhrc-search-card {
  display: grid;
  gap: 16px;
}

.bhrc-search-card header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.bhrc-search-card h2 {
  margin: 0;
  color: #101820;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.bhrc-result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 850;
}

.bhrc-result-note {
  margin: 0;
  color: #475569;
}

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

.bhrc-block-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.bhrc-block-card header span {
  color: #64748b;
  font-weight: 760;
}

.bhrc-block-card header strong {
  color: #101820;
  font-size: 1.55rem;
}

.bhrc-block-card dl {
  display: grid;
  gap: 10px;
}

.bhrc-block-card dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}

.bhrc-block-card dd {
  min-width: 0;
  margin: 0;
  color: #101820;
  text-align: right;
}

.bhrc-block-card code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  border: 0;
  background: transparent;
  color: #0f766e;
  padding: 0;
}

@media (max-width: 980px) {
  .bhrc-site-nav,
  .bhrc-site-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .bhrc-site-nav {
    flex-direction: column;
  }

  .bhrc-hero-layout,
  .bhrc-scan-hero-layout,
  .bhrc-feature-grid,
  .bhrc-economy-band,
  .bhrc-economy-band dl,
  .bhrc-block-list {
    grid-template-columns: 1fr;
  }

  .bhrc-stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bhrc-hero-copy h1 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .bhrc-site-shell {
    width: min(100% - 22px, 1180px);
  }

  .bhrc-official-hero {
    min-height: auto;
    padding: 38px 0 54px;
  }

  .bhrc-hero-copy h1,
  .bhrc-scan-hero h1 {
    font-size: 2.25rem;
  }

  .bhrc-stat-strip,
  .bhrc-scan-search {
    grid-template-columns: 1fr;
  }

  .bhrc-block-card dl div {
    grid-template-columns: 1fr;
  }

  .bhrc-block-card dd {
    text-align: left;
  }

  .bhrc-site-footer {
    flex-direction: column;
  }
}
/* /BHRC official public surface */

/* BehindApp public home */
/* BehindApp public home body scrollbar link base contract */
body.bhrc-home-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #0f1115;
  background: #ffffff !important;
  scrollbar-width: thin;
  scrollbar-color: #b7c0c8 #ffffff;
}

body.bhrc-home-body::before {
  display: none;
}

html:has(body.bhrc-home-body) {
  scrollbar-width: thin;
  scrollbar-color: #b7c0c8 #ffffff;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar,
body.bhrc-home-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar-track,
body.bhrc-home-body::-webkit-scrollbar-track {
  background: #ffffff;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar-thumb,
body.bhrc-home-body::-webkit-scrollbar-thumb {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #b7c0c8;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar-thumb:hover,
body.bhrc-home-body::-webkit-scrollbar-thumb:hover {
  background: #929da6;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar:horizontal,
body.bhrc-home-body::-webkit-scrollbar:horizontal {
  width: 0;
  height: 0;
  display: none;
}

html:has(body.bhrc-home-body)::-webkit-scrollbar-corner,
body.bhrc-home-body::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
  background: transparent;
}

body.bhrc-home-body a {
  color: #566174;
  text-decoration: none;
}

body.bhrc-home-body a:hover {
  text-decoration: none;
}
/* /BehindApp public home body scrollbar link base contract */

/* BehindApp public home layout base contract */
.bhrc-home-page {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 3fr);
  min-height: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 46%, rgba(0, 0, 0, 0.025) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 22%, rgba(0, 0, 0, 0.025) 0 1px, transparent 1.5px),
    #ffffff;
  background-size: 220px 220px, 280px 280px, 340px 340px, auto;
}

.bhrc-home-left {
  position: relative;
  min-height: 0;
  padding: 0;
  border-right: 1px solid #d8dde3;
  overflow: hidden;
}

.bhrc-home-logo-sketch,
.bhrc-home-sketch,
.bhrc-home-slogan {
  display: none !important;
}

.bhrc-home-right {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(58px, 10vh, 86px) clamp(24px, 2.4vw, 38px) 34px;
  background: rgba(255, 255, 255, 0.88);
}

.bhrc-home-login {
  width: min(100%, 420px);
}
/* /BehindApp public home layout base contract */

/* BehindApp public home profile settings trigger contract */
.bhrc-home-profile-settings {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: clamp(52px, 10vh, 88px);
  right: clamp(18px, 2.4vw, 42px);
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #111827;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: none;
}

.bhrc-home-profile-settings .bhrc-workspace-icon {
  width: 24px;
  height: 24px;
  background-color: currentColor;
}

.bhrc-home-profile-settings:hover,
.bhrc-home-profile-settings:focus,
.bhrc-home-profile-settings:active {
  color: #050505;
  background: rgba(31, 41, 55, 0.06);
  outline: none;
  transform: none;
}

.bhrc-home-profile-settings[hidden] {
  display: none;
}
/* /BehindApp public home profile settings trigger contract */

/* BehindApp public home remembered profile shell contract */
.bhrc-home-remembered {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  align-content: start;
  color: #050505;
}

.bhrc-home-remembered[hidden] {
  display: none;
}

.bhrc-home-has-remembered-profile .bhrc-home-login {
  display: none;
}

.bhrc-home-has-remembered-profile .bhrc-home-right {
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}
/* /BehindApp public home remembered profile shell contract */

/* BehindApp public home remembered avatar frame contract */
.bhrc-home-remembered-avatar,
.bhrc-home-profile-remove-avatar {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e5e8ec;
  border: 1px solid #cfd5dc;
  overflow: hidden;
}

.bhrc-home-remembered-avatar {
  width: 180px;
  height: 180px;
  margin-bottom: 28px;
}

.bhrc-home-profile-remove-avatar {
  width: 40px;
  height: 40px;
}
/* /BehindApp public home remembered avatar frame contract */

/* BehindApp public home remembered avatar placeholder contract */
.bhrc-home-remembered-avatar.has-photo,
.bhrc-home-profile-remove-avatar.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bhrc-home-remembered-avatar::before,
.bhrc-home-profile-remove-avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 25%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: #737b84;
  transform: translateX(-50%);
}

.bhrc-home-remembered-avatar::after,
.bhrc-home-profile-remove-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 70%;
  height: 46%;
  border-radius: 48% 48% 0 0;
  background: #737b84;
  transform: translateX(-50%);
}

.bhrc-home-remembered-avatar.has-photo::before,
.bhrc-home-remembered-avatar.has-photo::after,
.bhrc-home-profile-remove-avatar.has-photo::before,
.bhrc-home-profile-remove-avatar.has-photo::after {
  display: none;
}
/* /BehindApp public home remembered avatar placeholder contract */

/* BehindApp public home remembered heading actions contract */
.bhrc-home-remembered h2 {
  margin: 0 0 32px;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 760;
  text-align: center;
}

.bhrc-home-remembered .bhrc-home-login-button,
.bhrc-home-remembered .bhrc-home-create-button {
  margin-top: 0;
}

.bhrc-home-remembered-secondary {
  margin-top: 12px !important;
}

.bhrc-home-remembered-create {
  margin-top: 40px !important;
}
/* /BehindApp public home remembered heading actions contract */

/* BehindApp public home login form shell contract */
.bhrc-home-login-title {
  margin: 0 0 24px;
  color: #050505;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 760;
}

.bhrc-home-form {
  width: 100%;
}

.bhrc-home-login.is-verification-active .bhrc-home-login-title,
.bhrc-home-form.is-verification-active .bhrc-home-login-primary {
  display: none;
}

.bhrc-home-field-group {
  position: relative;
  margin-bottom: 15px;
}
/* /BehindApp public home login form shell contract */

/* BehindApp public home input label base contract */
.bhrc-home-input {
  width: 100%;
  height: 58px;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  color: #1f2937;
  padding: 22px 16px 8px;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bhrc-home-label {
  position: absolute;
  top: 19px;
  left: 16px;
  color: rgba(75, 85, 99, 0.78);
  font-size: 16px;
  pointer-events: none;
  transition: top 160ms ease, font-size 160ms ease, color 160ms ease;
}

.bhrc-home-input:focus {
  border-color: #9aa3ad;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 163, 173, 0.18);
}

.bhrc-home-input:disabled {
  border-color: #d8dde3;
  background: #f4f5f6;
  color: #78838e;
  cursor: not-allowed;
  box-shadow: none;
}

.bhrc-home-input:focus + .bhrc-home-label,
.bhrc-home-field-group[data-has-value="true"] .bhrc-home-label,
.bhrc-home-input:not(:placeholder-shown) + .bhrc-home-label {
  top: 7px;
  color: rgba(75, 85, 99, 0.86);
  font-size: 12px;
}
/* /BehindApp public home input label base contract */

/* BehindApp public home autofill base contract */
.bhrc-home-input:-webkit-autofill {
  -webkit-text-fill-color: #1f2937 !important;
  caret-color: #1f2937;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 999999s ease-out, color 999999s ease-out;
}

.bhrc-home-input:-webkit-autofill:hover,
.bhrc-home-input:-webkit-autofill:active {
  -webkit-text-fill-color: #1f2937 !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.bhrc-home-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1f2937 !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 3px rgba(154, 163, 173, 0.18) !important;
  box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 3px rgba(154, 163, 173, 0.18) !important;
}

.bhrc-home-input:-webkit-autofill + .bhrc-home-label {
  top: 7px;
  color: rgba(75, 85, 99, 0.86);
  font-size: 12px;
}

@supports selector(:autofill) {
  .bhrc-home-input:autofill {
    color: #1f2937;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
  }

  .bhrc-home-input:autofill + .bhrc-home-label {
    top: 7px;
    color: rgba(75, 85, 99, 0.86);
    font-size: 12px;
  }
}
/* /BehindApp public home autofill base contract */

/* BehindApp public home captcha verification surface contract */
.bhrc-home-captcha {
  margin: 2px 0 0;
  padding: 10px 12px 12px;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  background: #ffffff;
}

.bhrc-home-captcha.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.bhrc-home-captcha-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 690;
}

.bhrc-home-captcha-mark {
  width: 15px;
  height: 15px;
  border: 1px solid #9aa3ad;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(156, 167, 179, 0.18) 0 34%, transparent 36%),
    #ffffff;
}

.bhrc-home-captcha-refresh {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  transform: none;
  transition: none;
}

.bhrc-home-captcha-refresh:hover,
.bhrc-home-captcha-refresh:active,
.bhrc-home-captcha-refresh:focus {
  background: #ffffff;
  color: #1f2937;
  outline: none;
  transform: none;
}

.bhrc-home-captcha-body {
  margin-top: 9px;
}

.bhrc-captcha-loading,
.bhrc-captcha-invisible {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 13px;
}

.bhrc-captcha-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(154, 163, 173, 0.34);
  border-top-color: #566174;
  border-radius: 50%;
  animation: bhrc-captcha-spin 780ms linear infinite;
}

.bhrc-captcha-spinner-inline {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

@keyframes bhrc-captcha-spin {
  to {
    transform: rotate(360deg);
  }
}

.bhrc-captcha-check {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  cursor: pointer;
  font: inherit;
  padding: 8px 10px;
  text-align: left;
  transform: none;
  transition: none;
}

.bhrc-captcha-check:hover,
.bhrc-captcha-check:active,
.bhrc-captcha-check:focus {
  background: #ffffff;
  transform: none;
  outline: none;
}

.bhrc-captcha-check:disabled {
  cursor: wait;
}

.bhrc-captcha-checkbox {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #9aa3ad;
  border-radius: 4px;
  color: transparent;
  font-size: 15px;
  line-height: 1;
}

.bhrc-captcha-check[data-state="checking"] .bhrc-captcha-checkbox {
  border-color: #8c96a4;
}

.bhrc-captcha-check[aria-pressed="true"] .bhrc-captcha-checkbox {
  color: #1f7a4a;
  border-color: #1f7a4a;
}

.bhrc-captcha-check[data-state="verified"] {
  color: #1f7a4a;
}

.bhrc-captcha-check[data-state="retry"] .bhrc-captcha-checkbox {
  color: #8a4b3a;
  border-color: #8a4b3a;
}

.bhrc-captcha-text-row {
  display: grid;
  grid-template-columns: minmax(142px, 172px) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.bhrc-captcha-code {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  color: #1f2937;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.08) 0, rgba(15, 17, 21, 0.08) 1px, transparent 1px, transparent 7px),
    #ffffff;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: 2px;
}

.bhrc-captcha-code::before,
.bhrc-captcha-code::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(31, 41, 55, 0.32);
  pointer-events: none;
}

.bhrc-captcha-code::before {
  top: 42%;
  transform: rotate(-7deg);
}

.bhrc-captcha-code::after {
  top: 62%;
  transform: rotate(5deg);
}

.bhrc-captcha-glyph {
  display: inline-block;
  position: relative;
  z-index: 1;
  transform: translateY(var(--captcha-shift, 0)) rotate(var(--captcha-rotate, 0)) skewX(var(--captcha-skew, 0)) scaleX(var(--captcha-scale, 1));
  transform-origin: center;
  filter: blur(var(--captcha-blur, 0));
  text-shadow:
    0.8px 0 rgba(86, 97, 116, 0.26),
    -0.7px 0 rgba(255, 255, 255, 0.42);
}

.bhrc-captcha-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 172px;
  height: 42px;
  object-fit: contain;
}

.bhrc-captcha-answer-input {
  width: 100%;
  height: 38px;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  outline: none;
  padding: 0 11px;
  font-family: inherit;
  font-size: 14px;
}

.bhrc-captcha-answer-input:focus {
  border-color: #9aa3ad;
  box-shadow: 0 0 0 3px rgba(154, 163, 173, 0.16);
}

.bhrc-captcha-visual-instruction {
  margin: 0 0 8px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.3;
}

.bhrc-captcha-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.bhrc-captcha-tile {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transform: none;
  transition: none;
}

.bhrc-captcha-tile:hover,
.bhrc-captcha-tile:active,
.bhrc-captcha-tile:focus {
  background: #ffffff;
  transform: none;
  outline: none;
}

.bhrc-captcha-tile[aria-pressed="true"] {
  border-color: #566174;
  box-shadow: inset 0 0 0 2px rgba(86, 97, 116, 0.28);
}

.bhrc-captcha-symbol {
  --captcha-tone: #9aa3ad;
  --captcha-clip: inset(0 round 4px);
  --captcha-inner-inset: 4px;
  --captcha-radius: 4px;
  --captcha-rotate: 0deg;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  transform: rotate(var(--captcha-rotate));
}

.bhrc-captcha-symbol::before,
.bhrc-captcha-symbol::after {
  content: "";
  position: absolute;
  display: block;
  clip-path: var(--captcha-clip);
  pointer-events: none;
}

.bhrc-captcha-symbol::before {
  inset: 0;
  background: var(--captcha-tone);
  border-radius: var(--captcha-radius);
}

.bhrc-captcha-symbol::after {
  inset: var(--captcha-inner-inset);
  background:
    repeating-linear-gradient(-20deg, rgba(15, 17, 21, 0.12) 0, rgba(15, 17, 21, 0.12) 1px, transparent 1px, transparent 5px),
    rgba(255, 255, 255, 0.88);
  border-radius: calc(var(--captcha-radius) * 0.72);
}

.bhrc-captcha-symbol[data-shape="triangle"] {
  --captcha-clip: polygon(50% 2%, 96% 94%, 4% 94%);
  --captcha-radius: 2px;
  --captcha-inner-inset: 5px;
}

.bhrc-captcha-symbol[data-shape="square"] {
  --captcha-radius: 4px;
}

.bhrc-captcha-symbol[data-shape="rectangle"] {
  width: 31px;
  height: 19px;
  --captcha-radius: 4px;
}

.bhrc-captcha-symbol[data-shape="circle"] {
  --captcha-clip: circle(50% at 50% 50%);
  --captcha-radius: 50%;
  --captcha-inner-inset: 6px;
}

.bhrc-captcha-symbol[data-shape="disk"] {
  --captcha-clip: circle(50% at 50% 50%);
  --captcha-radius: 50%;
  --captcha-inner-inset: 3px;
}

.bhrc-captcha-symbol[data-shape="disk"]::after {
  background:
    repeating-linear-gradient(-20deg, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0.24) 1px, transparent 1px, transparent 5px),
    var(--captcha-tone);
}

.bhrc-captcha-symbol[data-shape="rhombus"] {
  --captcha-clip: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="parallelogram"] {
  width: 30px;
  height: 21px;
  --captcha-clip: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="trapezoid"] {
  width: 30px;
  height: 22px;
  --captcha-clip: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="cube"] {
  --captcha-clip: polygon(28% 5%, 72% 5%, 95% 28%, 95% 72%, 72% 95%, 28% 95%, 5% 72%, 5% 28%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="cone"] {
  width: 25px;
  height: 28px;
  --captcha-clip: polygon(50% 0, 94% 82%, 78% 100%, 22% 100%, 6% 82%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="rectangular_prism"] {
  width: 31px;
  height: 22px;
  --captcha-clip: polygon(16% 0, 78% 0, 100% 24%, 100% 84%, 84% 100%, 20% 100%, 0 76%, 0 18%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="square_prism"] {
  width: 27px;
  height: 25px;
  --captcha-clip: polygon(22% 0, 82% 0, 100% 20%, 100% 82%, 78% 100%, 18% 100%, 0 78%, 0 18%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="triangular_prism"] {
  width: 31px;
  height: 24px;
  --captcha-clip: polygon(8% 94%, 30% 10%, 74% 10%, 96% 94%, 72% 78%, 30% 78%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="pentagon"] {
  --captcha-clip: polygon(50% 0, 96% 35%, 78% 100%, 22% 100%, 4% 35%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="hexagon"] {
  --captcha-clip: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  --captcha-radius: 2px;
}

.bhrc-captcha-symbol[data-shape="cylinder"] {
  width: 23px;
  height: 29px;
  --captcha-clip: ellipse(48% 50% at 50% 50%);
  --captcha-radius: 999px;
  --captcha-inner-inset: 4px;
}

.bhrc-captcha-symbol[data-tone="mint"] {
  --captcha-tone: #79b696;
}

.bhrc-captcha-symbol[data-tone="blue"] {
  --captcha-tone: #7f9fd7;
}

.bhrc-captcha-symbol[data-tone="amber"] {
  --captcha-tone: #d2a064;
}

.bhrc-captcha-symbol[data-tone="rose"] {
  --captcha-tone: #c98992;
}

.bhrc-captcha-symbol[data-tone="violet"] {
  --captcha-tone: #9886c7;
}

.bhrc-captcha-symbol[data-tone="slate"] {
  --captcha-tone: #9aa3ad;
}

.bhrc-captcha-symbol[data-tone="teal"] {
  --captcha-tone: #6fb6b2;
}

.bhrc-captcha-symbol[data-tone="graphite"] {
  --captcha-tone: #707985;
}

.bhrc-home-login-verification {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  background: #ffffff;
}

.bhrc-home-form.is-verification-active .bhrc-home-login-verification {
  margin-top: 0;
}

.bhrc-home-login-verification[hidden] {
  display: none;
}

.bhrc-home-verification-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.bhrc-home-verification-back {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #1f2937;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.bhrc-home-verification-back:hover,
.bhrc-home-verification-back:focus,
.bhrc-home-verification-back:active {
  color: #050505;
  background: rgba(31, 41, 55, 0.06);
  outline: none;
}

.bhrc-home-verification-back .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  background-color: currentColor;
}

.bhrc-home-login-verification h3 {
  margin: 0;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.25;
}

.bhrc-home-login-verification p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.bhrc-home-login-verification strong {
  color: #111827;
}

.bhrc-home-verification-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.bhrc-home-verification-status {
  margin: 0 0 12px;
}

.bhrc-home-verification-actions .bhrc-home-login-button,
.bhrc-home-verification-actions .bhrc-home-create-button {
  margin-top: 0;
}

.bhrc-home-login-button,
.bhrc-home-create-button {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  font-weight: 560;
  transform: none;
  transition: none;
}

.bhrc-home-login-button {
  margin-top: 11px;
  border: 1px solid #9aa3ad;
  color: #566174;
  background: #ffffff;
  box-shadow: none;
}

.bhrc-home-login-button:hover {
  border-color: #7f8894;
  color: #1f2937;
  background: #f4f5f6;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

.bhrc-home-login-button:active,
.bhrc-home-login-button:focus {
  border-color: #7f8894;
  color: #1f2937;
  background: #f4f5f6;
  box-shadow: none;
  outline: none;
  transform: none;
}

.bhrc-home-login-button:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.36);
  outline-offset: 3px;
}

.bhrc-home-login-button:disabled,
.bhrc-home-login-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.54;
}

.bhrc-home-login-button:disabled:hover,
.bhrc-home-login-button[aria-disabled="true"]:hover {
  border-color: #9aa3ad;
  color: #566174;
  background: #ffffff;
  box-shadow: none;
  transform: none;
}

.bhrc-home-login-status {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 690;
}

.bhrc-home-login-status[data-tone="success"] {
  color: #176f3d;
}

.bhrc-home-login-status[data-tone="error"] {
  color: #7a2f1f;
}

.bhrc-home-login-status[hidden] {
  display: none;
}
.bhrc-home-muted-link {
  display: block;
  width: fit-content;
  margin: 25px auto 0;
  color: #111827;
  font-size: 16px;
  font-weight: 740;
}

.bhrc-home-create-button {
  margin-top: 64px;
  border: 1px solid #9aa3ad;
  color: #566174;
  background: #ffffff;
  font-weight: 560;
  box-shadow: none;
}

.bhrc-home-create-button:hover,
.bhrc-home-create-button:active,
.bhrc-home-create-button:focus {
  border-color: #7f8894;
  color: #1f2937;
  background: #f4f5f6;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-home-create-button:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-home-create-button:disabled,
.bhrc-home-create-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
}

.bhrc-home-create-button:disabled:hover,
.bhrc-home-create-button[aria-disabled="true"]:hover,
.bhrc-home-create-button:disabled:focus,
.bhrc-home-create-button[aria-disabled="true"]:focus {
  border-color: #9aa3ad;
  color: #566174;
  background: #ffffff;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}
/* /BehindApp public home captcha verification surface contract */

/* BehindApp public home footer contract */
.bhrc-home-footer {
  border-top: 1px solid #d8dde3;
  background: #ffffff;
}

.bhrc-home-footer-inner {
  width: min(1070px, calc(100% - 42px));
  margin: 0 auto;
  padding: 20px 0 12px;
  color: #606b7d;
  font-size: 14px;
}

.bhrc-home-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 12px;
}

.bhrc-home-footer-row [data-bhrc-locale-option][aria-current="true"] {
  color: #111827;
  font-weight: 780;
}

.bhrc-home-footer-disabled-link {
  color: #8d96a5;
  cursor: not-allowed;
  opacity: 0.58;
}

.bhrc-home-footer-copy {
  margin: 3px 0 0;
  color: #4b5563;
  font-size: 14px;
  text-align: center;
}
/* /BehindApp public home footer contract */

/* BehindApp public home forgot recovery scaffold contract */
.bhrc-forgot-body {
  min-height: 100vh;
}

.bhrc-forgot-main {
  flex: 1;
  width: min(600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 70px;
}

.bhrc-forgot-panel {
  width: 100%;
}

.bhrc-forgot-back {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 28px;
  color: #566174;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  transform: none;
  transition: none;
}

.bhrc-forgot-back .bhrc-workspace-icon {
  width: 23px;
  height: 23px;
  background-color: currentColor;
}

.bhrc-forgot-back:hover,
.bhrc-forgot-back:active,
.bhrc-forgot-back:focus {
  color: #1f2937;
  background: transparent;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-forgot-back:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-forgot-panel h1 {
  margin: 0 0 6px;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 760;
}

.bhrc-forgot-panel p {
  margin: 0 0 14px;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.35;
}

.bhrc-forgot-form {
  width: 100%;
}

.bhrc-forgot-submit {
  margin-top: 14px;
}

.bhrc-forgot-panel[hidden] {
  display: none;
}

.bhrc-recovery-code-panel {
  padding-top: 0;
}

.bhrc-recovery-reset-panel {
  padding-top: 36px;
}
/* /BehindApp public home forgot recovery scaffold contract */

/* BehindApp public home recovery alert and timer contract */
.bhrc-recovery-alert {
  margin: -2px 0 14px !important;
  border: 1px solid rgba(196, 93, 66, 0.38);
  border-radius: 8px;
  background: rgba(196, 93, 66, 0.08);
  color: #7a2f1f !important;
  padding: 10px 12px;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 690;
}

.bhrc-recovery-alert[hidden] {
  display: none;
}

.bhrc-recovery-timer {
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  margin: -4px 0 14px;
  border: 1px solid #cfd7e3;
  border-radius: 999px;
  background: #eef2f7;
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.08);
  color: #0f172a;
}

.bhrc-recovery-timer[hidden] {
  display: none;
}

.bhrc-recovery-timer-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bhrc-recovery-timer-progress, 100%);
  border-radius: inherit;
  background: #d7dde7;
  transition: width 0.25s linear;
}

.bhrc-recovery-timer-value {
  position: relative;
  z-index: 1;
  min-width: 48px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  padding: 0 12px;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
/* /BehindApp public home recovery alert and timer contract */

/* BehindApp public home confirmation base prelude */
.bhrc-confirmation-body {
  min-height: 100vh;
  overflow-y: auto;
}

.bhrc-confirmation-main {
  flex: 1;
  width: min(560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 34px;
}

.bhrc-confirmation-panel {
  width: 100%;
}

.bhrc-confirmation-panel h1 {
  margin: 0 0 5px;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 760;
}

.bhrc-confirmation-lead {
  margin: 0 0 20px;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.35;
}

.bhrc-confirmation-lead strong {
  font-weight: 800;
}

.bhrc-confirmation-form {
  width: 100%;
}

.bhrc-confirmation-code-input {
  letter-spacing: 0.08em;
}
/* /BehindApp public home confirmation base prelude */

/* BehindApp public home confirmation validation status contract */
.bhrc-confirmation-form[data-code-invalid="true"] .bhrc-home-input {
  border-color: #c45d42;
  box-shadow: 0 0 0 3px rgba(196, 93, 66, 0.12);
}

.bhrc-confirmation-alert {
  margin-bottom: 14px;
}

.bhrc-confirmation-status {
  min-height: 20px;
  margin: -4px 0 12px;
  color: #176f3d;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 690;
}

.bhrc-confirmation-status[hidden] {
  display: none;
}
/* /BehindApp public home confirmation validation status contract */

/* BehindApp public home confirmation base finish */
.bhrc-confirmation-submit {
  margin-top: 6px;
}

.bhrc-confirmation-resend {
  margin-top: 12px;
  background: #f0f2f5;
  border-color: transparent;
  color: #111827;
}

.bhrc-confirmation-resend:hover,
.bhrc-confirmation-resend:active,
.bhrc-confirmation-resend:focus {
  background: #e5e8ec;
  border-color: transparent;
}

.bhrc-confirmation-resend:disabled,
.bhrc-confirmation-resend[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  background: #eef0f3;
  color: #6b7280;
}

.bhrc-confirmation-alt-contact {
  margin: -4px 0 18px;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.35;
}

.bhrc-confirmation-alt-contact strong {
  display: inline;
  font-weight: 800;
}

.bhrc-confirmation-alt-contact[hidden] {
  display: none;
}

.bhrc-confirmation-inline-action {
  appearance: none;
  -webkit-appearance: none;
  display: inline;
  border: 0;
  padding: 0;
  color: #1f2937;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  transform: none;
}

.bhrc-confirmation-inline-action:hover,
.bhrc-confirmation-inline-action:focus,
.bhrc-confirmation-inline-action:active {
  color: #050505;
  background: transparent;
  outline: none;
  text-decoration: none;
  transform: none;
}
/* /BehindApp public home confirmation base finish */

/* BehindApp public home confirmation dialog toast contract */
.bhrc-confirmation-dialog-layer,
.bhrc-home-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
}

.bhrc-confirmation-dialog-layer[hidden],
.bhrc-home-dialog-layer[hidden] {
  display: none;
}

.bhrc-confirmation-dialog,
.bhrc-home-dialog {
  position: relative;
  width: min(600px, calc(100vw - 40px));
  border-radius: 32px;
  background: #ffffff;
  color: #111827;
  padding: 58px 20px 40px;
  box-shadow: 0 18px 42px rgba(15, 17, 21, 0.24);
}

.bhrc-confirmation-dialog[hidden],
.bhrc-home-dialog[hidden] {
  display: none;
}

.bhrc-confirmation-dialog-compact {
  padding: 56px 20px 20px;
}

.bhrc-confirmation-dialog h2,
.bhrc-home-dialog h2 {
  margin: 0 0 24px;
  color: #111827;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.bhrc-confirmation-dialog p,
.bhrc-home-dialog p {
  margin: 0 0 26px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
}

.bhrc-confirmation-dialog-close,
.bhrc-confirmation-dialog-back {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 18px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: #111827;
  background: transparent;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  font-weight: 320;
  transform: none;
}

.bhrc-confirmation-dialog-close {
  right: 18px;
}

.bhrc-confirmation-dialog-back {
  left: 18px;
}

.bhrc-confirmation-dialog-close:hover,
.bhrc-confirmation-dialog-close:focus,
.bhrc-confirmation-dialog-close:active,
.bhrc-confirmation-dialog-back:hover,
.bhrc-confirmation-dialog-back:focus,
.bhrc-confirmation-dialog-back:active {
  color: #050505;
  background: transparent;
  box-shadow: none;
  outline: none;
  transform: none;
}

.bhrc-confirmation-choice-list {
  overflow: hidden;
  border: 1px solid #d8dde3;
  border-radius: 28px;
  background: #ffffff;
}

.bhrc-confirmation-choice {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 53px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid #d8dde3;
  padding: 0 16px;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  text-align: left;
  transform: none;
}

.bhrc-confirmation-choice:last-child {
  border-bottom: 0;
}

.bhrc-confirmation-choice:hover,
.bhrc-confirmation-choice:focus,
.bhrc-confirmation-choice:active {
  color: #050505;
  background: #f4f5f6;
  outline: none;
  transform: none;
}

.bhrc-confirmation-new-contact-field {
  margin-bottom: 40px;
}

.bhrc-confirmation-modal-error {
  margin: -28px 0 22px !important;
  color: #7a2f1f !important;
  font-size: 13px !important;
  font-weight: 690;
}

.bhrc-confirmation-modal-error[hidden] {
  display: none;
}

.bhrc-confirmation-dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bhrc-confirmation-dialog-actions .bhrc-home-login-button,
.bhrc-confirmation-dialog-actions .bhrc-home-create-button,
.bhrc-confirmation-dialog-actions .bhrc-home-danger-button {
  margin-top: 0;
}

.bhrc-confirmation-toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 1300;
  width: min(328px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  border-radius: 16px;
  padding: 14px 18px;
  color: #ffffff;
  background: #25343d;
  box-shadow: 0 12px 28px rgba(15, 17, 21, 0.2);
  transform: translateX(-50%);
}

.bhrc-confirmation-toast[hidden] {
  display: none;
}

.bhrc-confirmation-toast strong,
.bhrc-confirmation-toast span {
  display: block;
  font-size: 16px;
  line-height: 1.22;
}

.bhrc-confirmation-toast strong {
  font-weight: 760;
}
/* /BehindApp public home confirmation dialog toast contract */

/* BehindApp public home profile removal dialog contract */
.bhrc-home-dialog {
  width: min(600px, calc(100vw - 40px));
  padding: 64px 20px 26px;
}

.bhrc-home-dialog-narrow {
  width: min(508px, calc(100vw - 40px));
  padding-top: 64px;
}

.bhrc-home-profile-remove-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #d8dde3;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.bhrc-home-profile-remove-row strong,
.bhrc-home-profile-remove-row span {
  display: block;
}

.bhrc-home-profile-remove-row strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
}

.bhrc-home-profile-remove-row span {
  color: #657080;
  font-size: 15px;
  line-height: 1.2;
}

.bhrc-home-remove-button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 38px;
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  padding: 0 18px;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  transform: none;
}

.bhrc-home-remove-button:hover,
.bhrc-home-remove-button:focus,
.bhrc-home-remove-button:active {
  border-color: #9aa3ad;
  color: #050505;
  background: #f4f5f6;
  outline: none;
  transform: none;
}

.bhrc-home-dialog a {
  color: #1f2937;
  font-weight: 760;
  text-decoration: none;
}

.bhrc-home-danger-button {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d93044;
  border-radius: 999px;
  padding: 0 16px;
  color: #d93044;
  background: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 740;
  text-decoration: none;
  box-shadow: none;
  transform: none;
  transition: none;
}

.bhrc-home-danger-button:hover,
.bhrc-home-danger-button:focus,
.bhrc-home-danger-button:active {
  border-color: #b92334;
  color: #b92334;
  background: #fff9fa;
  outline: none;
  transform: none;
}
/* /BehindApp public home profile removal dialog contract */

/* BehindApp public home theme selector contract */
.bhrc-home-login-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px;
}

.bhrc-home-login-heading .bhrc-home-login-title {
  margin: 0;
}

.bhrc-home-theme-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.bhrc-home-theme-picker.is-profile {
  position: absolute;
  top: clamp(52px, 10vh, 88px);
  right: calc(clamp(18px, 2.4vw, 42px) + 46px);
  z-index: 5;
  display: none;
}

.bhrc-home-has-remembered-profile .bhrc-home-theme-picker.is-profile {
  display: inline-flex;
}

.bhrc-home-theme-button {
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transform: none;
  transition: none;
}

.bhrc-home-theme-button:hover,
.bhrc-home-theme-button:focus,
.bhrc-home-theme-button:active {
  background: transparent;
  color: #050505;
  outline: none;
  transform: none;
}

.bhrc-home-theme-button:focus-visible {
  outline: 1px solid rgba(32, 37, 43, 0.38);
  outline-offset: 2px;
}

.bhrc-home-theme-button .bhrc-workspace-icon {
  width: 24px;
  height: 24px;
  background-color: currentColor;
}

body.bhrc-home-body.bhrc-home-theme-dark {
  color-scheme: dark;
  color: #edf2f6;
  background: #0b1015 !important;
  scrollbar-color: #46535f #0b1015;
}

html:has(body.bhrc-home-body.bhrc-home-theme-dark) {
  scrollbar-color: #46535f #0b1015;
}

html:has(body.bhrc-home-body.bhrc-home-theme-dark)::-webkit-scrollbar-track,
body.bhrc-home-body.bhrc-home-theme-dark::-webkit-scrollbar-track {
  background: #0b1015;
}

html:has(body.bhrc-home-body.bhrc-home-theme-dark)::-webkit-scrollbar-thumb,
body.bhrc-home-body.bhrc-home-theme-dark::-webkit-scrollbar-thumb {
  background: #46535f;
}

html:has(body.bhrc-home-body.bhrc-home-theme-dark)::-webkit-scrollbar-thumb:hover,
body.bhrc-home-body.bhrc-home-theme-dark::-webkit-scrollbar-thumb:hover {
  background: #65717d;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-page {
  background:
    radial-gradient(circle at 16% 18%, rgba(237, 242, 246, 0.05) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 46%, rgba(237, 242, 246, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 22%, rgba(237, 242, 246, 0.035) 0 1px, transparent 1.5px),
    #0b1015;
  background-size: 220px 220px, 280px 280px, 340px 340px, auto;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-left {
  border-right-color: #303943;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-right {
  background: rgba(11, 16, 21, 0.92);
}

body.bhrc-home-body.bhrc-home-theme-dark :where(.bhrc-home-login-title, .bhrc-home-remembered h2, .bhrc-home-muted-link) {
  color: #ffffff;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-remembered {
  color: #edf2f6;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input {
  border-color: #46535f;
  background: #11171d;
  color: #edf2f6;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:focus {
  border-color: #65717d;
  background: #11171d;
  box-shadow: 0 0 0 3px rgba(101, 113, 125, 0.2);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:disabled {
  border-color: #303943;
  background: #151d24;
  color: #78838e;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-label {
  color: rgba(237, 242, 246, 0.68);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:focus + .bhrc-home-label,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-field-group[data-has-value="true"] .bhrc-home-label,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:not(:placeholder-shown) + .bhrc-home-label {
  color: rgba(237, 242, 246, 0.84);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:-webkit-autofill,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:-webkit-autofill:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:-webkit-autofill:active {
  -webkit-text-fill-color: #edf2f6 !important;
  caret-color: #edf2f6;
  background-color: #11171d !important;
  -webkit-box-shadow: 0 0 0 1000px #11171d inset !important;
  box-shadow: 0 0 0 1000px #11171d inset !important;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #edf2f6 !important;
  background-color: #11171d !important;
  -webkit-box-shadow: 0 0 0 1000px #11171d inset, 0 0 0 3px rgba(101, 113, 125, 0.2) !important;
  box-shadow: 0 0 0 1000px #11171d inset, 0 0 0 3px rgba(101, 113, 125, 0.2) !important;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-captcha {
  border-color: #46535f;
  background: #11171d;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-captcha-header,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-status,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-footer-copy,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-footer-row a,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-footer-row button {
  color: #d6e0e8;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-captcha-mark {
  border-color: #65717d;
  background:
    radial-gradient(circle at 50% 50%, rgba(237, 242, 246, 0.14) 0 34%, transparent 36%),
    #11171d;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-loading,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-invisible,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-visual-instruction {
  color: #b8c5cf;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-spinner {
  border-color: rgba(184, 197, 207, 0.32);
  border-top-color: #d6e0e8;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-answer-input,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-tile {
  border-color: #65717d;
  color: #edf2f6;
  background: #11171d;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check:focus,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-tile:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-tile:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-tile:focus {
  border-color: #7d8995;
  color: #ffffff;
  background: #151d24;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-checkbox {
  border-color: #8793a0;
  color: transparent;
  background: #11171d;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check[aria-pressed="true"] .bhrc-captcha-checkbox,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check[data-state="verified"] .bhrc-captcha-checkbox {
  color: #8fe0ad;
  border-color: #8fe0ad;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check[data-state="verified"] {
  color: #8fe0ad;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-check[data-state="retry"] .bhrc-captcha-checkbox {
  color: #ffb4a8;
  border-color: #ffb4a8;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-code {
  border-color: #65717d;
  color: #edf2f6;
  background:
    repeating-linear-gradient(-18deg, rgba(237, 242, 246, 0.12) 0, rgba(237, 242, 246, 0.12) 1px, transparent 1px, transparent 7px),
    #151d24;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-code::before,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-code::after {
  background: rgba(237, 242, 246, 0.34);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-glyph {
  text-shadow:
    0.8px 0 rgba(237, 242, 246, 0.22),
    -0.7px 0 rgba(11, 16, 21, 0.68);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-answer-input::placeholder {
  color: rgba(214, 224, 232, 0.72);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-answer-input:focus {
  border-color: #7d8995;
  box-shadow: 0 0 0 3px rgba(101, 113, 125, 0.2);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-tile[aria-pressed="true"] {
  border-color: #d6e0e8;
  box-shadow: inset 0 0 0 2px rgba(214, 224, 232, 0.26);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-symbol::after {
  background:
    repeating-linear-gradient(-20deg, rgba(237, 242, 246, 0.1) 0, rgba(237, 242, 246, 0.1) 1px, transparent 1px, transparent 5px),
    rgba(17, 23, 29, 0.76);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-captcha-symbol[data-shape="disk"]::after {
  background:
    repeating-linear-gradient(-20deg, rgba(237, 242, 246, 0.18) 0, rgba(237, 242, 246, 0.18) 1px, transparent 1px, transparent 5px),
    var(--captcha-tone);
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button {
  border-color: #65717d;
  color: #d6e0e8;
  background: #11171d;
  background-image: none;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button:focus,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button:focus {
  border-color: #7d8995;
  color: #ffffff;
  background: #151d24;
  background-image: none;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button:disabled:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-button[aria-disabled="true"]:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button:disabled:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button[aria-disabled="true"]:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button:disabled:focus,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-create-button[aria-disabled="true"]:focus {
  border-color: #65717d;
  color: #d6e0e8;
  background: #11171d;
  background-image: none;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-status[data-tone="success"],
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-confirmation-status {
  color: #8fe0ad;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-status[data-tone="error"] {
  color: #ffb4a8;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-forgot-back {
  color: #d6e0e8;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-forgot-back:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-forgot-back:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-forgot-back:focus {
  color: #ffffff;
  background: transparent;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-forgot-back:focus-visible {
  outline-color: rgba(237, 242, 246, 0.44);
}

body.bhrc-home-body.bhrc-home-theme-dark :where(
  .bhrc-forgot-panel h1,
  .bhrc-confirmation-panel h1,
  .bhrc-confirmation-lead,
  .bhrc-confirmation-lead strong,
  .bhrc-confirmation-alt-contact,
  .bhrc-confirmation-alt-contact strong,
  .bhrc-home-login-verification h3,
  .bhrc-home-login-verification strong
) {
  color: #edf2f6;
}

body.bhrc-home-body.bhrc-home-theme-dark :where(
  .bhrc-forgot-panel p,
  .bhrc-home-login-verification p
) {
  color: #b8c5cf;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-recovery-alert,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-confirmation-alert {
  border-color: rgba(255, 180, 168, 0.38);
  background: rgba(255, 180, 168, 0.1);
  color: #ffb4a8 !important;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-recovery-timer {
  border-color: #46535f;
  background: #11171d;
  color: #edf2f6;
  box-shadow: none;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-recovery-timer-bar {
  background: #303943;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-recovery-timer-value {
  border-color: #46535f;
  background: #151d24;
  color: #edf2f6;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-login-verification {
  border-color: #46535f;
  background: #11171d;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-footer {
  border-top-color: #303943;
  background: #0b1015;
}

body.bhrc-home-body .bhrc-home-profile-settings:hover,
body.bhrc-home-body .bhrc-home-profile-settings:focus,
body.bhrc-home-body .bhrc-home-profile-settings:active {
  background: transparent;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-profile-settings,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-theme-button {
  color: #edf2f6;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-profile-settings:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-profile-settings:focus,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-profile-settings:active,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-theme-button:hover,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-theme-button:focus,
body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-theme-button:active {
  background: transparent;
  color: #f4f7fa;
}

body.bhrc-home-body.bhrc-home-theme-dark .bhrc-home-theme-button:focus-visible {
  outline-color: rgba(237, 242, 246, 0.44);
}
/* /BehindApp public home theme selector contract */

@media (max-width: 680px) {
  /* BehindApp public home compact profile responsive contract */
  .bhrc-home-profile-settings {
    top: 24px;
    right: 24px;
  }

  .bhrc-home-theme-picker.is-profile {
    top: 24px;
    right: 68px;
  }

  .bhrc-home-has-remembered-profile .bhrc-home-right {
    padding: 86px 24px 54px;
  }

  .bhrc-home-remembered-avatar {
    width: 136px;
    height: 136px;
    margin-bottom: 22px;
  }
  /* /BehindApp public home compact profile responsive contract */

  /* BehindApp public home confirmation dialog responsive contract */
  .bhrc-confirmation-dialog,
  .bhrc-home-dialog {
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .bhrc-confirmation-dialog-actions {
    grid-template-columns: 1fr;
  }
  /* /BehindApp public home confirmation dialog responsive contract */

  /* BehindApp public home profile removal dialog responsive contract */
  .bhrc-home-profile-remove-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .bhrc-home-remove-button {
    grid-column: 1 / -1;
    width: 100%;
  }
  /* /BehindApp public home profile removal dialog responsive contract */
}

/* BehindApp public entry shell scaffold contract */
.bhrc-entry-body {
  min-height: 100vh;
  overflow-y: auto;
}

.bhrc-entry-page {
  flex: 1;
  min-height: 698px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 24px 52px;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 46%, rgba(0, 0, 0, 0.025) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 22%, rgba(0, 0, 0, 0.025) 0 1px, transparent 1.5px),
    #ffffff;
  background-size: 220px 220px, 280px 280px, 340px 340px, auto;
}

.bhrc-entry-shell {
  width: min(100%, 560px);
  color: #0f1115;
}

.bhrc-entry-back {
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 8px;
  color: #566174;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  font-weight: 320;
  text-decoration: none;
  transform: none;
  transition: none;
}

.bhrc-entry-back:hover,
.bhrc-entry-back:active,
.bhrc-entry-back:focus {
  color: #1f2937;
  background: transparent;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-entry-back:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-entry-title {
  margin: 0;
  color: #050505;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 760;
}

.bhrc-entry-lead {
  max-width: 548px;
  margin: 6px 0 14px;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.34;
}

.bhrc-entry-form {
  display: grid;
  gap: 14px;
}

.bhrc-entry-form .bhrc-home-field-group {
  margin-bottom: 0;
}
/* /BehindApp public entry shell scaffold contract */

/* BehindApp public entry fieldset grid scaffold contract */
.bhrc-entry-fieldset {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
}

.bhrc-entry-label-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  margin-bottom: 8px;
  color: #050505;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 760;
}

.bhrc-entry-required-star {
  color: #c45d42;
  font-weight: 820;
  line-height: 1;
}

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

.bhrc-entry-grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bhrc-entry-fieldset label {
  display: block;
  min-width: 0;
}

.bhrc-entry-control {
  position: relative;
}

.bhrc-entry-required-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}
/* /BehindApp public entry fieldset grid scaffold contract */

/* BehindApp public entry input base contract */
.bhrc-entry-input {
  width: 100%;
  height: 58px;
  border: 1px solid #cfd5dc;
  border-radius: 14px;
  outline: none;
  background: #ffffff;
  color: #1f2937;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bhrc-entry-control .bhrc-entry-input {
  padding-right: 48px;
}

.bhrc-entry-input::placeholder {
  color: rgba(75, 85, 99, 0.9);
  opacity: 1;
}

.bhrc-entry-input:focus {
  border-color: #9aa3ad;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 163, 173, 0.18);
}

.bhrc-entry-input:-webkit-autofill {
  -webkit-text-fill-color: #1f2937 !important;
  caret-color: #1f2937;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 999999s ease-out, color 999999s ease-out;
}

.bhrc-entry-input:-webkit-autofill:hover,
.bhrc-entry-input:-webkit-autofill:active {
  -webkit-text-fill-color: #1f2937 !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.bhrc-entry-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1f2937 !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 3px rgba(154, 163, 173, 0.18) !important;
  box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 3px rgba(154, 163, 173, 0.18) !important;
}

@supports selector(:autofill) {
  .bhrc-entry-input:autofill {
    color: #1f2937;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
  }
}
/* /BehindApp public entry input base contract */

/* BehindApp public entry validation state contract */
.bhrc-entry-required-block[data-field-invalid="true"] .bhrc-entry-input,
.bhrc-entry-fieldset[data-field-invalid="true"] .bhrc-entry-input,
.bhrc-entry-fieldset[data-field-invalid="true"] .bhrc-entry-select-button,
.bhrc-entry-fieldset[data-password-invalid="true"] .bhrc-entry-input {
  border-color: #c45d42;
  box-shadow: 0 0 0 3px rgba(196, 93, 66, 0.12);
}
/* /BehindApp public entry validation state contract */

/* BehindApp public entry field action base contract */
.bhrc-entry-field-button {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #657080;
  cursor: pointer;
  transform: translateY(-50%);
}

.bhrc-entry-field-button[hidden] {
  display: none;
}

.bhrc-entry-field-button:hover,
.bhrc-entry-field-button:focus,
.bhrc-entry-field-button:active {
  color: #1f2937;
  background: rgba(31, 41, 55, 0.06);
  outline: none;
  transform: translateY(-50%);
}

.bhrc-entry-field-button:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 2px;
}

.bhrc-entry-clear-button {
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.bhrc-entry-password-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bhrc-entry-password-toggle .bhrc-entry-eye-off-icon,
.bhrc-entry-password-toggle[data-password-visible="true"] .bhrc-entry-eye-icon {
  display: none;
}

.bhrc-entry-password-toggle[data-password-visible="true"] .bhrc-entry-eye-off-icon {
  display: block;
}
/* /BehindApp public entry field action base contract */

/* BehindApp public entry password feedback contract */
.bhrc-entry-password-rules,
.bhrc-entry-check-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: -2px 0 0;
  padding: 0;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.25;
  list-style: none;
}

.bhrc-entry-check-rules {
  margin-top: -1px;
}

.bhrc-entry-password-rule,
.bhrc-entry-check-rule {
  display: inline-flex;
  align-items: center;
  flex: 1 1 118px;
  gap: 5px;
  min-height: 18px;
  min-width: 0;
}

.bhrc-entry-password-check {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  border: 1.5px solid #a8b0bb;
  border-radius: 50%;
  background: #ffffff;
}

.bhrc-entry-password-check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.5px;
  width: 4px;
  height: 7px;
  border-right: 1.7px solid #ffffff;
  border-bottom: 1.7px solid #ffffff;
  opacity: 0;
  transform: rotate(45deg);
}

.bhrc-entry-check-rule {
  flex: 0 1 auto;
}

.bhrc-entry-password-rule[data-met="true"],
.bhrc-entry-check-rule[data-met="true"] {
  color: #176f3d;
}

.bhrc-entry-password-rule[data-met="true"] .bhrc-entry-password-check,
.bhrc-entry-check-rule[data-met="true"] .bhrc-entry-password-check {
  border-color: #1f8f4d;
  background: #1f8f4d;
}

.bhrc-entry-password-rule[data-met="true"] .bhrc-entry-password-check::after,
.bhrc-entry-check-rule[data-met="true"] .bhrc-entry-password-check::after {
  opacity: 1;
}

.bhrc-entry-password-strength {
  display: grid;
  gap: 6px;
  margin-top: 1px;
}

.bhrc-entry-password-strength[hidden] {
  display: none;
}

.bhrc-entry-password-strength-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.2;
}

.bhrc-entry-password-strength-head strong {
  color: #c45d42;
  font-size: 12px;
  font-weight: 780;
}

.bhrc-entry-password-strength-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.bhrc-entry-password-strength-bar span {
  height: 5px;
  border-radius: 999px;
  background: #e4e7eb;
}

.bhrc-entry-password-strength[data-strength-level="weak"] .bhrc-entry-password-strength-head strong {
  color: #c45d42;
}

.bhrc-entry-password-strength[data-strength-level="medium"] .bhrc-entry-password-strength-head strong {
  color: #a67c00;
}

.bhrc-entry-password-strength[data-strength-level="good"] .bhrc-entry-password-strength-head strong {
  color: #4f8a2f;
}

.bhrc-entry-password-strength[data-strength-level="strong"] .bhrc-entry-password-strength-head strong {
  color: #176f3d;
}

.bhrc-entry-password-strength[data-strength-level="weak"] .bhrc-entry-password-strength-bar span:nth-child(1) {
  background: #c45d42;
}

.bhrc-entry-password-strength[data-strength-level="medium"] .bhrc-entry-password-strength-bar span:nth-child(-n+2) {
  background: #d6a12b;
}

.bhrc-entry-password-strength[data-strength-level="good"] .bhrc-entry-password-strength-bar span:nth-child(-n+3) {
  background: #8fca63;
}

.bhrc-entry-password-strength[data-strength-level="strong"] .bhrc-entry-password-strength-bar span {
  background: #1f8f4d;
}

.bhrc-entry-password-alert,
.bhrc-entry-field-alert {
  display: grid;
  gap: 3px;
  max-width: 100%;
  margin-top: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(196, 93, 66, 0.42);
  border-radius: 12px;
  background: #fff8f5;
  color: #7a2f1f;
  font-size: 13px;
  line-height: 1.32;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.08);
}

.bhrc-entry-password-alert[hidden],
.bhrc-entry-field-alert[hidden] {
  display: none;
}

.bhrc-entry-password-alert strong,
.bhrc-entry-field-alert strong {
  color: #622415;
  font-size: 13px;
  font-weight: 760;
}

.bhrc-entry-password-alert:focus,
.bhrc-entry-field-alert:focus {
  outline: none;
}

.bhrc-entry-password-alert:focus-visible,
.bhrc-entry-field-alert:focus-visible {
  outline: 2px solid rgba(196, 93, 66, 0.45);
  outline-offset: 2px;
}
/* /BehindApp public entry password feedback contract */

/* BehindApp public entry select help legal contract */
.bhrc-entry-select {
  position: relative;
  min-width: 0;
}

.bhrc-entry-select-button {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #cfd5dc;
  border-radius: 14px;
  padding: 0 16px;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  text-align: left;
  box-shadow: none;
  transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.bhrc-entry-select-button:hover {
  border-color: #9aa3ad;
  color: #1f2937;
  background: #ffffff;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

.bhrc-entry-select-button:focus,
.bhrc-entry-select[data-open="true"] .bhrc-entry-select-button {
  border-color: #7f8894;
  color: #1f2937;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 163, 173, 0.18);
  outline: none;
  transform: none;
}

.bhrc-entry-select-button:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-entry-select[data-has-value="true"] .bhrc-entry-select-button {
  color: #1f2937;
}

.bhrc-entry-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-right: 2px solid #0f1115;
  border-bottom: 2px solid #0f1115;
  transform: rotate(45deg) translateY(-3px);
}

.bhrc-entry-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 310px;
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 0 0 14px 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 17, 21, 0.12);
  padding: 6px 0;
}

.bhrc-entry-select-menu[hidden] {
  display: none;
}

.bhrc-entry-option {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
}

.bhrc-entry-option:hover,
.bhrc-entry-option:focus,
.bhrc-entry-option[aria-selected="true"] {
  color: #050505;
  background: #f4f5f6;
  outline: none;
}

.bhrc-entry-help {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1.7px solid #111827;
  border-radius: 999px;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-entry-help:hover,
.bhrc-entry-help:focus,
.bhrc-entry-help:active {
  border-color: #111827;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 163, 173, 0.18);
  outline: none;
  transform: none;
}

.bhrc-entry-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 112px;
  z-index: 40;
  width: min(450px, calc(100vw - 44px));
  padding: 13px 15px;
  border-radius: 14px;
  color: #1f2937;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 17, 21, 0.16);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 430;
}

.bhrc-entry-tooltip[hidden] {
  display: none;
}

.bhrc-entry-tooltip.gender {
  left: 70px;
  max-width: 452px;
}

.bhrc-entry-note {
  margin: 0;
  color: #0f1115;
  font-size: 16px;
  line-height: 1.3;
}

.bhrc-entry-legal {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.bhrc-entry-inline-link,
.bhrc-entry-inline-link:visited {
  color: #1f2937 !important;
  font-weight: 760;
  text-decoration: none !important;
  cursor: pointer;
}

.bhrc-entry-inline-link:hover,
.bhrc-entry-inline-link:focus,
.bhrc-entry-inline-link:active {
  color: #1f2937 !important;
  text-decoration: none !important;
  outline: none;
}

.bhrc-entry-inline-link:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 2px;
  border-radius: 4px;
}
/* /BehindApp public entry select help legal contract */

/* BehindApp public entry submit utility contract */
.bhrc-entry-submit {
  margin-top: 8px;
}

.bhrc-entry-existing {
  margin-top: 12px;
}

.bhrc-entry-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
/* /BehindApp public entry submit utility contract */

/* BehindApp public home entry responsive tail contract */
@media (max-width: 860px) {
  .bhrc-home-page {
    grid-template-columns: 1fr;
  }

  .bhrc-home-left {
    display: none;
    min-height: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .bhrc-home-right {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 64px;
  }
}

@media (max-width: 680px) {
  .bhrc-home-left {
    min-height: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .bhrc-home-right {
    padding: 44px 24px 54px;
  }

  .bhrc-entry-page {
    padding: 28px 18px 44px;
  }

  .bhrc-entry-title {
    font-size: 23px;
  }

  .bhrc-entry-grid-two,
  .bhrc-entry-grid-three {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bhrc-entry-tooltip,
  .bhrc-entry-tooltip.gender {
    left: 0;
    max-width: calc(100vw - 36px);
  }

  .bhrc-home-footer-inner {
    width: min(100% - 32px, 1070px);
    padding-top: 24px;
  }

  .bhrc-home-footer-row {
    gap: 12px 18px;
  }
}
/* /BehindApp public home entry responsive tail contract */
/* /BehindApp public home */

/* BHRC Scan public detail pages */
.bhrc-detail-hero {
  color: #ffffff;
  background: #101820;
  padding: 38px 0 34px;
}

.bhrc-detail-hero h1 {
  margin: 0 0 14px;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.bhrc-detail-hash,
.bhrc-json-box,
.bhrc-data-table code,
.bhrc-link-list code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bhrc-detail-hash {
  display: block;
  max-width: 100%;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
}

.bhrc-copy-line {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.bhrc-copy-line code {
  min-width: 0;
}

.bhrc-copy-btn {
  min-height: 30px;
  border: 1px solid #b7c6d8;
  border-radius: 8px;
  color: #101820;
  background: #ffffff;
  padding: 0 9px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.bhrc-copy-btn:hover {
  border-color: #0f766e;
  color: #0f766e;
}

.bhrc-detail-hash .bhrc-copy-line {
  width: 100%;
}

.bhrc-detail-hash .bhrc-copy-line code {
  color: #ccfbf1;
}

.bhrc-detail-stats {
  margin-top: 18px;
}

.bhrc-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 18px;
}

.bhrc-detail-panel {
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.bhrc-detail-panel h2 {
  margin: 0 0 16px;
  color: #101820;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.bhrc-detail-wide {
  margin-top: 18px;
}

.bhrc-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bhrc-detail-list div {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.bhrc-detail-list dt {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 780;
}

.bhrc-detail-list dd {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: #101820;
  overflow-wrap: anywhere;
  text-align: right;
}

.bhrc-detail-list dd a,
.bhrc-detail-list dd code {
  display: block;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}

.bhrc-detail-list code,
.bhrc-data-table code,
.bhrc-link-list code,
.bhrc-block-card a code {
  color: #0f766e;
  background: transparent;
  border: 0;
  padding: 0;
}

.bhrc-json-box {
  max-height: 420px;
  min-height: 180px;
  margin: 0;
  overflow: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #101820;
  padding: 14px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.bhrc-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.bhrc-data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.bhrc-data-table th,
.bhrc-data-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 10px;
  color: #101820;
  text-align: left;
  vertical-align: top;
}

.bhrc-data-table th {
  color: #475569;
  font-size: 0.76rem;
  font-weight: 820;
}

.bhrc-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  color: #475569;
  font-size: 0.9rem;
}

.bhrc-pagination-top {
  margin: 0 0 14px;
  border-top: 0;
  border-bottom: 1px solid #e2e8f0;
  padding-top: 0;
  padding-bottom: 14px;
}

.bhrc-pagination-controls {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bhrc-pagination a,
.bhrc-pagination .disabled,
.bhrc-pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  padding: 0 10px;
  text-decoration: none;
}

.bhrc-pagination a {
  color: #0f766e;
  background: #ffffff;
  font-weight: 800;
}

.bhrc-pagination .disabled {
  color: #94a3b8;
  background: #f8fafc;
}

.bhrc-pagination strong {
  color: #101820;
  border-color: #0f766e;
  background: #ccfbf1;
}

.bhrc-empty-state {
  margin: 0;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  padding: 16px;
}

.bhrc-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 14px;
  color: #0f766e;
  font-weight: 800;
  text-decoration: none;
}

.bhrc-block-card header strong a {
  color: #101820;
  text-decoration: none;
}

.bhrc-link-list {
  display: grid;
  gap: 10px;
}

.bhrc-link-list a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  color: #101820;
  text-decoration: none;
}

.bhrc-link-list span {
  color: #0f766e;
  font-weight: 820;
}

.bhrc-token-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bhrc-token-pill {
  display: grid;
  gap: 6px;
  min-height: 104px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  color: #101820;
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.bhrc-token-pill strong {
  color: #0f766e;
  font-size: 1.25rem;
}

.bhrc-token-pill span,
.bhrc-token-pill small {
  color: #475569;
}

@media (max-width: 980px) {
  .bhrc-detail-grid,
  .bhrc-token-list {
    grid-template-columns: 1fr;
  }

  .bhrc-detail-list div {
    grid-template-columns: 1fr;
  }

  .bhrc-detail-list dd {
    text-align: left;
  }

  .bhrc-search-card header,
  .bhrc-pagination {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bhrc-detail-hero h1 {
    font-size: 2rem;
  }

  .bhrc-copy-line {
    grid-template-columns: 1fr;
  }
}
/* /BHRC Scan public detail pages */

/* BehindApp authenticated workspace */
.bhrc-workspace-body {
  --bhrc-workspace-side-panel-width: min(500px, 96vw);
  --bhrc-workspace-nav-width: 248px;
  --bhrc-workspace-nav-min-width: 184px;
  --bhrc-workspace-nav-max-width: 420px;
  --bhrc-workspace-theme-accent: #172026;
  --bhrc-workspace-theme-accent-soft: rgba(23, 32, 38, 0.11);
  --bhrc-workspace-theme-canvas: #ffffff;
  --bhrc-workspace-theme-canvas-layer: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  --bhrc-workspace-theme-canvas-size: auto;
  --bhrc-workspace-theme-canvas-repeat: repeat;
  --bhrc-workspace-theme-canvas-position: 0 0;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #f6f7f7;
  color: #172026;
  font-family: Arial, Helvetica, sans-serif;
}

.bhrc-workspace-body * {
  box-sizing: border-box;
}

.bhrc-workspace-body button,
.bhrc-workspace-body input,
.bhrc-workspace-body select,
.bhrc-workspace-body textarea {
  font: inherit;
  letter-spacing: 0;
}

.bhrc-workspace-shell {
  display: grid;
  grid-template-rows: 48px 36px 48px minmax(0, 1fr) auto;
  height: 100vh;
  min-width: 0;
}

.bhrc-workspace-topbar {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 200px minmax(260px, 560px) minmax(240px, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 16px;
  border-bottom: 1px solid #d7dde3;
  background: #ffffff;
}

.bhrc-workspace-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #172026;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

/* BehindApp authenticated workspace brand and reader mark contract */
.bhrc-workspace-brand-logo {
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
}

.bhrc-workspace-brand-mark {
  width: 94px;
  height: 36px;
}

.bhrc-workspace-reader-mark {
  width: 132px;
  height: 50px;
}

.bhrc-workspace-brand-mark path,
.bhrc-workspace-reader-mark path {
  fill: none;
  stroke: #333b42;
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.bhrc-workspace-brand-mark rect,
.bhrc-workspace-reader-mark rect {
  fill: #d9dedf;
  stroke: #778187;
  stroke-width: 2;
}
/* /BehindApp authenticated workspace brand and reader mark contract */

.bhrc-workspace-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  min-width: 0;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: left 160ms ease, right 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  z-index: 90;
}

.bhrc-workspace-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: none;
}

.bhrc-workspace-icon.is-angle-down {
  -webkit-mask-image: url("/static/icons/behindapp/angle-down.svg");
  mask-image: url("/static/icons/behindapp/angle-down.svg");
}

.bhrc-workspace-icon.is-angle-left {
  -webkit-mask-image: url("/static/icons/behindapp/angle-left.svg");
  mask-image: url("/static/icons/behindapp/angle-left.svg");
}

.bhrc-workspace-icon.is-angle-right {
  -webkit-mask-image: url("/static/icons/behindapp/angle-right.svg");
  mask-image: url("/static/icons/behindapp/angle-right.svg");
}

.bhrc-workspace-icon.is-angle-pager-left {
  -webkit-mask-image: url("/static/icons/behindapp/angle-pager-left.svg");
  mask-image: url("/static/icons/behindapp/angle-pager-left.svg");
}

.bhrc-workspace-icon.is-angle-pager-right {
  -webkit-mask-image: url("/static/icons/behindapp/angle-pager-right.svg");
  mask-image: url("/static/icons/behindapp/angle-pager-right.svg");
}

.bhrc-workspace-icon.is-align-left {
  -webkit-mask-image: url("/static/icons/behindapp/align-left.svg");
  mask-image: url("/static/icons/behindapp/align-left.svg");
}

.bhrc-workspace-icon.is-archive {
  -webkit-mask-image: url("/static/icons/behindapp/archive.svg");
  mask-image: url("/static/icons/behindapp/archive.svg");
}

.bhrc-workspace-icon.is-bookmark {
  -webkit-mask-image: url("/static/icons/behindapp/bookmark.svg");
  mask-image: url("/static/icons/behindapp/bookmark.svg");
}

.bhrc-workspace-icon.is-thumbtack {
  -webkit-mask-image: url("/static/icons/behindapp/thumbtack.svg");
  mask-image: url("/static/icons/behindapp/thumbtack.svg");
}

.bhrc-workspace-icon.is-thumbtack-koyu {
  -webkit-mask-image: url("/static/icons/behindapp/thumbtack-koyu.svg");
  mask-image: url("/static/icons/behindapp/thumbtack-koyu.svg");
}

.bhrc-workspace-icon.is-triangle-warning {
  -webkit-mask-image: url("/static/icons/behindapp/triangle-warning.svg");
  mask-image: url("/static/icons/behindapp/triangle-warning.svg");
}

.bhrc-workspace-icon.is-block-user {
  -webkit-mask-image: url("/static/icons/behindapp/block-user.svg");
  mask-image: url("/static/icons/behindapp/block-user.svg");
}

.bhrc-workspace-icon.is-broom {
  -webkit-mask-image: url("/static/icons/behindapp/broom.svg");
  mask-image: url("/static/icons/behindapp/broom.svg");
}

.bhrc-workspace-icon.is-sun {
  -webkit-mask-image: url("/static/icons/behindapp/sun.svg");
  mask-image: url("/static/icons/behindapp/sun.svg");
}

.bhrc-workspace-icon.is-sun2 {
  -webkit-mask-image: url("/static/icons/behindapp/sun2.svg");
  mask-image: url("/static/icons/behindapp/sun2.svg");
}

.bhrc-workspace-icon.is-background {
  -webkit-mask-image: url("/static/icons/behindapp/background.svg");
  mask-image: url("/static/icons/behindapp/background.svg");
}

.bhrc-workspace-icon.is-bold {
  -webkit-mask-image: url("/static/icons/behindapp/bold.svg");
  mask-image: url("/static/icons/behindapp/bold.svg");
}

.bhrc-workspace-icon.is-attribution-pencil {
  -webkit-mask-image: url("/static/icons/behindapp/attribution-pencil.svg");
  mask-image: url("/static/icons/behindapp/attribution-pencil.svg");
}

.bhrc-workspace-icon.is-checkbox {
  -webkit-mask-image: url("/static/icons/behindapp/checkbox.svg");
  mask-image: url("/static/icons/behindapp/checkbox.svg");
}

.bhrc-workspace-icon.is-check {
  -webkit-mask-image: url("/static/icons/behindapp/check.svg");
  mask-image: url("/static/icons/behindapp/check.svg");
}

.bhrc-workspace-icon.is-check-circle {
  -webkit-mask-image: url("/static/icons/behindapp/check-circle.svg");
  mask-image: url("/static/icons/behindapp/check-circle.svg");
}

.bhrc-workspace-icon.is-comment-alt {
  -webkit-mask-image: url("/static/icons/behindapp/comment-alt.svg");
  mask-image: url("/static/icons/behindapp/comment-alt.svg");
}

.bhrc-workspace-icon.is-pencil {
  -webkit-mask-image: url("/static/icons/behindapp/pencil.svg");
  mask-image: url("/static/icons/behindapp/pencil.svg");
}

.bhrc-workspace-icon.is-copy-alt {
  -webkit-mask-image: url("/static/icons/behindapp/copy-alt.svg");
  mask-image: url("/static/icons/behindapp/copy-alt.svg");
}

.bhrc-workspace-icon.is-phone-office {
  -webkit-mask-image: url("/static/icons/behindapp/phone-office.svg");
  mask-image: url("/static/icons/behindapp/phone-office.svg");
}

.bhrc-workspace-icon.is-priority-arrow {
  -webkit-mask-image: url("/static/icons/behindapp/priority-arrow.svg");
  mask-image: url("/static/icons/behindapp/priority-arrow.svg");
}

.bhrc-workspace-icon.is-envelope {
  -webkit-mask-image: url("/static/icons/behindapp/envelope.svg");
  mask-image: url("/static/icons/behindapp/envelope.svg");
}

.bhrc-workspace-icon.is-envelope-open {
  -webkit-mask-image: url("/static/icons/behindapp/envelope-open.svg");
  mask-image: url("/static/icons/behindapp/envelope-open.svg");
}

.bhrc-workspace-icon.is-id-card-clip-alt {
  -webkit-mask-image: url("/static/icons/behindapp/id-card-clip-alt.svg");
  mask-image: url("/static/icons/behindapp/id-card-clip-alt.svg");
}

.bhrc-workspace-icon.is-close {
  -webkit-mask-image: url("/static/icons/behindapp/close.svg");
  mask-image: url("/static/icons/behindapp/close.svg");
}

.bhrc-workspace-icon.is-transporter-empty {
  -webkit-mask-image: url("/static/icons/behindapp/transporter-empty.svg?v=2");
  mask-image: url("/static/icons/behindapp/transporter-empty.svg?v=2");
}

.bhrc-workspace-icon.is-clock {
  -webkit-mask-image: url("/static/icons/behindapp/clock.svg");
  mask-image: url("/static/icons/behindapp/clock.svg");
}

.bhrc-workspace-icon.is-circle {
  -webkit-mask-image: url("/static/icons/behindapp/circle.svg");
  mask-image: url("/static/icons/behindapp/circle.svg");
}

.bhrc-workspace-icon.is-cross {
  -webkit-mask-image: url("/static/icons/behindapp/cross.svg");
  mask-image: url("/static/icons/behindapp/cross.svg");
}

.bhrc-workspace-icon.is-copy-image {
  -webkit-mask-image: url("/static/icons/behindapp/copy-image.svg");
  mask-image: url("/static/icons/behindapp/copy-image.svg");
}

.bhrc-workspace-icon.is-camera {
  -webkit-mask-image: url("/static/icons/behindapp/camera.svg");
  mask-image: url("/static/icons/behindapp/camera.svg");
}

.bhrc-workspace-icon.is-chain {
  -webkit-mask-image: url("/static/icons/behindapp/blockchain-3.svg");
  mask-image: url("/static/icons/behindapp/blockchain-3.svg");
}

.bhrc-workspace-icon.is-calendar {
  -webkit-mask-image: url("/static/icons/behindapp/calendar.svg");
  mask-image: url("/static/icons/behindapp/calendar.svg");
}

.bhrc-workspace-icon.is-calendar-lines-pen {
  -webkit-mask-image: url("/static/icons/behindapp/calendar-lines-pen.svg");
  mask-image: url("/static/icons/behindapp/calendar-lines-pen.svg");
}

.bhrc-workspace-icon.is-category {
  -webkit-mask-image: url("/static/icons/behindapp/category.svg");
  mask-image: url("/static/icons/behindapp/category.svg");
}

.bhrc-workspace-icon.is-ticket-alt {
  -webkit-mask-image: url("/static/icons/behindapp/ticket-alt.svg?v=filled-1");
  mask-image: url("/static/icons/behindapp/ticket-alt.svg?v=filled-1");
}

.bhrc-workspace-icon.is-ticket-alt-outline {
  -webkit-mask-image: url("/static/icons/behindapp/ticket-alt-outline.svg");
  mask-image: url("/static/icons/behindapp/ticket-alt-outline.svg");
}

.bhrc-workspace-icon.is-chart-scatter-bubble {
  -webkit-mask-image: url("/static/icons/behindapp/chart-scatter-bubble.svg");
  mask-image: url("/static/icons/behindapp/chart-scatter-bubble.svg");
}

.bhrc-workspace-icon.is-audit {
  -webkit-mask-image: url("/static/icons/behindapp/audit.svg");
  mask-image: url("/static/icons/behindapp/audit.svg");
}

.bhrc-workspace-icon.is-deleted-mail {
  -webkit-mask-image: url("/static/icons/behindapp/deleted-mail.svg");
  mask-image: url("/static/icons/behindapp/deleted-mail.svg");
}

.bhrc-workspace-icon.is-document {
  -webkit-mask-image: url("/static/icons/behindapp/document.svg");
  mask-image: url("/static/icons/behindapp/document.svg");
}

.bhrc-workspace-icon.is-document-nft {
  -webkit-mask-image: url("/static/icons/behindapp/document-nft.svg");
  mask-image: url("/static/icons/behindapp/document-nft.svg");
}

.bhrc-workspace-icon.is-download {
  -webkit-mask-image: url("/static/icons/behindapp/download.svg");
  mask-image: url("/static/icons/behindapp/download.svg");
}

.bhrc-workspace-icon.is-draft {
  -webkit-mask-image: url("/static/icons/behindapp/draft.svg");
  mask-image: url("/static/icons/behindapp/draft.svg");
}

.bhrc-workspace-icon.is-address-book {
  -webkit-mask-image: url("/static/icons/behindapp/address-book.svg");
  mask-image: url("/static/icons/behindapp/address-book.svg");
}

.bhrc-workspace-icon.is-briefcase {
  -webkit-mask-image: url("/static/icons/behindapp/briefcase.svg");
  mask-image: url("/static/icons/behindapp/briefcase.svg");
}

.bhrc-workspace-icon.is-edit {
  -webkit-mask-image: url("/static/icons/behindapp/edit.svg");
  mask-image: url("/static/icons/behindapp/edit.svg");
}

.bhrc-workspace-icon.is-eye {
  -webkit-mask-image: url("/static/icons/behindapp/eye.svg");
  mask-image: url("/static/icons/behindapp/eye.svg");
}

.bhrc-workspace-icon.is-eraser {
  -webkit-mask-image: url("/static/icons/behindapp/eraser.svg");
  mask-image: url("/static/icons/behindapp/eraser.svg");
}

.bhrc-workspace-icon.is-eye-crossed {
  -webkit-mask-image: url("/static/icons/behindapp/eye-crossed.svg");
  mask-image: url("/static/icons/behindapp/eye-crossed.svg");
}

.bhrc-workspace-icon.is-filter {
  -webkit-mask-image: url("/static/icons/behindapp/filter.svg");
  mask-image: url("/static/icons/behindapp/filter.svg");
}

.bhrc-workspace-icon.is-features {
  -webkit-mask-image: url("/static/icons/behindapp/features.svg");
  mask-image: url("/static/icons/behindapp/features.svg");
}

.bhrc-workspace-icon.is-grip-horizontal {
  -webkit-mask-image: url("/static/icons/behindapp/grip-horizontal.svg");
  mask-image: url("/static/icons/behindapp/grip-horizontal.svg");
}

.bhrc-workspace-icon.is-hr-person {
  -webkit-mask-image: url("/static/icons/behindapp/hr-person.svg");
  mask-image: url("/static/icons/behindapp/hr-person.svg");
}

.bhrc-workspace-icon.is-house-day {
  -webkit-mask-image: url("/static/icons/behindapp/house-day.svg");
  mask-image: url("/static/icons/behindapp/house-day.svg");
}

.bhrc-workspace-icon.is-fingerprint-magnifying-glass {
  -webkit-mask-image: url("/static/icons/behindapp/fingerprint-magnifying-glass.svg");
  mask-image: url("/static/icons/behindapp/fingerprint-magnifying-glass.svg");
}

.bhrc-workspace-icon.is-file-import {
  -webkit-mask-image: url("/static/icons/behindapp/file-import.svg");
  mask-image: url("/static/icons/behindapp/file-import.svg");
}

.bhrc-workspace-icon.is-file-export {
  -webkit-mask-image: url("/static/icons/behindapp/file-export.svg");
  mask-image: url("/static/icons/behindapp/file-export.svg");
}

.bhrc-workspace-icon.is-info {
  -webkit-mask-image: url("/static/icons/behindapp/info.svg");
  mask-image: url("/static/icons/behindapp/info.svg");
}

.bhrc-workspace-icon.is-circle-quarters-alt {
  -webkit-mask-image: url("/static/icons/behindapp/circle-quarters-alt.svg");
  mask-image: url("/static/icons/behindapp/circle-quarters-alt.svg");
}

.bhrc-workspace-icon.is-interrogation {
  -webkit-mask-image: url("/static/icons/behindapp/interrogation.svg");
  mask-image: url("/static/icons/behindapp/interrogation.svg");
}

.bhrc-workspace-icon.is-incognito {
  -webkit-mask-image: url("/static/icons/behindapp/incognito.svg");
  mask-image: url("/static/icons/behindapp/incognito.svg");
}

.bhrc-workspace-icon.is-inbox {
  -webkit-mask-image: url("/static/icons/behindapp/inbox.svg");
  mask-image: url("/static/icons/behindapp/inbox.svg");
}

.bhrc-workspace-icon.is-inbox-full {
  -webkit-mask-image: url("/static/icons/behindapp/inbox-full.svg");
  mask-image: url("/static/icons/behindapp/inbox-full.svg");
}

.bhrc-workspace-icon.is-indent {
  -webkit-mask-image: url("/static/icons/behindapp/indent.svg");
  mask-image: url("/static/icons/behindapp/indent.svg");
}

.bhrc-workspace-icon.is-italic {
  -webkit-mask-image: url("/static/icons/behindapp/italic.svg");
  mask-image: url("/static/icons/behindapp/italic.svg");
}

.bhrc-workspace-icon.is-junk-mail {
  -webkit-mask-image: url("/static/icons/behindapp/junk-mail.svg");
  mask-image: url("/static/icons/behindapp/junk-mail.svg");
}

.bhrc-workspace-icon.is-journal {
  -webkit-mask-image: url("/static/icons/behindapp/journal-alt.svg");
  mask-image: url("/static/icons/behindapp/journal-alt.svg");
}

.bhrc-workspace-icon.is-mail-closed {
  -webkit-mask-image: url("/static/icons/behindapp/mail-closed.svg");
  mask-image: url("/static/icons/behindapp/mail-closed.svg");
}

.bhrc-workspace-icon.is-mail-plus {
  -webkit-mask-image: url("/static/icons/behindapp/mail-plus-circle.svg");
  mask-image: url("/static/icons/behindapp/mail-plus-circle.svg");
}

.bhrc-workspace-icon.is-mail-open {
  -webkit-mask-image: url("/static/icons/behindapp/mail-open.svg");
  mask-image: url("/static/icons/behindapp/mail-open.svg");
}

.bhrc-workspace-icon.is-qr-scan {
  -webkit-mask-image: url("/static/icons/behindapp/qr-scan.svg");
  mask-image: url("/static/icons/behindapp/qr-scan.svg");
}

.bhrc-workspace-icon.is-list {
  -webkit-mask-image: url("/static/icons/behindapp/list.svg");
  mask-image: url("/static/icons/behindapp/list.svg");
}

.bhrc-workspace-icon.is-link-alt {
  -webkit-mask-image: url("/static/icons/behindapp/link-alt.svg");
  mask-image: url("/static/icons/behindapp/link-alt.svg");
}

.bhrc-workspace-icon.is-language-exchange {
  -webkit-mask-image: url("/static/icons/behindapp/language-exchange.svg");
  mask-image: url("/static/icons/behindapp/language-exchange.svg");
}

.bhrc-workspace-icon.is-angle-small-right {
  -webkit-mask-image: url("/static/icons/behindapp/angle-small-right.svg");
  mask-image: url("/static/icons/behindapp/angle-small-right.svg");
}

.bhrc-workspace-icon.is-angle-small-left {
  -webkit-mask-image: url("/static/icons/behindapp/angle-small-left.svg");
  mask-image: url("/static/icons/behindapp/angle-small-left.svg");
}

.bhrc-workspace-icon.is-angle-small-down {
  -webkit-mask-image: url("/static/icons/behindapp/angle-small-down.svg");
  mask-image: url("/static/icons/behindapp/angle-small-down.svg");
}

.bhrc-workspace-icon.is-angle-small-up {
  -webkit-mask-image: url("/static/icons/behindapp/angle-small-up.svg");
  mask-image: url("/static/icons/behindapp/angle-small-up.svg");
}

.bhrc-workspace-icon.is-marker {
  -webkit-mask-image: url("/static/icons/behindapp/marker.svg");
  mask-image: url("/static/icons/behindapp/marker.svg");
}

.bhrc-workspace-icon.is-map-marker-home {
  -webkit-mask-image: url("/static/icons/behindapp/map-marker-home.svg");
  mask-image: url("/static/icons/behindapp/map-marker-home.svg");
}

.bhrc-workspace-icon.is-flag-alt {
  -webkit-mask-image: url("/static/icons/behindapp/flag-alt.svg");
  mask-image: url("/static/icons/behindapp/flag-alt.svg");
}

.bhrc-workspace-icon.is-flag-alt-siyah {
  -webkit-mask-image: url("/static/icons/behindapp/flag-alt-siyah.svg");
  mask-image: url("/static/icons/behindapp/flag-alt-siyah.svg");
}

.bhrc-workspace-message-quick-actions .bhrc-workspace-icon.is-flag-alt-siyah,
.bhrc-workspace-reader-more-menu .bhrc-workspace-icon.is-flag-alt-siyah {
  color: #000000;
}

.bhrc-workspace-message-quick-actions .bhrc-workspace-icon.is-thumbtack-koyu {
  color: #000000;
}

.bhrc-workspace-icon.is-menu {
  -webkit-mask-image: url("/static/icons/behindapp/menu-burger.svg");
  mask-image: url("/static/icons/behindapp/menu-burger.svg");
}

.bhrc-workspace-icon.is-menu-dots-vertical {
  -webkit-mask-image: url("/static/icons/behindapp/menu-dots-vertical.svg");
  mask-image: url("/static/icons/behindapp/menu-dots-vertical.svg");
}

.bhrc-workspace-icon.is-menu-dots {
  -webkit-mask-image: url("/static/icons/behindapp/menu-dots.svg");
  mask-image: url("/static/icons/behindapp/menu-dots.svg");
}

.bhrc-workspace-icon.is-expand {
  -webkit-mask-image: url("/static/icons/behindapp/expand.svg");
  mask-image: url("/static/icons/behindapp/expand.svg");
}

.bhrc-workspace-icon.is-window-restore {
  -webkit-mask-image: url("/static/icons/behindapp/window-restore.svg");
  mask-image: url("/static/icons/behindapp/window-restore.svg");
}

.bhrc-workspace-icon.is-rules-alt {
  -webkit-mask-image: url("/static/icons/behindapp/rules-alt.svg");
  mask-image: url("/static/icons/behindapp/rules-alt.svg");
}

.bhrc-workspace-icon.is-move-to-folder-2 {
  -webkit-mask-image: url("/static/icons/behindapp/move-to-folder-2.svg");
  mask-image: url("/static/icons/behindapp/move-to-folder-2.svg");
}

.bhrc-workspace-icon.is-folder-open {
  -webkit-mask-image: url("/static/icons/behindapp/folder-open.svg");
  mask-image: url("/static/icons/behindapp/folder-open.svg");
}

.bhrc-workspace-icon.is-pen-square {
  -webkit-mask-image: url("/static/icons/behindapp/pen-square.svg");
  mask-image: url("/static/icons/behindapp/pen-square.svg");
}

.bhrc-workspace-icon.is-palette {
  -webkit-mask-image: url("/static/icons/behindapp/palette.svg");
  mask-image: url("/static/icons/behindapp/palette.svg");
}

.bhrc-workspace-icon.is-folder-bos {
  -webkit-mask-image: url("/static/icons/behindapp/folder-bos.svg");
  mask-image: url("/static/icons/behindapp/folder-bos.svg");
}

.bhrc-workspace-icon.is-arrow-small-up {
  -webkit-mask-image: url("/static/icons/behindapp/arrow-small-up.svg");
  mask-image: url("/static/icons/behindapp/arrow-small-up.svg");
}

.bhrc-workspace-icon.is-arrow-small-down {
  -webkit-mask-image: url("/static/icons/behindapp/arrow-small-down.svg");
  mask-image: url("/static/icons/behindapp/arrow-small-down.svg");
}

.bhrc-workspace-icon.is-order-food-online {
  -webkit-mask-image: url("/static/icons/behindapp/order-food-online.svg");
  mask-image: url("/static/icons/behindapp/order-food-online.svg");
}

.bhrc-workspace-icon.is-order-food-online-2 {
  -webkit-mask-image: url("/static/icons/behindapp/order-food-online-2.svg");
  mask-image: url("/static/icons/behindapp/order-food-online-2.svg");
}

.bhrc-workspace-icon.is-music {
  -webkit-mask-image: url("/static/icons/behindapp/music.svg");
  mask-image: url("/static/icons/behindapp/music.svg");
}

.bhrc-workspace-icon.is-notifications {
  -webkit-mask-image: url("/static/icons/behindapp/notifications.svg");
  mask-image: url("/static/icons/behindapp/notifications.svg");
}

.bhrc-workspace-icon.is-outdent {
  -webkit-mask-image: url("/static/icons/behindapp/outdent.svg");
  mask-image: url("/static/icons/behindapp/outdent.svg");
}

.bhrc-workspace-icon.is-plus {
  -webkit-mask-image: url("/static/icons/behindapp/plus.svg");
  mask-image: url("/static/icons/behindapp/plus.svg");
}

.bhrc-workspace-icon.is-quote-right {
  -webkit-mask-image: url("/static/icons/behindapp/quote-right.svg");
  mask-image: url("/static/icons/behindapp/quote-right.svg");
}

.bhrc-workspace-icon.is-print {
  -webkit-mask-image: url("/static/icons/behindapp/print.svg");
  mask-image: url("/static/icons/behindapp/print.svg");
}

.bhrc-workspace-icon.is-rectangle-list {
  -webkit-mask-image: url("/static/icons/behindapp/rectangle-list.svg");
  mask-image: url("/static/icons/behindapp/rectangle-list.svg");
}

.bhrc-workspace-icon.is-profile {
  -webkit-mask-image: url("/static/icons/behindapp/profile.svg");
  mask-image: url("/static/icons/behindapp/profile.svg");
}

.bhrc-workspace-icon.is-redo-alt {
  -webkit-mask-image: url("/static/icons/behindapp/redo-alt.svg");
  mask-image: url("/static/icons/behindapp/redo-alt.svg");
}

.bhrc-workspace-icon.is-reply {
  -webkit-mask-image: url("/static/icons/behindapp/reply.svg");
  mask-image: url("/static/icons/behindapp/reply.svg");
}

.bhrc-workspace-icon.is-reply-yanitla {
  -webkit-mask-image: url("/static/icons/behindapp/reply-yanitla.svg");
  mask-image: url("/static/icons/behindapp/reply-yanitla.svg");
}

.bhrc-workspace-icon.is-reply-all {
  -webkit-mask-image: url("/static/icons/behindapp/reply-all.svg");
  mask-image: url("/static/icons/behindapp/reply-all.svg");
}

.bhrc-workspace-icon.is-reply-tumunu-yanitla {
  -webkit-mask-image: url("/static/icons/behindapp/reply-tumunu_yanitla.svg");
  mask-image: url("/static/icons/behindapp/reply-tumunu_yanitla.svg");
}

.bhrc-workspace-icon.is-forward {
  -webkit-mask-image: url("/static/icons/behindapp/forward.svg");
  mask-image: url("/static/icons/behindapp/forward.svg");
}

.bhrc-workspace-icon.is-reply-ilet {
  -webkit-mask-image: url("/static/icons/behindapp/reply-ilet.svg");
  mask-image: url("/static/icons/behindapp/reply-ilet.svg");
}

.bhrc-workspace-icon.is-save {
  -webkit-mask-image: url("/static/icons/behindapp/save.svg");
  mask-image: url("/static/icons/behindapp/save.svg");
}

.bhrc-workspace-icon.is-send {
  -webkit-mask-image: url("/static/icons/behindapp/send.svg");
  mask-image: url("/static/icons/behindapp/send.svg");
}

.bhrc-workspace-icon.is-satisfaction-bar {
  -webkit-mask-image: url("/static/icons/behindapp/satisfaction-bar.svg");
  mask-image: url("/static/icons/behindapp/satisfaction-bar.svg");
}

.bhrc-workspace-icon.is-scheduled-send {
  -webkit-mask-image: url("/static/icons/behindapp/scheduled-send.svg");
  mask-image: url("/static/icons/behindapp/scheduled-send.svg");
}

.bhrc-workspace-icon.is-search {
  -webkit-mask-image: url("/static/icons/behindapp/search.svg");
  mask-image: url("/static/icons/behindapp/search.svg");
}

.bhrc-workspace-icon.is-sent-mail {
  -webkit-mask-image: url("/static/icons/behindapp/sent-mail.svg");
  mask-image: url("/static/icons/behindapp/sent-mail.svg");
}

.bhrc-workspace-icon.is-settings {
  -webkit-mask-image: url("/static/icons/behindapp/settings.svg");
  mask-image: url("/static/icons/behindapp/settings.svg");
}

.bhrc-workspace-icon.is-shield-security-risk {
  -webkit-mask-image: url("/static/icons/behindapp/shield-security-risk.svg");
  mask-image: url("/static/icons/behindapp/shield-security-risk.svg");
}

.bhrc-workspace-icon.is-skip {
  -webkit-mask-image: url("/static/icons/behindapp/skip.svg");
  mask-image: url("/static/icons/behindapp/skip.svg");
}

.bhrc-workspace-icon.is-smile {
  -webkit-mask-image: url("/static/icons/behindapp/smile.svg");
  mask-image: url("/static/icons/behindapp/smile.svg");
}

.bhrc-workspace-icon.is-sort {
  -webkit-mask-image: url("/static/icons/behindapp/sort.svg");
  mask-image: url("/static/icons/behindapp/sort.svg");
}

.bhrc-workspace-icon.is-speedometer-arrow {
  -webkit-mask-image: url("/static/icons/behindapp/speedometer-arrow.svg");
  mask-image: url("/static/icons/behindapp/speedometer-arrow.svg");
}

.bhrc-workspace-icon.is-star {
  -webkit-mask-image: url("/static/icons/behindapp/star.svg");
  mask-image: url("/static/icons/behindapp/star.svg");
}

.bhrc-workspace-icon.is-strikethrough {
  -webkit-mask-image: url("/static/icons/behindapp/strikethrough.svg");
  mask-image: url("/static/icons/behindapp/strikethrough.svg");
}

.bhrc-workspace-icon.is-task-checklist {
  -webkit-mask-image: url("/static/icons/behindapp/task-checklist.svg");
  mask-image: url("/static/icons/behindapp/task-checklist.svg");
}

.bhrc-workspace-icon.is-text {
  -webkit-mask-image: url("/static/icons/behindapp/text.svg");
  mask-image: url("/static/icons/behindapp/text.svg");
}

.bhrc-workspace-icon.is-text-size {
  -webkit-mask-image: url("/static/icons/behindapp/text-size.svg");
  mask-image: url("/static/icons/behindapp/text-size.svg");
}

.bhrc-workspace-icon.is-trash {
  -webkit-mask-image: url("/static/icons/behindapp/trash.svg");
  mask-image: url("/static/icons/behindapp/trash.svg");
}

.bhrc-workspace-icon.is-underline {
  -webkit-mask-image: url("/static/icons/behindapp/underline.svg");
  mask-image: url("/static/icons/behindapp/underline.svg");
}

.bhrc-workspace-icon.is-undo-alt {
  -webkit-mask-image: url("/static/icons/behindapp/undo-alt.svg");
  mask-image: url("/static/icons/behindapp/undo-alt.svg");
}

.bhrc-workspace-icon.is-user {
  -webkit-mask-image: url("/static/icons/behindapp/user.svg");
  mask-image: url("/static/icons/behindapp/user.svg");
}

.bhrc-workspace-icon.is-user-add {
  -webkit-mask-image: url("/static/icons/behindapp/user-add.svg");
  mask-image: url("/static/icons/behindapp/user-add.svg");
}

.bhrc-workspace-icon.is-user-headset {
  -webkit-mask-image: url("/static/icons/behindapp/user-headset.svg");
  mask-image: url("/static/icons/behindapp/user-headset.svg");
}

.bhrc-workspace-icon.is-users {
  -webkit-mask-image: url("/static/icons/behindapp/users.svg");
  mask-image: url("/static/icons/behindapp/users.svg");
}

.bhrc-workspace-icon.is-users-alt {
  -webkit-mask-image: url("/static/icons/behindapp/users-alt.svg");
  mask-image: url("/static/icons/behindapp/users-alt.svg");
}

.bhrc-workspace-icon.is-zoom-in {
  -webkit-mask-image: url("/static/icons/behindapp/zoom-in.svg");
  mask-image: url("/static/icons/behindapp/zoom-in.svg");
}

.bhrc-workspace-scope,
.bhrc-workspace-searchbox,
.bhrc-workspace-search-back,
.bhrc-workspace-search-filter,
.bhrc-workspace-search-submit {
  min-height: 34px;
  border: 0;
  background: #ffffff;
}

.bhrc-workspace-scope {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  color: #27323a;
  border-right: 1px solid #dce2e7;
  cursor: pointer;
}

.bhrc-workspace-search-back,
.bhrc-workspace-search-filter,
.bhrc-workspace-search-submit {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  color: #3f4a52;
  cursor: pointer;
}

.bhrc-workspace-search-back,
.bhrc-workspace-search-submit {
  display: none;
}

.bhrc-workspace-search-filter {
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease, background 120ms ease;
}

.bhrc-workspace-search:hover .bhrc-workspace-search-filter,
.bhrc-workspace-search:focus-within .bhrc-workspace-search-filter,
.bhrc-workspace-search.is-expanded .bhrc-workspace-search-filter {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-search-back::before {
  width: 10px;
  height: 10px;
  border-bottom: 1.8px solid currentColor;
  border-left: 1.8px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.bhrc-workspace-search-filter::before,
.bhrc-workspace-search-filter::after {
  display: none;
  content: none;
}

.bhrc-workspace-search-filter::before {
  top: 13px;
  box-shadow: 0 4px 0 currentColor;
}

.bhrc-workspace-search-filter::after {
  top: 21px;
  width: 8px;
  left: auto;
}

.bhrc-workspace-search-submit::before {
  display: none;
  content: none;
}

.bhrc-workspace-search-submit::after {
  display: none;
  content: none;
}

.bhrc-workspace-search-back:hover,
.bhrc-workspace-search-filter:hover,
.bhrc-workspace-search-submit:hover,
.bhrc-workspace-search-back:focus-visible,
.bhrc-workspace-search-filter:focus-visible,
.bhrc-workspace-search-submit:focus-visible {
  background: #eef1f2;
  outline: 0;
}

.bhrc-workspace-searchbox {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  color: #69737b;
  padding-right: 10px;
}

.bhrc-workspace-search-glyph {
  width: 17px;
  height: 17px;
  margin-left: 8px;
  color: #69737b;
}

.bhrc-workspace-search-glyph::after {
  display: none;
  content: none;
}

.bhrc-workspace-searchbox input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172026;
}

/* BehindApp authenticated workspace search expansion contract */
.bhrc-workspace-search:focus-within {
  border-color: #7a858c;
  box-shadow: 0 0 0 3px rgba(23, 32, 38, 0.08);
}

.bhrc-workspace-search.is-expanded {
  position: fixed;
  top: 7px;
  left: min(252px, calc(100vw - 320px));
  right: min(286px, 18vw);
  grid-template-columns: 124px 38px minmax(0, 1fr) 38px 38px;
  min-width: min(560px, calc(100vw - 24px));
  border-color: #6f797f;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.18);
}

.bhrc-workspace-search.is-expanded .bhrc-workspace-scope,
.bhrc-workspace-search.is-expanded .bhrc-workspace-search-back,
.bhrc-workspace-search.is-expanded .bhrc-workspace-search-submit {
  display: inline-flex;
}

.bhrc-workspace-search.is-expanded .bhrc-workspace-search-glyph {
  display: none;
}

.bhrc-workspace-search.is-expanded .bhrc-workspace-searchbox {
  grid-template-columns: minmax(0, 1fr);
  border-left: 1px solid #dce2e7;
  padding-left: 12px;
}
/* /BehindApp authenticated workspace search expansion contract */

/* BehindApp authenticated workspace search layer shell contract */
.bhrc-workspace-search-layer {
  position: fixed;
  z-index: 88;
  width: min(752px, calc(100vw - 32px));
  border: 1px solid #d9dee3;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.14);
}

.bhrc-workspace-search-layer[hidden] {
  display: none;
}

.bhrc-workspace-search-results {
  min-height: 260px;
  max-height: min(560px, calc(100vh - 72px));
  overflow: auto;
  padding: 12px 10px 10px;
}
/* /BehindApp authenticated workspace search layer shell contract */

/* BehindApp authenticated workspace search tabs contract */
.bhrc-workspace-search-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 28px;
  margin-bottom: 10px;
}

.bhrc-workspace-search-tabs-wrap {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  min-width: 0;
}

.bhrc-workspace-search-tabs-wrap .bhrc-workspace-search-tabs {
  min-width: 0;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}

.bhrc-workspace-search-tabs-wrap .bhrc-workspace-search-tabs::-webkit-scrollbar {
  display: none;
}

.bhrc-workspace-search-tabs-scroll {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #4b555c;
  cursor: pointer;
}

.bhrc-workspace-search-tabs-scroll .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-search-tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: #3d4850;
  cursor: pointer;
  min-height: 28px;
  padding: 0 4px;
}

.bhrc-workspace-search-tabs button.active {
  color: #11181d;
  font-weight: 800;
}

.bhrc-workspace-search-tabs button.active::after {
  position: absolute;
  right: 2px;
  bottom: 0;
  left: 2px;
  height: 2px;
  background: #6f797f;
  content: "";
}
/* /BehindApp authenticated workspace search tabs contract */

/* BehindApp authenticated workspace search history shell contract */
.bhrc-workspace-search-history {
  display: grid;
  gap: 2px;
}

.bhrc-workspace-search-summary {
  padding: 6px 8px 8px;
  color: #66727a;
  font-size: 0.82rem;
  font-weight: 760;
}
/* /BehindApp authenticated workspace search history shell contract */

/* BehindApp authenticated workspace search row base contract */
.bhrc-workspace-search-history button,
.bhrc-workspace-search-result {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 4px 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #172026;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-search-history button:hover,
.bhrc-workspace-search-history button:focus-visible,
.bhrc-workspace-search-result:hover,
.bhrc-workspace-search-result:focus-visible {
  background: #eef1f2;
  outline: 0;
}
/* /BehindApp authenticated workspace search row base contract */

/* BehindApp authenticated workspace search history text contract */
.bhrc-workspace-search-history-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d1d7dc;
  border-radius: 50%;
  color: #5a656d;
  font-size: 0.86rem;
  font-weight: 800;
}

.bhrc-workspace-search-history-main {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bhrc-workspace-search-history-main strong,
.bhrc-workspace-search-history-main small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-search-history-main small,
.bhrc-workspace-search-history-main em,
.bhrc-workspace-search-history-time,
.bhrc-workspace-search-empty {
  color: #66727a;
  font-size: 0.84rem;
}

.bhrc-workspace-search-history-time {
  justify-self: end;
  white-space: nowrap;
}

.bhrc-workspace-search-history-main em {
  font-style: normal;
  white-space: normal;
  line-height: 1.28;
}

.bhrc-workspace-search-empty {
  margin: 34px 8px 0;
}
/* /BehindApp authenticated workspace search history text contract */

/* BehindApp authenticated workspace filter panel shell contract */
.bhrc-workspace-filter-panel {
  display: grid;
  gap: 18px;
  max-height: min(620px, calc(100vh - 86px));
  overflow: auto;
  padding: 22px 32px 26px;
}

.bhrc-workspace-filter-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #333b42;
}

.bhrc-workspace-filter-row strong {
  font-size: 0.92rem;
}
/* /BehindApp authenticated workspace filter panel shell contract */

/* BehindApp authenticated workspace filter field/control base contract */
.bhrc-workspace-filter-row input[type="text"],
.bhrc-workspace-filter-row button {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  border: 0;
  border-bottom: 1px solid #7d858b;
  border-radius: 0;
  background: #ffffff;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-filter-row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
/* /BehindApp authenticated workspace filter field/control base contract */

/* BehindApp authenticated workspace filter date/check layout contract */
.bhrc-workspace-filter-date-row {
  grid-template-columns: 120px minmax(0, 180px) minmax(0, 180px);
}

.bhrc-workspace-filter-date-row label {
  min-width: 0;
}

.bhrc-workspace-filter-check {
  grid-template-columns: 120px 24px;
  justify-content: start;
}

.bhrc-workspace-filter-check input {
  width: 18px;
  height: 18px;
}
/* /BehindApp authenticated workspace filter date/check layout contract */

/* BehindApp authenticated workspace filter checkbox visual/control contract */
.bhrc-workspace-filter-panel input[type="checkbox"],
.bhrc-workspace-filter-modal input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1.5px solid #7d878e;
  border-radius: 4px;
  background: #ffffff;
  color: #26323a;
  cursor: pointer;
}

.bhrc-workspace-filter-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-filter-modal input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-filter-panel input[type="checkbox"]::after,
.bhrc-workspace-filter-modal input[type="checkbox"]::after {
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  opacity: 0;
  transform: translateY(-1px) rotate(45deg);
  content: "";
}

.bhrc-workspace-filter-modal input[type="checkbox"]::after {
  width: 5px;
  height: 9px;
}

.bhrc-workspace-filter-panel input[type="checkbox"]:checked::after,
.bhrc-workspace-filter-modal input[type="checkbox"]:checked::after {
  opacity: 1;
}

.bhrc-workspace-filter-panel input[type="checkbox"]:focus-visible,
.bhrc-workspace-filter-modal input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(38, 50, 58, 0.28);
  outline-offset: 2px;
}
/* /BehindApp authenticated workspace filter checkbox visual/control contract */

/* BehindApp authenticated workspace filter actions/add base contract */
.bhrc-workspace-filter-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 124px 124px;
  align-items: center;
  gap: 8px;
}

.bhrc-workspace-filter-add {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d3d9de;
  border-radius: 5px;
  background: #ffffff;
  color: #172026;
  font-weight: 800;
  cursor: pointer;
}

.bhrc-workspace-filter-add:hover,
.bhrc-workspace-filter-add:focus-visible {
  background: #eef1f2;
  outline: 0;
}
/* /BehindApp authenticated workspace filter actions/add base contract */

/* BehindApp authenticated workspace filter modal layer/shell base contract */
.bhrc-workspace-filter-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 29, 0.48);
}

.bhrc-workspace-filter-modal-layer[hidden] {
  display: none;
}

.bhrc-workspace-filter-modal {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(600px, calc(100vw - 40px));
  max-height: calc(100vh - 64px);
  overflow: auto;
  padding: 28px 30px 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(17, 24, 29, 0.28);
}

.bhrc-workspace-filter-modal h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
/* /BehindApp authenticated workspace filter modal layer/shell base contract */

/* BehindApp authenticated workspace filter modal close base contract */
.bhrc-workspace-filter-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #3d4850;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
/* /BehindApp authenticated workspace filter modal close base contract */

/* BehindApp authenticated workspace filter options/footer base contract */
.bhrc-workspace-filter-options {
  display: grid;
  gap: 12px;
}

.bhrc-workspace-filter-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d4850;
}

.bhrc-workspace-filter-options input {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-filter-modal footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
/* /BehindApp authenticated workspace filter options/footer base contract */

/* BehindApp authenticated workspace permanent delete layer/dialog/action base contract */
.bhrc-workspace-permanent-delete-layer {
  position: fixed;
  inset: 0;
  z-index: 155;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 29, 0.34);
}

.bhrc-workspace-permanent-delete-layer[hidden] {
  display: none;
}

.bhrc-workspace-permanent-delete-dialog {
  display: grid;
  gap: 16px;
  width: min(520px, calc(100vw - 48px));
  padding: 22px 24px 22px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 24px 68px rgba(17, 24, 29, 0.24);
}

.bhrc-workspace-permanent-delete-message {
  margin: 0;
  color: #172026;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.45;
}

.bhrc-workspace-permanent-delete-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.bhrc-workspace-permanent-delete-actions .bhrc-workspace-primary,
.bhrc-workspace-permanent-delete-actions .bhrc-workspace-secondary {
  min-height: 44px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: normal;
}

.bhrc-workspace-permanent-delete-actions .bhrc-workspace-primary {
  justify-self: stretch;
}

.bhrc-workspace-permanent-delete-actions .bhrc-workspace-secondary {
  min-width: 108px;
}
/* /BehindApp authenticated workspace permanent delete layer/dialog/action base contract */

/* BehindApp authenticated workspace report layer/dialog/action base contract */
.bhrc-workspace-report-layer {
  position: fixed;
  inset: 0;
  z-index: 155;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 29, 0.34);
}

.bhrc-workspace-report-layer[hidden] {
  display: none;
}

.bhrc-workspace-report-dialog {
  display: grid;
  gap: 14px;
  width: min(560px, calc(100vw - 48px));
  padding: 22px 24px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 24px 68px rgba(17, 24, 29, 0.24);
}

.bhrc-workspace-report-title {
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
}

.bhrc-workspace-report-body {
  margin: 0;
  color: #4f5b64;
  font-size: 0.94rem;
  line-height: 1.5;
}

.bhrc-workspace-report-assurance {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 58px;
  padding: 11px 12px;
  border: 1px solid #dce2e7;
  border-radius: 6px;
  background: #f8fafb;
  color: #3f4b55;
  font-size: 0.9rem;
  line-height: 1.45;
}

.bhrc-workspace-report-assurance .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: #617080;
}

.bhrc-workspace-report-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, auto);
  align-items: center;
  gap: 10px;
}

.bhrc-workspace-report-actions .bhrc-workspace-primary,
.bhrc-workspace-report-actions .bhrc-workspace-secondary {
  min-height: 44px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: normal;
}
/* /BehindApp authenticated workspace report layer/dialog/action base contract */

/* BehindApp authenticated workspace snooze confirm dialog/question base contract */
.bhrc-workspace-snooze-confirm-dialog {
  width: min(520px, calc(100vw - 48px));
}

.bhrc-workspace-snooze-confirm-question {
  color: #172026;
  font-weight: 720;
}
/* /BehindApp authenticated workspace snooze confirm dialog/question base contract */

/* BehindApp authenticated workspace sweep layer/dialog/title base contract */
.bhrc-workspace-sweep-layer {
  position: fixed;
  inset: 0;
  z-index: 155;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 29, 0.34);
}

.bhrc-workspace-sweep-layer[hidden] {
  display: none;
}

.bhrc-workspace-sweep-dialog {
  display: grid;
  gap: 14px;
  width: min(560px, calc(100vw - 48px));
  padding: 22px 24px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 24px 68px rgba(17, 24, 29, 0.24);
}

.bhrc-workspace-sweep-title {
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
}
/* /BehindApp authenticated workspace sweep layer/dialog/title base contract */

/* BehindApp authenticated workspace sweep body/sender base contract */
.bhrc-workspace-sweep-body,
.bhrc-workspace-sweep-sender {
  margin: 0;
  color: #4f5b64;
  font-size: 0.94rem;
  line-height: 1.5;
}

.bhrc-workspace-sweep-sender {
  color: #172026;
  font-weight: 720;
}

.bhrc-workspace-sweep-sender .bhrc-workspace-reader-party {
  display: inline;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.bhrc-workspace-sweep-sender-suffix {
  color: #4f5b64;
  font-weight: 400;
}
/* /BehindApp authenticated workspace sweep body/sender base contract */

/* BehindApp authenticated workspace sweep options/choice icon base contract */
.bhrc-workspace-sweep-options {
  display: grid;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid #dce2e7;
  border-radius: 6px;
  background: #f8fafb;
}

.bhrc-workspace-sweep-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 26px;
  color: #3f4b55;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.bhrc-workspace-sweep-option:hover,
.bhrc-workspace-sweep-option:focus-within {
  color: #172026;
}

.bhrc-workspace-sweep-option.is-selected {
  color: #172026;
}

.bhrc-workspace-sweep-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bhrc-workspace-sweep-choice-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: #617080;
}

.bhrc-workspace-sweep-option.is-selected .bhrc-workspace-sweep-choice-icon {
  background: #3456a4;
}
/* /BehindApp authenticated workspace sweep options/choice icon base contract */

.bhrc-workspace-sweep-target {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  justify-content: start;
  gap: 8px;
  color: #3f4b55;
  font-size: 0.9rem;
  line-height: 1.35;
}

.bhrc-workspace-sweep-target-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.bhrc-workspace-sweep-target-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.bhrc-workspace-sweep-target-toggle:focus-visible {
  outline: 2px solid rgba(52, 86, 164, 0.38);
  outline-offset: 2px;
}

.bhrc-workspace-sweep-target-caret {
  width: 12px;
  height: 12px;
  color: currentColor;
  background-color: currentColor;
}

.bhrc-workspace-sweep-target-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 4;
  display: grid;
  width: max-content;
  min-width: 180px;
  max-width: min(240px, calc(100vw - 64px));
  max-height: 240px;
  overflow: auto;
  padding: 6px 0;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 14px 36px rgba(17, 24, 29, 0.16);
}

.bhrc-workspace-sweep-target-menu[hidden] {
  display: none;
}

.bhrc-workspace-sweep-target-option {
  display: block;
  width: 100%;
  min-height: 24px;
  padding: 3px 14px;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.bhrc-workspace-sweep-target-option:hover,
.bhrc-workspace-sweep-target-option:focus-visible {
  background: transparent;
  color: #172026;
}

.bhrc-workspace-sweep-target-option.is-selected,
.bhrc-workspace-sweep-target-option[aria-selected="true"] {
  color: #3456a4;
}

.bhrc-workspace-sweep-target-native {
  display: none !important;
}

/* BehindApp authenticated workspace sweep actions layout base contract */
.bhrc-workspace-sweep-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, auto) minmax(112px, auto);
  align-items: center;
  gap: 10px;
}

.bhrc-workspace-sweep-actions .bhrc-workspace-primary,
.bhrc-workspace-sweep-actions .bhrc-workspace-secondary {
  min-height: 44px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: normal;
}
/* /BehindApp authenticated workspace sweep actions layout base contract */

/* BehindApp authenticated workspace rule layer/dialog/title/body base contract */
.bhrc-workspace-rule-layer {
  position: fixed;
  inset: 0;
  z-index: 155;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 29, 0.34);
}

.bhrc-workspace-rule-layer[hidden],
.bhrc-workspace-rule-folder-list[hidden] {
  display: none;
}

.bhrc-workspace-rule-dialog {
  display: grid;
  gap: 12px;
  width: min(500px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid var(--bhrc-theme-line, #d9dee3);
  border-radius: 8px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  box-shadow: 0 24px 68px rgba(17, 24, 29, 0.24);
}

.bhrc-workspace-rule-title,
.bhrc-workspace-rule-body {
  margin: 0;
}

.bhrc-workspace-rule-title {
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
}

.bhrc-workspace-rule-body {
  color: var(--bhrc-theme-muted, #3f4b55);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-rule-body strong {
  color: var(--bhrc-theme-text, #172026);
}
/* /BehindApp authenticated workspace rule layer/dialog/title/body base contract */

/* BehindApp authenticated workspace rule picker/toggle/folder-list base contract */
.bhrc-workspace-rule-picker {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bhrc-workspace-rule-picker.is-expanded {
  gap: 0;
}

.bhrc-workspace-rule-folder-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  width: 100%;
  padding: 0 10px 0 12px;
  border: 1px solid var(--bhrc-theme-line, #cfd7df);
  border-radius: 6px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #5c6873);
  text-align: left;
}

.bhrc-workspace-rule-picker.is-expanded .bhrc-workspace-rule-folder-toggle {
  border-radius: 6px 6px 0 0;
}

.bhrc-workspace-rule-folder-toggle .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
}

.bhrc-workspace-rule-folder-list {
  display: grid;
  gap: 2px;
  max-height: min(318px, 42vh);
  padding: 0 6px 6px;
  border: 1px solid var(--bhrc-theme-line, #dce2e7);
  border-top: 0;
  border-radius: 6px;
  background: var(--bhrc-theme-panel, #ffffff);
  overflow-y: auto;
}

.bhrc-workspace-rule-picker.is-expanded .bhrc-workspace-rule-folder-list {
  border-radius: 0 0 6px 6px;
}
/* /BehindApp authenticated workspace rule picker/toggle/folder-list base contract */

/* BehindApp authenticated workspace rule folder search/input base contract */
.bhrc-workspace-rule-folder-search {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 34px;
  margin: 0 -5px 4px;
  padding: 0 8px;
  border-bottom: 1px solid var(--bhrc-theme-line, #d8dee4);
  background: var(--bhrc-theme-panel, #ffffff);
}

.bhrc-workspace-rule-folder-search .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
}

.bhrc-workspace-rule-folder-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bhrc-theme-text, #172026);
  font: inherit;
}
/* /BehindApp authenticated workspace rule folder search/input base contract */

/* BehindApp authenticated workspace rule folder results/empty base contract */
.bhrc-workspace-rule-folder-results {
  display: grid;
  gap: 2px;
}

.bhrc-workspace-rule-folder-results:empty::after {
  content: attr(data-empty);
  padding: 8px 10px;
  color: var(--bhrc-theme-muted, #7b858d);
  font-size: 0.86rem;
}
/* /BehindApp authenticated workspace rule folder results/empty base contract */

/* BehindApp authenticated workspace rule folder row state base contract */
.bhrc-workspace-rule-folder {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--bhrc-theme-text, #172026);
  text-align: left;
}

.bhrc-workspace-rule-folder:hover,
.bhrc-workspace-rule-folder:focus-visible,
.bhrc-workspace-rule-folder.is-selected {
  background: var(--bhrc-workspace-theme-accent-soft, #eef2f6);
}

.bhrc-workspace-rule-folder .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
  background: currentColor;
}

.bhrc-workspace-rule-folder-create {
  border: 0;
}
/* /BehindApp authenticated workspace rule folder row state base contract */

/* BehindApp authenticated workspace reader compose quote row base contract */
.bhrc-workspace-reader-compose-quote-row {
  display: grid;
  grid-template-columns: 92px 8px minmax(0, 1fr);
  align-items: baseline;
  column-gap: 4px;
  min-width: 0;
}

.bhrc-workspace-reader-compose-quote-label,
.bhrc-workspace-reader-compose-quote-colon {
  font-weight: 700;
}

.bhrc-workspace-reader-compose-quote-label {
  min-width: 0;
}

.bhrc-workspace-reader-compose-quote-value {
  min-width: 0;
  overflow-wrap: anywhere;
}
/* /BehindApp authenticated workspace reader compose quote row base contract */

/* BehindApp authenticated workspace rule more button base contract */
.bhrc-workspace-rule-more {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 720;
}

.bhrc-workspace-rule-more:hover,
.bhrc-workspace-rule-more:focus-visible {
  color: #172026;
  text-decoration: none;
  outline: 0;
}
/* /BehindApp authenticated workspace rule more button base contract */

/* BehindApp authenticated workspace rule actions layout base contract */
.bhrc-workspace-rule-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 2px;
}

.bhrc-workspace-rule-actions .bhrc-workspace-primary,
.bhrc-workspace-rule-actions .bhrc-workspace-secondary {
  min-width: 96px;
  min-height: 34px;
}
/* /BehindApp authenticated workspace rule actions layout base contract */

/* BehindApp authenticated workspace top actions/greeting base contract */
.bhrc-workspace-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  height: 100%;
}

.bhrc-workspace-top-greeting {
  min-width: 0;
  max-width: min(280px, 28vw);
  margin-right: 2px;
  overflow: hidden;
  color: #3d4850;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.1;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* /BehindApp authenticated workspace top actions/greeting base contract */

/* BehindApp authenticated workspace shared transparent controls base contract */
.bhrc-workspace-icon-button,
.bhrc-workspace-account-chip,
.bhrc-workspace-tabs button,
.bhrc-workspace-ribbon-button,
.bhrc-workspace-nav-toggle,
.bhrc-workspace-nav-heading,
.bhrc-workspace-folder,
.bhrc-workspace-list-tabs button,
.bhrc-workspace-menu button,
.bhrc-workspace-menu a,
.bhrc-workspace-rail button,
.bhrc-workspace-side-close,
.bhrc-workspace-compose header button {
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
}
/* /BehindApp authenticated workspace shared transparent controls base contract */

/* BehindApp authenticated workspace icon button hover base contract */
.bhrc-workspace-icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #3d4850;
}

.bhrc-workspace-icon-button:hover,
.bhrc-workspace-icon-button:focus-visible,
.bhrc-workspace-rail button:hover,
.bhrc-workspace-rail button:focus-visible,
.bhrc-workspace-rail button.active,
.bhrc-workspace-ribbon-button:hover,
.bhrc-workspace-ribbon-button:focus-visible,
.bhrc-workspace-tabs button:hover,
.bhrc-workspace-tabs button:focus-visible {
  background: #e9edef;
  outline: 0;
}
/* /BehindApp authenticated workspace icon button hover base contract */

/* BehindApp authenticated workspace account chip/avatar base contract */
.bhrc-workspace-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  min-height: 34px;
  padding: 3px 8px;
  border: 1px solid #d8dee4;
  border-radius: 8px;
  color: #27323a;
}

.bhrc-workspace-account-chip span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d7dddf;
  color: #263037;
  font-weight: 800;
}
/* /BehindApp authenticated workspace account chip/avatar base contract */

/* BehindApp authenticated workspace tabs navigation base contract */
.bhrc-workspace-tabs {
  display: flex;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  padding: 0 52px 0 64px;
  border-bottom: 1px solid #dce2e7;
  background: #fbfbfb;
}

.bhrc-workspace-hamburger {
  display: inline-grid;
  place-items: center;
  width: 36px;
  min-height: 35px;
  margin-right: 2px;
  border-radius: 6px;
  color: #3d4850;
}

.bhrc-workspace-tabs button {
  position: relative;
  min-height: 35px;
  padding: 0 12px;
  color: #3d4850;
}

.bhrc-workspace-tabs button.active {
  color: #11181d;
  font-weight: 800;
}

.bhrc-workspace-tabs button.active::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  background: #6f797f;
  content: "";
}
/* /BehindApp authenticated workspace tabs navigation base contract */

/* BehindApp authenticated workspace ribbon shell/panel base contract */
.bhrc-workspace-ribbon {
  min-width: 0;
  margin-left: 56px;
  padding: 5px 16px;
  border-bottom: 1px solid #dce2e7;
  background: #f5f6f6;
}

.bhrc-workspace-ribbon-panel {
  display: none;
  align-items: stretch;
  gap: 8px;
  min-height: 38px;
}

.bhrc-workspace-ribbon-panel.active {
  display: flex;
}

.bhrc-workspace-ribbon:has(.bhrc-workspace-file-ribbon.active) {
  padding-left: 0;
}

.bhrc-workspace-ribbon-panel.active.bhrc-workspace-balanced-ribbon {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(2px, 0.58vw, 11px);
  width: 100%;
  min-width: 0;
  overflow: visible;
}
/* /BehindApp authenticated workspace ribbon shell/panel base contract */

/* BehindApp authenticated workspace ribbon button sizing base contract */
.bhrc-workspace-ribbon-button,
.bhrc-workspace-primary,
.bhrc-workspace-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.bhrc-workspace-ribbon .bhrc-workspace-ribbon-button,
.bhrc-workspace-ribbon .bhrc-workspace-primary,
.bhrc-workspace-ribbon .bhrc-workspace-secondary {
  min-height: 34px;
}

.bhrc-workspace-ribbon .bhrc-workspace-ribbon-button {
  font-weight: 500;
}
/* /BehindApp authenticated workspace ribbon button sizing base contract */

/* BehindApp authenticated workspace file ribbon button grid base contract */
.bhrc-workspace-file-ribbon .bhrc-workspace-ribbon-button {
  display: grid;
  grid-template-columns: 24px minmax(0, auto);
  justify-content: start;
  justify-items: start;
  min-width: 0;
  text-align: left;
}

.bhrc-workspace-file-ribbon .bhrc-workspace-ribbon-button.bhrc-workspace-ribbon-menu-button {
  grid-template-columns: 24px minmax(0, auto) 14px;
}
/* /BehindApp authenticated workspace file ribbon button grid base contract */

/* BehindApp authenticated workspace balanced ribbon icon/text base contract */
.bhrc-workspace-balanced-ribbon .bhrc-workspace-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.bhrc-workspace-file-ribbon .bhrc-workspace-ribbon-button .bhrc-workspace-icon {
  align-self: center;
  justify-self: center;
}

.bhrc-workspace-file-ribbon .bhrc-workspace-ribbon-button > span:not(.bhrc-workspace-icon) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* /BehindApp authenticated workspace balanced ribbon icon/text base contract */

/* BehindApp authenticated workspace balanced ribbon compact button base contract */
.bhrc-workspace-balanced-ribbon .bhrc-workspace-primary,
.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-button {
  flex: 0 1 auto;
  gap: 4px;
  min-height: 32px;
  padding: 0 clamp(4px, 0.48vw, 8px);
}

.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-button {
  justify-content: center;
}
/* /BehindApp authenticated workspace balanced ribbon compact button base contract */

/* BehindApp authenticated workspace ribbon split/caret base contract */
.bhrc-workspace-ribbon-split {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 0;
  min-width: 0;
}

.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-split .bhrc-workspace-ribbon-button {
  flex: 0 1 auto;
}

.bhrc-workspace-ribbon-split .bhrc-workspace-ribbon-button:first-child {
  padding-right: 0;
}

.bhrc-workspace-ribbon-caret-button {
  width: 20px;
  min-width: 20px;
  padding-right: 0;
  padding-left: 0;
}

.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-caret-button .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
}

.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-button .bhrc-workspace-ribbon-caret-icon {
  width: 14px;
  height: 14px;
}
/* /BehindApp authenticated workspace ribbon split/caret base contract */

/* BehindApp authenticated workspace balanced ribbon file label base contract */
.bhrc-workspace-balanced-ribbon.bhrc-workspace-file-ribbon .bhrc-workspace-ribbon-button {
  justify-content: start;
  justify-items: start;
  text-align: left;
}

.bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-button > span:last-child:not(.bhrc-workspace-icon),
.bhrc-workspace-balanced-ribbon .bhrc-workspace-primary > span:last-child:not(.bhrc-workspace-icon) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* /BehindApp authenticated workspace balanced ribbon file label base contract */

/* BehindApp authenticated workspace home ribbon compact sizing base contract */
.bhrc-workspace-home-ribbon.active {
  overflow: hidden;
}

.bhrc-workspace-home-ribbon .bhrc-workspace-primary,
.bhrc-workspace-home-ribbon .bhrc-workspace-ribbon-button,
.bhrc-workspace-home-ribbon .bhrc-workspace-ribbon-split {
  min-width: 0;
}

.bhrc-workspace-home-ribbon > .bhrc-workspace-primary[data-bhrc-compose-open] {
  flex: 0 1 auto;
  max-width: 252px;
  min-width: 136px;
}

.bhrc-workspace-home-ribbon > .bhrc-workspace-ribbon-button {
  flex: 0 1 auto;
  max-width: 138px;
}

.bhrc-workspace-home-ribbon > .bhrc-workspace-ribbon-split {
  flex: 0 1 auto;
  max-width: 148px;
}

.bhrc-workspace-home-ribbon .bhrc-workspace-ribbon-split .bhrc-workspace-ribbon-button:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.bhrc-workspace-home-ribbon .bhrc-workspace-ribbon-button > span:not(.bhrc-workspace-icon),
.bhrc-workspace-home-ribbon .bhrc-workspace-primary > span:not(.bhrc-workspace-icon) {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* /BehindApp authenticated workspace home ribbon compact sizing base contract */

/* BehindApp authenticated workspace ribbon button no-hover state base contract */
.bhrc-workspace-ribbon-button {
  border: 1px solid transparent;
  color: #49545c;
}

.bhrc-workspace-ribbon-button:disabled,
.bhrc-workspace-ribbon-button.bhrc-workspace-menu-disabled {
  color: #a7afb5;
  cursor: default;
}

.bhrc-workspace-ribbon-button:disabled:hover,
.bhrc-workspace-ribbon-button.bhrc-workspace-menu-disabled:hover {
  background: transparent;
}

.bhrc-workspace-ribbon .bhrc-workspace-ribbon-button:not(:disabled):hover,
.bhrc-workspace-ribbon .bhrc-workspace-ribbon-button:not(:disabled):focus-visible,
.bhrc-workspace-ribbon .bhrc-workspace-ribbon-split:hover,
.bhrc-workspace-ribbon .bhrc-workspace-ribbon-caret-button:hover,
.bhrc-workspace-ribbon .bhrc-workspace-ribbon-caret-button:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: currentColor !important;
}
/* /BehindApp authenticated workspace ribbon button no-hover state base contract */

/* BehindApp authenticated workspace primary/secondary command visual base contract */
.bhrc-workspace-primary {
  border: 1px solid rgba(32, 37, 43, 0.48);
  border-radius: 999px;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #566174;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    2px 3px 0 rgba(15, 17, 21, 0.08);
  transform: none;
}

.bhrc-workspace-primary:hover,
.bhrc-workspace-primary:focus-visible {
  border-color: rgba(32, 37, 43, 0.58);
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #1f2937;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    2px 3px 0 rgba(15, 17, 21, 0.08);
  outline: 0;
  transform: none;
}

.bhrc-workspace-secondary {
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-secondary:hover,
.bhrc-workspace-secondary:focus-visible {
  border-color: #7f8894;
  background: #ffffff;
  color: #1f2937;
  box-shadow: none;
  outline: 0;
  transform: none;
}
/* /BehindApp authenticated workspace primary/secondary command visual base contract */

/* BehindApp authenticated workspace main/nav/rail shell scaffold contract */
.bhrc-workspace-main {
  display: grid;
  grid-template-columns: 248px minmax(280px, 352px) minmax(0, 1fr);
  margin-left: 56px;
  min-height: 0;
  min-width: 0;
}

.bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-main {
  grid-template-columns: minmax(280px, 352px) minmax(0, 1fr);
}

.bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-nav {
  display: none;
}

.bhrc-workspace-rail {
  position: fixed;
  top: 48px;
  bottom: 130px;
  left: 0;
  z-index: 74;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 56px;
  padding: 10px 8px;
  border-right: 1px solid #dce2e7;
  background: #f7f8f8;
}
/* /BehindApp authenticated workspace main/nav/rail shell scaffold contract */

/* BehindApp authenticated workspace footer compact shell contract */
.bhrc-workspace-shell > .bhrc-home-footer {
  min-width: 0;
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-inner {
  width: min(1070px, calc(100% - 42px));
  padding: 31px 0 14px;
  font-size: 14px;
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-row {
  gap: 16px 27px;
  margin-bottom: 15px;
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-copy {
  margin: 3px 0 0;
  font-size: 14px;
}
/* /BehindApp authenticated workspace footer compact shell contract */

/* BehindApp authenticated workspace rail button/label behavior contract */
.bhrc-workspace-rail button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #3c464d;
  font-weight: 800;
}

.bhrc-workspace-rail-label {
  display: none;
  max-width: 48px;
  margin-top: 3px;
  overflow: hidden;
  color: #33404a;
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-body.is-workspace-rail-labels .bhrc-workspace-rail {
  gap: 7px;
}

.bhrc-workspace-body.is-workspace-rail-labels .bhrc-workspace-rail button {
  width: 44px;
  min-height: 47px;
  height: auto;
}

.bhrc-workspace-body.is-workspace-rail-labels .bhrc-workspace-rail-label {
  display: block;
}

.bhrc-workspace-body.is-workspace-rail-bold .bhrc-workspace-rail .bhrc-workspace-icon {
  filter:
    drop-shadow(0.45px 0 currentColor)
    drop-shadow(-0.45px 0 currentColor)
    drop-shadow(0 0.45px currentColor)
    drop-shadow(0 -0.45px currentColor);
  transform: scale(1.04);
}
/* /BehindApp authenticated workspace rail button/label behavior contract */

/* BehindApp authenticated workspace nav/QR reader shell contract */
[data-bhrc-workspace-app-surface][hidden] {
  display: none !important;
}

.bhrc-workspace-nav {
  min-width: 0;
  padding: 10px 8px;
  border-right: 1px solid #dce2e7;
  background: #f4f5f5;
  overflow: auto;
}

.bhrc-workspace-qr-tabs button {
  min-width: 0;
}

.bhrc-workspace-qr-nav {
  display: block;
}

.bhrc-workspace-qr-reader {
  grid-column: 2 / -1;
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
  padding: 28px clamp(28px, 5vw, 72px);
}

.bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-qr-reader {
  grid-column: 1 / -1;
}
/* /BehindApp authenticated workspace nav/QR reader shell contract */

/* BehindApp authenticated workspace QR block shell/title/divider contract */
.bhrc-workspace-qr-blocks {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  min-height: 100%;
  padding: 10px 0;
}

.bhrc-workspace-qr-blocks h2 {
  margin: 0;
  min-height: 30px;
  padding: 6px 12px 0;
  color: #172026;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.bhrc-workspace-qr-divider {
  height: 1px;
  margin: 8px 12px 10px;
  background: #dce2e7;
}
/* /BehindApp authenticated workspace QR block shell/title/divider contract */

/* BehindApp authenticated workspace QR block head/row alignment base contract */
.bhrc-workspace-qr-block-head,
.bhrc-workspace-qr-block-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: 10px;
}

.bhrc-workspace-qr-block-head {
  min-height: 28px;
  padding: 0 12px;
  color: #5e6971;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.bhrc-workspace-qr-block-head span:last-child,
.bhrc-workspace-qr-block-row span:last-child {
  text-align: right;
}
/* /BehindApp authenticated workspace QR block head/row alignment base contract */

/* BehindApp authenticated workspace QR block list/row text base contract */
.bhrc-workspace-qr-block-list {
  min-height: 0;
  padding: 0 4px 10px;
  overflow: auto;
}

.bhrc-workspace-qr-block-row {
  width: 100%;
  min-height: 38px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid #e8ecef;
  border-radius: 0;
  background: transparent;
  color: #2f3940;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-qr-block-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-qr-block-row span:first-child {
  color: #172026;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bhrc-workspace-qr-block-row span:last-child {
  color: #59646b;
  font-variant-numeric: tabular-nums;
}
/* /BehindApp authenticated workspace QR block list/row text base contract */

/* BehindApp authenticated workspace QR block row state/status base contract */
.bhrc-workspace-qr-block-row:hover,
.bhrc-workspace-qr-block-row:focus-visible,
.bhrc-workspace-qr-block-row.is-active {
  background: #e9edef;
  outline: 0;
}

.bhrc-workspace-qr-block-status {
  margin: 10px 8px 0;
  color: #66727a;
  font-size: 0.86rem;
  line-height: 1.45;
}
/* /BehindApp authenticated workspace QR block row state/status base contract */

/* BehindApp authenticated workspace QR reader empty/detail intro base contract */
.bhrc-workspace-qr-reader-empty,
.bhrc-workspace-qr-detail {
  width: min(100%, 820px);
  max-width: 820px;
  margin: 0 auto;
}

.bhrc-workspace-qr-reader-empty {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  color: #5f696f;
}

.bhrc-workspace-qr-reader-empty strong {
  color: #172026;
  font-size: 1.2rem;
}

.bhrc-workspace-qr-reader-empty p {
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
}

.bhrc-workspace-qr-detail {
  display: grid;
  gap: 18px;
}

.bhrc-workspace-qr-detail header {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dde3e7;
}

.bhrc-workspace-qr-detail h1,
.bhrc-workspace-qr-detail h2,
.bhrc-workspace-qr-detail p {
  margin: 0;
}

.bhrc-workspace-qr-detail h1 {
  color: #172026;
  font-size: 1.55rem;
  line-height: 1.18;
}

.bhrc-workspace-qr-detail h2 {
  color: #172026;
  font-size: 1rem;
}

.bhrc-workspace-qr-detail p {
  color: #526069;
  line-height: 1.55;
}
/* /BehindApp authenticated workspace QR reader empty/detail intro base contract */

/* BehindApp authenticated workspace QR detail meta pill base contract */
.bhrc-workspace-qr-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhrc-workspace-qr-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid #d8dee2;
  border-radius: 999px;
  color: #526069;
  font-size: 0.78rem;
  font-weight: 800;
}
/* /BehindApp authenticated workspace QR detail meta pill base contract */

/* BehindApp authenticated workspace QR detail grid/hash base contract */
.bhrc-workspace-qr-detail-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid #dde3e7;
}

.bhrc-workspace-qr-detail-grid dt,
.bhrc-workspace-qr-detail-grid dd {
  min-width: 0;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #e8ecef;
}

.bhrc-workspace-qr-detail-grid dt {
  color: #5e6971;
  font-size: 0.84rem;
  font-weight: 800;
}

.bhrc-workspace-qr-detail-grid dd {
  color: #172026;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.bhrc-workspace-qr-hash {
  font-family: inherit;
  font-variant-numeric: tabular-nums;
}
/* /BehindApp authenticated workspace QR detail grid/hash base contract */

/* BehindApp authenticated workspace QR transaction list base contract */
.bhrc-workspace-qr-transactions {
  display: grid;
  gap: 8px;
}

.bhrc-workspace-qr-transaction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #e8ecef;
}

.bhrc-workspace-qr-transaction-main {
  display: grid;
  gap: 2px;
}

.bhrc-workspace-qr-transaction strong,
.bhrc-workspace-qr-transaction span,
.bhrc-workspace-qr-transaction small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-qr-transaction strong {
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-qr-transaction span,
.bhrc-workspace-qr-transaction small {
  color: #5e6971;
  font-size: 0.82rem;
}
/* /BehindApp authenticated workspace QR transaction list base contract */

/* BehindApp authenticated workspace nav toggle/heading base contract */
.bhrc-workspace-nav-toggle,
.bhrc-workspace-nav-heading,
.bhrc-workspace-folder,
.bhrc-workspace-add-account {
  width: 100%;
  min-width: 0;
}

.bhrc-workspace-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  color: #3c464d;
  font-weight: 800;
}

.bhrc-workspace-nav-group,
.bhrc-workspace-account-block {
  display: grid;
  gap: 2px;
  margin-top: 10px;
}

.bhrc-workspace-nav-heading {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 8px;
  text-align: left;
  color: #172026;
}

.bhrc-workspace-nav-heading strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* /BehindApp authenticated workspace nav toggle/heading base contract */

/* BehindApp authenticated workspace folder row/menu base contract */
.bhrc-workspace-folder {
  position: relative;
  display: grid;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: #2f3940;
  text-align: left;
}

.bhrc-workspace-folder:not([data-bhrc-smart-folder-row]):not([data-bhrc-fixed-folder-row]) {
  grid-template-columns: 24px minmax(0, 1fr) minmax(18px, auto);
}

.bhrc-workspace-folder:not([data-bhrc-smart-folder-row]):not([data-bhrc-fixed-folder-row]):is(:hover, :focus-visible, .is-folder-menu-open) {
  grid-template-columns: 24px minmax(0, 1fr) minmax(18px, auto) 22px;
}

.bhrc-workspace-folder:is([data-bhrc-smart-folder-row], [data-bhrc-fixed-folder-row]) {
  grid-template-columns: 24px minmax(0, 1fr) minmax(18px, auto);
}

.bhrc-workspace-folder strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

.bhrc-workspace-folder em {
  grid-column: 3;
  justify-self: end;
  min-width: 18px;
  color: #50606a;
  font-size: 0.82rem;
  font-style: normal;
  transition: none;
}

.bhrc-workspace-folder-menu-button {
  box-sizing: border-box;
  display: none;
  grid-column: 4;
  align-self: center;
  justify-self: end;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  box-shadow: none;
  color: #65717a;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: none;
}

.bhrc-workspace-folder-menu-button .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
}

.bhrc-workspace-folder-menu-button:hover,
.bhrc-workspace-folder-menu-button:focus-visible,
.bhrc-workspace-folder-menu-button:active,
.bhrc-workspace-folder-menu-button.is-open {
  background: transparent;
  box-shadow: none;
  color: #65717a;
  transform: none;
  outline: 0;
}

.bhrc-workspace-folder:hover .bhrc-workspace-folder-menu-button,
.bhrc-workspace-folder:focus-visible .bhrc-workspace-folder-menu-button,
.bhrc-workspace-folder.is-folder-menu-open .bhrc-workspace-folder-menu-button,
.bhrc-workspace-folder-menu-button:hover,
.bhrc-workspace-folder-menu-button:focus-visible,
.bhrc-workspace-folder-menu-button.is-open {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
}
/* /BehindApp authenticated workspace folder row/menu base contract */

/* BehindApp authenticated workspace folder tint/drag state contract */
.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-icon,
.bhrc-workspace-folder.is-folder-tinted > strong,
.bhrc-workspace-folder.is-folder-tinted > em.has-unread,
.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-folder-menu-button {
  color: var(--bhrc-folder-color);
}

.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-folder-menu-button:hover,
.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-folder-menu-button:focus-visible,
.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-folder-menu-button:active,
.bhrc-workspace-folder.is-folder-tinted > .bhrc-workspace-folder-menu-button.is-open {
  color: var(--bhrc-folder-color);
}

.bhrc-workspace-folder.is-folder-draggable {
  cursor: pointer;
}

.bhrc-workspace-folder.is-folder-dragging {
  opacity: 0.56;
  cursor: default;
}

.bhrc-workspace-folder.is-folder-draggable:active {
  cursor: pointer;
}
/* /BehindApp authenticated workspace folder tint/drag state contract */

/* BehindApp authenticated workspace folder active hover state contract */
.bhrc-workspace-folder:hover,
.bhrc-workspace-folder:focus-visible,
.bhrc-workspace-folder.active {
  background: #dfe4e7;
  outline: 0;
}
/* /BehindApp authenticated workspace folder active hover state contract */

/* BehindApp authenticated workspace add-account control shell contract */
.bhrc-workspace-add-account {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 34px;
  margin: 10px 0;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #172026;
  font-weight: 400;
  text-align: left;
  cursor: text;
}

.bhrc-workspace-add-account:hover,
.bhrc-workspace-add-account:focus-visible {
  background: #e9edef;
  outline: 0;
}

.bhrc-workspace-add-account[hidden] {
  display: none !important;
}
/* /BehindApp authenticated workspace add-account control shell contract */

/* BehindApp authenticated workspace custom folder create input scaffold contract */
.bhrc-workspace-custom-folder-list,
.bhrc-workspace-nav-folder-create {
  display: grid;
  gap: 2px;
}

.bhrc-workspace-nav-folder-create {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  margin: 10px 0;
  padding: 0 0 0 10px;
  color: #172026;
  font-weight: 800;
}

.bhrc-workspace-nav-folder-create label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.bhrc-workspace-nav-folder-create label .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-nav-folder-create-text {
  position: relative;
  display: grid;
  align-items: center;
  min-width: 0;
}

.bhrc-workspace-nav-folder-create-placeholder,
.bhrc-workspace-nav-folder-create-text input {
  grid-area: 1 / 1;
}

.bhrc-workspace-nav-folder-create-placeholder {
  min-width: 0;
  color: currentColor;
  font: inherit;
  font-weight: inherit;
  opacity: 0.34;
  pointer-events: none;
  white-space: nowrap;
}

.bhrc-workspace-nav-folder-create-text.has-value .bhrc-workspace-nav-folder-create-placeholder {
  opacity: 0;
}

.bhrc-workspace-nav-folder-create input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: text;
  font: inherit;
  font-weight: inherit;
}

.bhrc-workspace-nav-folder-create input::placeholder {
  color: currentColor;
  font: inherit;
  opacity: 0.34;
}
/* /BehindApp authenticated workspace custom folder create input scaffold contract */

/* BehindApp authenticated workspace folder create button/action state contract */
.bhrc-workspace-nav-folder-create button,
.bhrc-workspace-move-create-toggle,
.bhrc-workspace-move-create .bhrc-workspace-primary {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #9aa3ad;
  border-radius: 8px;
  background: #ffffff;
  color: #566174;
  font-weight: 560;
  box-shadow: none;
}

.bhrc-workspace-nav-folder-create button:not(:disabled):hover,
.bhrc-workspace-nav-folder-create button:not(:disabled):focus-visible,
.bhrc-workspace-move-create-toggle:hover,
.bhrc-workspace-move-create-toggle:focus-visible,
.bhrc-workspace-move-create .bhrc-workspace-primary:not(:disabled):hover,
.bhrc-workspace-move-create .bhrc-workspace-primary:not(:disabled):focus-visible {
  border-color: #7f8894;
  color: #1f2937;
  background: #f4f5f6;
  box-shadow: none;
  outline: none;
}

.bhrc-workspace-nav-folder-create button:disabled,
.bhrc-workspace-move-create .bhrc-workspace-primary:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.bhrc-workspace-nav-folder-create .bhrc-workspace-primary[hidden] {
  display: none !important;
}

.bhrc-workspace-nav-folder-create .bhrc-workspace-primary {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  font-weight: 560;
  box-shadow: none;
}

.bhrc-workspace-nav-folder-create .bhrc-workspace-primary:not(:disabled):hover,
.bhrc-workspace-nav-folder-create .bhrc-workspace-primary:not(:disabled):focus-visible {
  border-color: #7f8894;
  color: #1f2937;
  background: #f4f5f6;
  box-shadow: none;
  outline: none;
}
/* /BehindApp authenticated workspace folder create button/action state contract */

/* BehindApp authenticated workspace folder create entry/menu shell contract */
.bhrc-workspace-nav-folder-create.is-folder-create-entry-toggle {
  display: block;
  min-height: 34px;
  margin: 0;
  padding: 0;
}

.bhrc-workspace-menu .bhrc-workspace-folder-create-entry,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry,
.bhrc-workspace-menu .bhrc-workspace-folder-create-toggle-canonical,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  margin: 10px 0;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #172026;
  cursor: text;
  font: inherit;
  font-weight: 400;
  text-align: left;
  box-shadow: none;
}

.bhrc-workspace-menu .bhrc-workspace-nav-folder-create,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  margin: 10px 0;
  padding: 0 0 0 10px;
  color: #172026;
  font-weight: 400;
}

.bhrc-workspace-menu .bhrc-workspace-nav-folder-create.is-folder-create-entry-toggle,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create.is-folder-create-entry-toggle {
  margin: 0;
  padding: 0;
}

.bhrc-workspace-menu .bhrc-workspace-folder-create-entry .bhrc-workspace-icon,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry .bhrc-workspace-icon,
.bhrc-workspace-menu .bhrc-workspace-folder-create-toggle-canonical .bhrc-workspace-icon,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-menu .bhrc-workspace-nav-folder-create label span,
.bhrc-workspace-menu .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-text,
.bhrc-workspace-menu .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-placeholder,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create label span,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-text,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-placeholder {
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: inherit;
}

.bhrc-workspace-menu .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-placeholder,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create .bhrc-workspace-nav-folder-create-placeholder {
  opacity: 0.34;
}

.bhrc-workspace-menu .bhrc-workspace-nav-folder-create-text.has-value .bhrc-workspace-nav-folder-create-placeholder,
.bhrc-workspace-rule-folder-list .bhrc-workspace-nav-folder-create-text.has-value .bhrc-workspace-nav-folder-create-placeholder {
  opacity: 0;
}

.bhrc-workspace-menu .bhrc-workspace-folder-create-entry:hover,
.bhrc-workspace-menu .bhrc-workspace-folder-create-entry:focus-visible,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry:hover,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry:focus-visible,
.bhrc-workspace-menu .bhrc-workspace-folder-create-toggle-canonical:hover,
.bhrc-workspace-menu .bhrc-workspace-folder-create-toggle-canonical:focus-visible,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical:hover,
.bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical:focus-visible {
  border: 0;
  background: #e9edef;
  color: #172026;
  box-shadow: none;
  outline: 0;
}
/* /BehindApp authenticated workspace folder create entry/menu shell contract */

/* BehindApp authenticated workspace rule folder-list body/dark variant contract */
body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry,
body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical {
  color: var(--bhrc-theme-text, #172026);
  -webkit-text-fill-color: var(--bhrc-theme-text, #172026);
}

body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry:hover,
body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry:focus-visible,
body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical:hover,
body.bhrc-workspace-body .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-entry,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rule-folder-list .bhrc-workspace-folder-create-toggle-canonical {
  color: var(--bhrc-theme-text, #edf2f6);
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6);
}
/* /BehindApp authenticated workspace rule folder-list body/dark variant contract */

/* BehindApp authenticated workspace category custom row controls contract */
.bhrc-workspace-category-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
}

.bhrc-workspace-category-custom-row .bhrc-workspace-category-target {
  padding-right: 0;
}

.bhrc-workspace-category-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 30px;
}

.bhrc-workspace-category-edit-action {
  min-height: 28px !important;
  padding: 0 12px !important;
  border: 1px solid #9aa3ad !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #566174 !important;
  font-weight: 560 !important;
  opacity: 0;
  pointer-events: none;
  box-shadow: none !important;
  transition: opacity 120ms ease;
}

.bhrc-workspace-category-custom-row:hover .bhrc-workspace-category-edit-action,
.bhrc-workspace-category-custom-row:focus-within .bhrc-workspace-category-edit-action,
.bhrc-workspace-category-custom-row.is-editing .bhrc-workspace-category-edit-action {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-category-edit-action:not(:disabled):hover,
.bhrc-workspace-category-edit-action:not(:disabled):focus-visible {
  border-color: #7f8894 !important;
  background: #f4f5f6 !important;
  color: #1f2937 !important;
  outline: none !important;
  box-shadow: none !important;
}

.bhrc-workspace-category-edit-action:disabled {
  border-color: #d4d9de !important;
  color: #a7afb5 !important;
  cursor: not-allowed;
  opacity: 0.52 !important;
  pointer-events: auto;
}

.bhrc-workspace-category-remove {
  display: inline-grid !important;
  place-items: center;
  width: 28px;
  height: 28px;
  min-width: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #52606a !important;
  opacity: 0;
  pointer-events: none;
  box-shadow: none !important;
  transition: opacity 120ms ease;
}

.bhrc-workspace-category-custom-row:hover .bhrc-workspace-category-remove,
.bhrc-workspace-category-custom-row:focus-within .bhrc-workspace-category-remove,
.bhrc-workspace-category-custom-row.is-editing .bhrc-workspace-category-remove {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-category-remove:hover,
.bhrc-workspace-category-remove:focus-visible {
  background: transparent !important;
  color: #172026 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.bhrc-workspace-category-remove .bhrc-workspace-icon {
  width: 13px;
  height: 13px;
}

.bhrc-workspace-category-edit-field {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 0 0 10px;
  color: #172026;
}

.bhrc-workspace-category-edit-field .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-category-edit-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172026;
  font: inherit;
}

.bhrc-workspace-category-edit-field input::placeholder {
  color: #172026;
  opacity: 0.34;
}
/* /BehindApp authenticated workspace category custom row controls contract */

/* BehindApp authenticated workspace category divider/create/manage contract */
.bhrc-workspace-category-divider {
  height: 1px;
  margin: 8px 10px;
  background: #e2e7eb;
}

.bhrc-workspace-category-menu .bhrc-workspace-category-create {
  min-height: 34px;
  margin: 10px 0;
  padding: 0 0 0 10px;
  border: 0;
}

.bhrc-workspace-category-menu .bhrc-workspace-category-manage {
  min-height: 34px;
  margin-top: 4px;
  border-top: 1px solid #e2e7eb;
  border-radius: 0;
  color: #172026;
  font-weight: 400;
}

.bhrc-workspace-category-menu .bhrc-workspace-category-create-entry:hover,
.bhrc-workspace-category-menu .bhrc-workspace-category-create-entry:focus-visible {
  background: transparent;
}
/* /BehindApp authenticated workspace category divider/create/manage contract */

/* BehindApp authenticated workspace snooze option base contract */
.bhrc-workspace-snooze-option {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 34px;
}

.bhrc-workspace-snooze-label {
  overflow: hidden;
  color: #172026;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-snooze-time {
  justify-self: end;
  color: #5b6570;
  font-size: 0.86rem;
  white-space: nowrap;
}

.bhrc-workspace-snooze-custom {
  width: 100%;
  min-height: 34px;
  color: #172026;
  font-weight: 520;
}
/* /BehindApp authenticated workspace snooze option base contract */

.bhrc-workspace-move-create {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #e2e7eb;
  border-bottom: 1px solid #e2e7eb;
}

.bhrc-workspace-move-create-toggle {
  min-height: 30px;
  color: #4c5962;
}

.bhrc-workspace-move-create-input {
  display: grid;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #cfd6dd;
  border-radius: 6px;
}

.bhrc-workspace-move-create .bhrc-workspace-primary {
  min-height: 30px;
}

/* BehindApp authenticated workspace move saved list base contract */
.bhrc-workspace-move-saved-list {
  display: grid;
  gap: 2px;
  min-height: 10px;
  padding-top: 6px;
}

.bhrc-workspace-move-saved-list .bhrc-workspace-move-target {
  min-height: 32px;
}
/* /BehindApp authenticated workspace move saved list base contract */

.bhrc-workspace-folder-row-menu {
  min-width: 282px;
  max-width: min(340px, calc(100vw - 24px));
  padding: 8px;
  overflow: visible;
}

.bhrc-workspace-folder-row-count {
  padding: 8px 10px 9px;
  color: #4f5b64;
  font-size: 0.88rem;
  line-height: 1.4;
}

.bhrc-workspace-folder-row-count strong {
  padding: 0;
  color: #111827;
  font-size: inherit;
}

.bhrc-workspace-folder-row-menu button {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  min-height: 38px;
}

.bhrc-workspace-folder-row-menu button > .bhrc-workspace-icon:first-child {
  color: #53606a;
}

.bhrc-workspace-folder-row-menu button[disabled] {
  opacity: 0.58;
}

/* BehindApp authenticated workspace folder color panel base contract */
.bhrc-workspace-folder-color-panel {
  min-width: 164px;
  padding: 10px;
}

.bhrc-workspace-folder-color-grid {
  display: grid;
  grid-template-columns: repeat(5, 22px);
  gap: 6px;
}

.bhrc-workspace-folder-color-grid button {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  border: 1px solid rgba(32, 37, 43, 0.22);
  border-radius: 4px;
}

.bhrc-workspace-folder-color-grid button.is-selected,
.bhrc-workspace-folder-color-grid button.is-selected:hover,
.bhrc-workspace-folder-color-grid button.is-selected:focus-visible,
.bhrc-workspace-folder-color-grid button.is-selected:active {
  border-color: var(--bhrc-format-color-swatch, currentColor);
  outline: 2px solid var(--bhrc-format-color-swatch, currentColor);
  outline-offset: 2px;
}
/* /BehindApp authenticated workspace folder color panel base contract */

/* BehindApp authenticated workspace folder rename base contract */
.bhrc-workspace-folder-rename {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 6px 0;
}

.bhrc-workspace-folder-rename label {
  display: grid;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #cfd6dd;
  border-radius: 6px;
}

.bhrc-workspace-folder-rename input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172026;
  font: inherit;
}

.bhrc-workspace-folder-rename button {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
}
/* /BehindApp authenticated workspace folder rename base contract */

.bhrc-workspace-menu button:hover,
.bhrc-workspace-menu button:focus-visible,
.bhrc-workspace-menu a:hover,
.bhrc-workspace-menu a:focus-visible {
  background: #eef1f2;
  outline: 0;
}

.bhrc-workspace-menu button:disabled,
.bhrc-workspace-menu button.bhrc-workspace-menu-disabled {
  color: #a7afb5;
  cursor: default;
}

.bhrc-workspace-menu button:disabled:hover,
.bhrc-workspace-menu button.bhrc-workspace-menu-disabled:hover {
  background: transparent;
}

.bhrc-workspace-menu hr {
  width: 100%;
  height: 1px;
  margin: 6px 0;
  border: 0;
  background: #dce2e7;
}

.bhrc-workspace-skip-menu {
  position: fixed;
  min-width: 178px;
  overflow: visible;
  padding: 8px;
}

.bhrc-workspace-skip-menu > button {
  min-height: 34px;
  padding: 0 12px;
}

.bhrc-workspace-skip-date {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 0;
  margin: 8px 2px 2px;
  border: 1px solid #c6ced6;
  border-radius: 4px;
  background: #ffffff;
}

.bhrc-workspace-skip-date:focus-within {
  border-color: #7a858c;
  box-shadow: 0 0 0 2px rgba(23, 32, 38, 0.08);
}

.bhrc-workspace-skip-date input {
  min-width: 0;
  height: 32px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  padding: 0 8px;
}

.bhrc-workspace-skip-date button {
  position: relative;
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-left: 1px solid #dce2e7;
}

.bhrc-workspace-skip-date button span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  padding: 0;
  border: 1.4px solid currentColor;
  border-radius: 3px;
}

.bhrc-workspace-skip-date button .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.bhrc-workspace-skip-date button span::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 2px;
  left: 2px;
  height: 1.4px;
  background: currentColor;
}

.bhrc-workspace-skip-date button .bhrc-workspace-icon::before,
.bhrc-workspace-skip-date button .bhrc-workspace-icon::after {
  display: none;
  content: none;
}

.bhrc-workspace-skip-date button span::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -4px 0 0 currentColor;
}

.bhrc-workspace-skip-calendar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 84;
  display: grid;
  grid-template-columns: 224px 220px;
  align-items: start;
  gap: 18px;
  box-sizing: border-box;
  width: min(510px, calc(100vw - 24px));
  padding: 18px 22px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(23, 32, 38, 0.16);
}

.bhrc-workspace-skip-calendar[hidden] {
  display: none;
}

.bhrc-skip-calendar-panel {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 8px;
  min-width: 0;
}

.bhrc-skip-calendar-panel + .bhrc-skip-calendar-panel {
  grid-template-rows: 28px auto;
  gap: 0;
  padding-left: 18px;
  border-left: 1px solid #edf1f4;
}

.bhrc-skip-calendar-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px 24px;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  color: #172026;
  font-weight: 760;
}

.bhrc-skip-calendar-heading button {
  display: inline-grid;
  place-items: center;
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  color: #83909a;
}

.bhrc-skip-calendar-weekdays,
.bhrc-skip-calendar-days,
.bhrc-skip-calendar-months {
  display: grid;
  gap: 4px;
}

.bhrc-skip-calendar-weekdays,
.bhrc-skip-calendar-days {
  grid-template-columns: repeat(7, 1fr);
}

.bhrc-skip-calendar-months {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
  column-gap: 10px;
  row-gap: 38px;
}

.bhrc-skip-calendar-weekdays span,
.bhrc-skip-day,
.bhrc-skip-month {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #3d4850;
  font: inherit;
}

.bhrc-skip-calendar-weekdays span {
  color: #172026;
  font-size: 0.82rem;
}

.bhrc-skip-day.is-outside,
.bhrc-skip-month.is-disabled,
.bhrc-skip-day:disabled {
  color: #b5bec5;
}

.bhrc-skip-day:disabled,
.bhrc-skip-month.is-disabled {
  cursor: default;
}

.bhrc-skip-day.is-selected,
.bhrc-skip-month.is-selected {
  border: 1px solid #7a858c;
  background: #eef1f2;
  color: #172026;
  font-weight: 780;
}

.bhrc-skip-day:not(:disabled):focus-visible,
.bhrc-skip-month:not(.is-disabled):focus-visible,
.bhrc-skip-calendar-heading button:focus-visible,
.bhrc-skip-go:focus-visible {
  outline: 1px solid #7a858c;
  outline-offset: 2px;
}

.bhrc-skip-calendar-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.bhrc-skip-go {
  display: inline-grid !important;
  place-items: center;
  justify-content: center !important;
  min-width: 84px;
  min-height: 32px;
  padding: 0 18px !important;
  border: 1px solid #8e99a2 !important;
  border-radius: 999px !important;
  background:
    repeating-linear-gradient(-15deg, rgba(23, 32, 38, 0.08) 0 1px, transparent 1px 7px),
    #ffffff !important;
  color: #53606a !important;
  font-weight: 760;
}

.bhrc-workspace-skip-calendar button.bhrc-skip-day,
.bhrc-workspace-skip-calendar button.bhrc-skip-month {
  justify-content: center;
  min-height: 28px;
  padding: 0;
}

.bhrc-workspace-wide-menu {
  min-width: min(520px, calc(100vw - 24px));
}

.bhrc-workspace-apps-menu {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 330px;
}

.bhrc-workspace-app-search {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-height: 36px;
  border: 1px solid #c6ced6;
  border-radius: 6px;
  padding: 0 8px;
}

.bhrc-workspace-app-search input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.bhrc-workspace-side-panel {
  position: fixed;
  z-index: 70;
  top: 48px;
  right: 0;
  bottom: 0;
  width: var(--bhrc-workspace-side-panel-width, min(500px, 96vw));
  padding: 24px 18px;
  border-left: 1px solid #dce2e7;
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(23, 32, 38, 0.12);
}

.bhrc-workspace-side-panel[hidden] {
  display: none;
}

.bhrc-workspace-side-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 1.35rem;
}

.bhrc-workspace-side-panel h2 {
  margin: 0 38px 18px 0;
  font-size: 1.35rem;
}

.bhrc-workspace-settings-panel {
  --bhrc-workspace-settings-line: #dce2e7;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1000px, calc(100vw - 24px));
  padding: 0;
}

.bhrc-workspace-settings-panel[hidden] {
  display: none;
}

.bhrc-workspace-settings-header {
  display: grid;
  grid-template-columns: max-content minmax(220px, 520px) minmax(34px, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 12px 14px 12px 22px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-header h2 {
  margin: 0;
  white-space: nowrap;
}

.bhrc-workspace-settings-panel .bhrc-workspace-side-close {
  position: static;
  top: auto;
  right: auto;
  justify-self: end;
}

.bhrc-workspace-settings-search {
  position: static;
  top: auto;
  z-index: auto;
  min-height: 42px;
  margin: 0;
  box-shadow: none;
}

.bhrc-workspace-settings-layout {
  display: grid;
  grid-template-columns: 15% 19% 66%;
  min-height: 0;
  height: 100%;
}

.bhrc-workspace-settings-column {
  min-width: 0;
  min-height: 0;
  padding: 18px 14px;
  overflow: auto;
}

.bhrc-workspace-settings-primary,
.bhrc-workspace-settings-subsection {
  display: grid;
  grid-auto-rows: minmax(38px, auto);
  align-content: start;
  gap: 2px;
}

.bhrc-workspace-settings-primary,
.bhrc-workspace-settings-secondary {
  border-right: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-subsection[hidden] {
  display: none;
}

.bhrc-workspace-settings-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  color: #172026;
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-settings-button .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
  color: #4e638f;
}

.bhrc-workspace-settings-button span:not(.bhrc-workspace-icon) {
  min-width: 0;
}

.bhrc-workspace-settings-button:hover,
.bhrc-workspace-settings-button:focus-visible {
  color: #172026;
  background: transparent;
  box-shadow: none;
  font-weight: inherit;
  outline: 0;
}

.bhrc-workspace-settings-button.is-active {
  color: #0f171d;
  background: transparent;
  box-shadow: none;
  font-weight: 650;
  outline: 0;
}

.bhrc-workspace-settings-detail {
  padding: 0;
  background: #ffffff;
}

.bhrc-workspace-settings-detail-view {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100%;
  padding: 18px 20px;
}

.bhrc-workspace-settings-detail-view[hidden] {
  display: none;
}

.bhrc-workspace-settings-detail-header {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-detail-header h3 {
  margin: 0;
  color: #172026;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-detail-body {
  min-height: 0;
  padding: 0;
  overflow: auto;
  scrollbar-gutter: stable;
}

.bhrc-workspace-settings-account-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.bhrc-workspace-settings-account-identity img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.bhrc-workspace-settings-account-identity strong,
.bhrc-workspace-settings-account-identity small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.bhrc-workspace-settings-account-identity strong {
  color: #172026;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
}

.bhrc-workspace-settings-account-identity small {
  margin-top: 2px;
  color: #33404a;
  font-size: 0.9rem;
  line-height: 1.25;
}

.bhrc-workspace-settings-account-section {
  display: block;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-account-section h4 {
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-account-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 40px;
}

.bhrc-workspace-settings-account-action-row p {
  max-width: 72ch;
  margin: 0;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-account-action-row a {
  color: #172026;
  font-weight: 650;
  text-decoration: none;
}

.bhrc-workspace-settings-account-action-row a:hover,
.bhrc-workspace-settings-account-action-row a:focus-visible {
  color: #0f171d;
  text-decoration: none;
}

.bhrc-workspace-settings-account-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

[data-bhrc-account-manage-toggle].bhrc-workspace-settings-canonical-action {
  display: inline-grid;
  grid-template-columns: auto 0.64em;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
}

[data-bhrc-account-manage-toggle] .bhrc-workspace-account-manage-caret {
  grid-column: 2;
  grid-row: 1;
  width: 0.64em;
  height: 0.64em;
  align-self: center;
  justify-self: center;
  -webkit-mask-size: 260% 260%;
  mask-size: 260% 260%;
}

[data-bhrc-account-manage-toggle][aria-expanded="false"] [data-bhrc-account-manage-caret="up"],
[data-bhrc-account-manage-toggle][aria-expanded="true"] [data-bhrc-account-manage-caret="down"] {
  display: none;
}

.bhrc-workspace-settings-account-extra {
  padding-top: 20px;
  padding-bottom: 22px;
}

.bhrc-workspace-settings-account-extra h4 {
  min-height: 0;
  margin-bottom: 14px;
}

.bhrc-workspace-settings-language-time-body {
  overflow-x: hidden;
}

.bhrc-workspace-settings-language-time-form {
  display: grid;
  gap: 18px;
  max-width: none;
  padding: 18px 0 0;
}

.bhrc-workspace-settings-language-time-field {
  display: grid;
  gap: 6px;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.35;
}

.bhrc-workspace-settings-language-time-field > span {
  font-weight: 560;
}

.bhrc-workspace-settings-language-time-field select {
  width: 100%;
  min-height: 34px;
  padding: 0 36px 0 12px;
  border: 1px solid #c6ced6;
  border-radius: 4px;
  background:
    linear-gradient(45deg, transparent 50%, #566174 50%) right 16px center / 6px 6px no-repeat,
    linear-gradient(135deg, #566174 50%, transparent 50%) right 10px center / 6px 6px no-repeat,
    #ffffff;
  color: #172026;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.bhrc-workspace-settings-language-time-field select:focus {
  border-color: #1f2a36;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(32, 37, 43, 0.12);
}

.bhrc-workspace-settings-appearance-body {
  overflow-x: hidden;
}

.bhrc-workspace-settings-appearance-section {
  padding: 18px 0 24px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-appearance-section.is-last {
  border-bottom: 0;
}

.bhrc-workspace-settings-appearance-section h4,
.bhrc-workspace-settings-appearance-theme-block h5 {
  margin: 0;
  color: #172026;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-appearance-section h4 {
  font-size: 1rem;
}

.bhrc-workspace-settings-appearance-theme-block {
  margin-top: 22px;
}

.bhrc-workspace-settings-appearance-theme-block h5 {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.bhrc-workspace-settings-appearance-section p {
  max-width: 72ch;
  margin: 10px 0 16px;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-about-body {
  overflow-x: hidden;
}

.bhrc-workspace-settings-about-section {
  padding: 18px 0 24px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-about-section.is-last {
  border-bottom: 0;
}

.bhrc-workspace-settings-about-section h4 {
  margin: 0 0 18px;
  color: #172026;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-about-table {
  display: grid;
  width: 100%;
  max-width: 892px;
  margin: 0;
  border: 1px solid var(--bhrc-workspace-settings-line);
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.bhrc-workspace-settings-about-row {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 1fr);
  align-items: center;
  min-height: 40px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-about-row:last-child {
  border-bottom: 0;
}

.bhrc-workspace-settings-about-row dt,
.bhrc-workspace-settings-about-row dd {
  min-width: 0;
  margin: 0;
  padding: 8px 12px;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.bhrc-workspace-settings-about-row dt {
  font-weight: 500;
}

.bhrc-workspace-settings-about-row dd {
  justify-self: end;
  max-width: 100%;
  text-align: right;
}

.bhrc-workspace-settings-about-copy {
  margin-top: 12px;
  min-width: 142px;
}

@media (max-width: 720px) {
  .bhrc-workspace-settings-about-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding: 8px 0;
  }

  .bhrc-workspace-settings-about-row dt,
  .bhrc-workspace-settings-about-row dd {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .bhrc-workspace-settings-about-row dd {
    justify-self: start;
    text-align: left;
  }
}

.bhrc-workspace-settings-appearance-mode-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  margin-left: -3px;
  padding: 2px 3px 3px;
  overflow: visible;
}

.bhrc-workspace-settings-appearance-mode-grid button {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 98px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.bhrc-workspace-settings-appearance-mode-grid button:hover,
.bhrc-workspace-settings-appearance-mode-grid button:focus-visible {
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-appearance-mode-preview {
  position: relative;
  display: grid;
  grid-template-columns: 34% 1fr;
  grid-template-rows: 12px 1fr;
  width: 96px;
  height: 66px;
  overflow: hidden;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  background: #ffffff;
}

.bhrc-workspace-settings-appearance-mode-grid button.is-active .bhrc-workspace-settings-appearance-mode-preview {
  border-color: #172026;
  box-shadow: inset 0 0 0 1px #172026;
}

.bhrc-workspace-settings-appearance-mode-preview i {
  display: block;
  min-width: 0;
  min-height: 0;
}

.bhrc-workspace-settings-appearance-mode-preview i:first-child {
  grid-column: 1 / -1;
  background: #eef2f5;
}

.bhrc-workspace-settings-appearance-mode-preview i:nth-child(2) {
  background: #f7f8f8;
  border-right: 1px solid rgba(23, 32, 38, 0.12);
}

.bhrc-workspace-settings-appearance-mode-preview i:nth-child(3) {
  background: #ffffff;
}

.bhrc-workspace-settings-appearance-mode-preview.is-dark {
  background: #101418;
  border-color: #28313a;
}

.bhrc-workspace-settings-appearance-mode-preview.is-dark i:first-child {
  background: #0f1720;
}

.bhrc-workspace-settings-appearance-mode-preview.is-dark i:nth-child(2) {
  background: #161d24;
  border-right-color: #28313a;
}

.bhrc-workspace-settings-appearance-mode-preview.is-dark i:nth-child(3) {
  background: #222a32;
}

.bhrc-workspace-settings-appearance-mode-preview.is-system::after {
  position: absolute;
  inset: 0 0 0 50%;
  content: "";
  background:
    linear-gradient(180deg, #101418 0 12px, transparent 12px),
    linear-gradient(90deg, #161d24 0 34%, #222a32 34%);
}

.bhrc-workspace-settings-appearance-canvas-row,
.bhrc-workspace-settings-appearance-color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: -3px;
  padding: 2px 3px 3px;
  overflow: visible;
}

.bhrc-workspace-settings-appearance-canvas-row button,
.bhrc-workspace-settings-appearance-color-row button {
  appearance: none;
  -webkit-appearance: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.bhrc-workspace-settings-appearance-canvas-row button span,
.bhrc-workspace-settings-appearance-color-row button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border: 1px solid #d7dde3;
}

.bhrc-workspace-settings-appearance-canvas-row button.is-active,
.bhrc-workspace-settings-appearance-color-row button.is-active {
  border-color: #172026;
}

.bhrc-workspace-settings-appearance-color-row button span {
  border: 0;
  background: var(--bhrc-appearance-swatch, #172026);
}

.bhrc-workspace-settings-appearance-canvas-row span[class^="is-canvas-grunge-"] {
  background-color: #f3f4f2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-01 {
  background-image: url("/static/behindapp/textures/grunge/grunge-01.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-02 {
  background-image: url("/static/behindapp/textures/grunge/grunge-02.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-03 {
  background-image: url("/static/behindapp/textures/grunge/grunge-03.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-04 {
  background-image: url("/static/behindapp/textures/grunge/grunge-04.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-05 {
  background-image: url("/static/behindapp/textures/grunge/grunge-05.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-06 {
  background-image: url("/static/behindapp/textures/grunge/grunge-06.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-07 {
  background-image: url("/static/behindapp/textures/grunge/grunge-07.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-08 {
  background-image: url("/static/behindapp/textures/grunge/grunge-08.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-09 {
  background-image: url("/static/behindapp/textures/grunge/grunge-09.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-canvas-row .is-canvas-grunge-10 {
  background-image: url("/static/behindapp/textures/grunge/grunge-10.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-settings-appearance-toggle-list {
  display: grid;
  gap: 14px;
}

.bhrc-workspace-settings-appearance-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #172026;
  cursor: pointer;
}

.bhrc-workspace-settings-appearance-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-settings-appearance-toggle > span {
  position: relative;
  width: 40px;
  height: 22px;
  border: 1px solid #8d98a3;
  border-radius: 999px;
  background: #ffffff;
}

.bhrc-workspace-settings-appearance-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #566174;
  content: "";
  transition: transform 140ms ease, background 140ms ease;
}

.bhrc-workspace-settings-appearance-toggle input:checked + span {
  border-color: #172026;
  background: #172026;
}

.bhrc-workspace-settings-appearance-toggle input:checked + span::after {
  background: #ffffff;
  transform: translateX(18px);
}

.bhrc-workspace-settings-appearance-toggle input:focus-visible + span {
  outline: 2px solid rgba(23, 32, 38, 0.28);
  outline-offset: 2px;
}

.bhrc-workspace-settings-appearance-toggle strong {
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.35;
}

.bhrc-workspace-settings-canonical-action {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 138px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  box-shadow: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-settings-canonical-action.is-compact {
  min-width: 96px;
}

.bhrc-workspace-settings-canonical-action .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-settings-canonical-action:hover,
.bhrc-workspace-settings-canonical-action:active,
.bhrc-workspace-settings-canonical-action:focus {
  border-color: #7f8894;
  background: #f4f5f6;
  color: #1f2937;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-settings-canonical-action:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-workspace-settings-login-action,
.bhrc-workspace-settings-login-action:hover,
.bhrc-workspace-settings-login-action:active,
.bhrc-workspace-settings-login-action:focus {
  min-width: 146px;
  min-height: 44px;
  border: 1px solid rgba(32, 37, 43, 0.48);
  border-radius: 999px;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #566174;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
  font-size: 0.95rem;
  font-weight: 740;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-settings-login-action:hover,
.bhrc-workspace-settings-login-action:active,
.bhrc-workspace-settings-login-action:focus {
  color: #1f2937;
}

.bhrc-workspace-settings-login-action .bhrc-workspace-icon {
  color: currentColor;
}

.bhrc-workspace-settings-signatures-body {
  overflow-x: hidden;
}

.bhrc-workspace-settings-signature-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-signature-intro p {
  max-width: 88ch;
  margin: 0;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-signature-defaults {
  display: grid;
  gap: 12px;
  padding: 24px 0;
}

.bhrc-workspace-settings-signature-default-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 46%);
  align-items: center;
  gap: 18px;
  min-height: 34px;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.35;
}

.bhrc-workspace-settings-signature-default-row > span {
  min-width: 0;
}

.bhrc-workspace-settings-signature-select {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 0 10px 0 12px;
  border: 1px solid #d6dde2;
  border-radius: 4px;
  background: #ffffff;
  color: #a2abb3;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: default;
}

.bhrc-workspace-settings-signature-select.has-signature {
  color: #172026;
  cursor: pointer;
}

.bhrc-workspace-settings-signature-select .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
  color: #a2abb3;
}

.bhrc-workspace-settings-signature-select.has-signature .bhrc-workspace-icon {
  color: #58626c;
}

.bhrc-workspace-signature-default-menu {
  position: fixed;
  z-index: 190;
  display: grid;
  gap: 0;
  min-width: 260px;
  padding: 8px 0;
  border: 1px solid #d6dde2;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 14px 30px rgba(15, 17, 21, 0.14);
}

.bhrc-workspace-signature-default-menu[hidden] {
  display: none;
}

.bhrc-workspace-signature-default-option {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-signature-default-option:hover,
.bhrc-workspace-signature-default-option:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-signature-default-option .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
  color: #172026;
}

.bhrc-workspace-settings-signature-list {
  display: grid;
  gap: 0;
  margin-top: 0;
  border: 1px solid #d7dde3;
  border-radius: 4px;
  background: #ffffff;
}

.bhrc-workspace-settings-signature-list[hidden] {
  display: none !important;
}

.bhrc-workspace-settings-signature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  border-bottom: 1px solid #edf1f4;
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-settings-signature-row:last-child {
  border-bottom: 0;
}

.bhrc-workspace-settings-signature-row-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-settings-signature-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bhrc-workspace-settings-signature-row-actions button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  cursor: pointer;
}

.bhrc-workspace-settings-signature-row-actions button:hover,
.bhrc-workspace-settings-signature-row-actions button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-signature-row-actions .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
}

.bhrc-workspace-settings-signature-empty {
  display: grid;
  place-items: center;
  min-height: 352px;
  margin-top: 0;
  border: 1px solid #d7dde3;
  border-radius: 4px;
  background: #ffffff;
}

.bhrc-workspace-settings-signature-empty[hidden] {
  display: none !important;
}

.bhrc-workspace-settings-signature-empty-inner {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
}

.bhrc-workspace-settings-signature-empty-inner strong {
  color: #172026;
  font-size: 0.94rem;
  font-weight: 650;
}

.bhrc-workspace-settings-signature-id-badge {
  display: block;
  width: 108px;
  height: 108px;
  margin: 14px 0 8px;
  object-fit: contain;
  cursor: pointer;
}

.bhrc-workspace-settings-signature-settings-actions {
  padding-right: 14px;
}

.bhrc-workspace-settings-categories-body {
  display: grid;
  align-content: start;
  gap: 24px;
  overflow: auto;
}

.bhrc-workspace-settings-category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-category-intro p {
  max-width: 78ch;
  margin: 0;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-category-intro [data-bhrc-category-settings-create] {
  justify-self: end;
  inline-size: 190px;
  min-width: 190px;
  max-width: 190px;
  padding-inline: 14px;
  white-space: nowrap;
}

.bhrc-workspace-settings-category-table {
  display: grid;
  border: 1px solid #d7dde3;
  border-radius: 0;
  background: #ffffff;
}

.bhrc-workspace-settings-category-head,
.bhrc-workspace-settings-category-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.54fr) minmax(128px, 150px) minmax(104px, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid #d7dde3;
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-settings-category-head {
  min-height: 36px;
  font-weight: 500;
}

.bhrc-workspace-settings-category-list {
  display: grid;
}

.bhrc-workspace-settings-category-row:last-child {
  border-bottom: 0;
}

.bhrc-workspace-settings-category-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bhrc-workspace-settings-category-name .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--bhrc-category-color, #70808a);
}

.bhrc-workspace-settings-category-name span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-settings-category-shortcut {
  justify-self: start;
  color: #566174;
  white-space: nowrap;
}

.bhrc-workspace-settings-category-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
}

.bhrc-workspace-settings-category-actions button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  cursor: pointer;
}

.bhrc-workspace-settings-category-actions button:hover,
.bhrc-workspace-settings-category-actions button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-category-actions .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
}

.bhrc-workspace-settings-storage-body {
  display: grid;
  align-content: start;
  gap: 22px;
  overflow: auto;
}

.bhrc-workspace-settings-storage-header {
  gap: 8px;
}

.bhrc-workspace-settings-storage-card {
  display: grid;
  gap: 0;
}

.bhrc-workspace-settings-storage-manage h4 {
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-storage-info {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.bhrc-workspace-settings-storage-info button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #566174;
  cursor: pointer;
}

.bhrc-workspace-settings-storage-info button:hover,
.bhrc-workspace-settings-storage-info button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-storage-info .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-settings-storage-info [role="tooltip"] {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 8;
  width: min(360px, 64vw);
  padding: 10px 12px;
  border: 1px solid #d7dde3;
  border-radius: 6px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 14px 28px rgba(15, 17, 21, 0.14);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 120ms ease, transform 120ms ease;
}

.bhrc-workspace-settings-storage-info:hover [role="tooltip"],
.bhrc-workspace-settings-storage-info:focus-within [role="tooltip"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.bhrc-workspace-settings-storage-rule {
  display: none;
}

.bhrc-workspace-settings-storage-usage {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-storage-total {
  display: grid;
  gap: 8px;
  align-content: start;
}

.bhrc-workspace-settings-storage-total h5 {
  margin: 0;
  color: #172026;
  font-size: 0.94rem;
  font-weight: 650;
}

.bhrc-workspace-settings-storage-total p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #172026;
}

.bhrc-workspace-settings-storage-total strong {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}

.bhrc-workspace-settings-storage-total span,
.bhrc-workspace-settings-storage-total small {
  color: #33404a;
  font-size: 0.92rem;
}

.bhrc-workspace-settings-storage-meter {
  display: grid;
  gap: 12px;
  justify-self: stretch;
  min-width: 0;
}

.bhrc-workspace-settings-storage-meter strong {
  color: #172026;
  font-size: 0.94rem;
  font-weight: 650;
}

.bhrc-workspace-settings-storage-bar {
  display: flex;
  width: 100%;
  height: 16px;
  overflow: hidden;
  border: 1px solid #d7dde3;
  border-radius: 999px;
  background: #f5f6f7;
}

.bhrc-workspace-settings-storage-segment {
  min-width: 0;
  height: 100%;
  background: var(--bhrc-storage-color, #566174);
}

.bhrc-workspace-settings-storage-segment.is-visible-min {
  min-width: 6px;
}

.bhrc-workspace-settings-storage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #33404a;
  font-size: 0.88rem;
  line-height: 1.25;
}

.bhrc-workspace-settings-storage-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bhrc-workspace-settings-storage-legend i {
  width: 7px;
  height: 14px;
  border-radius: 999px;
  background: var(--bhrc-storage-color, #566174);
}

.bhrc-workspace-settings-storage-manage {
  display: grid;
  gap: 12px;
}

.bhrc-workspace-settings-storage-manage p {
  margin: 0;
  color: #33404a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-storage-table {
  display: grid;
  border-top: 1px solid #d7dde3;
  background: #ffffff;
}

.bhrc-workspace-settings-storage-head,
.bhrc-workspace-settings-storage-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(96px, 0.3fr) minmax(96px, 0.28fr) minmax(120px, auto);
  align-items: center;
  gap: 14px;
  min-height: 45px;
  padding: 0 10px;
  border-bottom: 1px solid #d7dde3;
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-settings-storage-head {
  min-height: 36px;
  font-weight: 500;
}

.bhrc-workspace-settings-storage-folder-list {
  display: grid;
}

.bhrc-workspace-settings-storage-empty,
.bhrc-workspace-settings-storage-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bhrc-workspace-settings-storage-name .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--bhrc-storage-color, #566174);
}

.bhrc-workspace-settings-storage-name span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-settings-storage-size,
.bhrc-workspace-settings-storage-count {
  color: #33404a;
  white-space: nowrap;
}

.bhrc-workspace-settings-storage-manage-control {
  position: relative;
  display: inline-flex;
  justify-self: start;
}

.bhrc-workspace-settings-storage-manage-control.is-open {
  z-index: 6;
}

.bhrc-workspace-settings-storage-manage-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 7px;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.bhrc-workspace-settings-storage-manage-button:hover,
.bhrc-workspace-settings-storage-manage-button:focus-visible {
  color: #172026;
  background: transparent;
  outline: 0;
}

.bhrc-workspace-settings-storage-manage-button:disabled {
  color: #a2abb3;
  cursor: default;
}

.bhrc-workspace-settings-storage-manage-button .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-settings-storage-manage-button .bhrc-workspace-settings-storage-manage-caret {
  width: 12px;
  height: 12px;
  margin-left: -2px;
}

.bhrc-workspace-settings-storage-empty-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 7;
  display: grid;
  min-width: 168px;
  padding: 7px 0;
  border: 1px solid #d7dde3;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 17, 21, 0.14);
}

.bhrc-workspace-settings-storage-empty-menu button {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-settings-storage-empty-menu button:hover,
.bhrc-workspace-settings-storage-empty-menu button:focus-visible {
  background: #f4f6f8;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-storage-empty {
  min-height: 52px;
  padding: 0 10px;
  color: #566174;
  font-size: 0.92rem;
}

.bhrc-workspace-settings-import-body {
  display: grid;
  align-content: start;
  gap: 22px;
  overflow: auto;
}

.bhrc-workspace-settings-export-body {
  display: grid;
  align-content: start;
  gap: 22px;
  overflow: auto;
}

.bhrc-workspace-settings-import-rule {
  display: none;
}

.bhrc-workspace-settings-export-rule {
  display: none;
}

.bhrc-workspace-settings-import-section {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
}

.bhrc-workspace-settings-export-section {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
}

.bhrc-workspace-settings-import-title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}

.bhrc-workspace-settings-export-title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}

.bhrc-workspace-settings-import-title-row h4 {
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-export-title-row h4 {
  margin: 0;
  color: #172026;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.bhrc-workspace-settings-import-info [role="tooltip"] {
  width: min(340px, 48vw);
}

.bhrc-workspace-settings-export-info [role="tooltip"] {
  width: min(340px, 48vw);
}

.bhrc-workspace-settings-import-info [role="tooltip"],
.bhrc-workspace-settings-export-info [role="tooltip"] {
  left: auto;
  right: 0;
  z-index: 20;
  width: min(360px, calc(100vw - 48px));
  max-width: min(360px, calc(100vw - 48px));
  white-space: normal;
  overflow-wrap: break-word;
  transform: translate(0, 4px);
}

.bhrc-workspace-settings-import-info:hover [role="tooltip"],
.bhrc-workspace-settings-import-info:focus-within [role="tooltip"],
.bhrc-workspace-settings-export-info:hover [role="tooltip"],
.bhrc-workspace-settings-export-info:focus-within [role="tooltip"] {
  transform: translate(0, 0);
}

.bhrc-workspace-settings-import-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.bhrc-workspace-settings-export-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.bhrc-workspace-settings-import-action-row p {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  max-width: none;
  margin: 0;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: nowrap;
}

.bhrc-workspace-settings-export-action-row p {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  max-width: none;
  margin: 0;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: nowrap;
}

.bhrc-workspace-settings-import-action-row p > span:first-child,
.bhrc-workspace-settings-export-action-row p > span:first-child {
  display: inline;
}

.bhrc-workspace-settings-import-action-row .bhrc-workspace-settings-storage-info,
.bhrc-workspace-settings-export-action-row .bhrc-workspace-settings-storage-info {
  display: inline-flex;
  margin-left: 1px;
  vertical-align: middle;
}

.bhrc-workspace-settings-import-progress-rule {
  height: 1px;
  margin: 0;
  background: var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-export-progress-rule {
  height: 1px;
  margin: 0;
  background: var(--bhrc-workspace-settings-line);
}

.bhrc-workspace-settings-import-status {
  margin: 0;
}

.bhrc-workspace-settings-import-results {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bhrc-workspace-settings-export-results {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bhrc-workspace-settings-import-history {
  display: grid;
  gap: 10px;
}

.bhrc-workspace-settings-export-history {
  display: grid;
  gap: 10px;
}

.bhrc-workspace-settings-transfer-tools {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
}

.bhrc-workspace-settings-transfer-pager {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.bhrc-workspace-settings-transfer-actions {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
  min-width: 0;
}

.bhrc-workspace-settings-transfer-toolbar-button,
.bhrc-workspace-qr-transaction-pager-button.bhrc-workspace-settings-transfer-pager-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #46535d;
  cursor: pointer;
  border-radius: 6px;
}

.bhrc-workspace-settings-transfer-toolbar-button:hover,
.bhrc-workspace-settings-transfer-toolbar-button:focus-visible,
.bhrc-workspace-qr-transaction-pager-button.bhrc-workspace-settings-transfer-pager-button:hover,
.bhrc-workspace-qr-transaction-pager-button.bhrc-workspace-settings-transfer-pager-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  text-decoration: none;
  color: #172026;
}

.bhrc-workspace-settings-transfer-toolbar-button:disabled,
.bhrc-workspace-qr-transaction-pager-button.bhrc-workspace-settings-transfer-pager-button:disabled {
  color: #a2acb4;
  cursor: default;
  opacity: 0.62;
}

.bhrc-workspace-settings-transfer-toolbar-button .bhrc-workspace-icon,
.bhrc-workspace-qr-transaction-pager-button.bhrc-workspace-settings-transfer-pager-button .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
}

.bhrc-workspace-settings-transfer-select,
.bhrc-workspace-settings-transfer-all-select,
.bhrc-workspace-settings-transfer-mode-toggle {
  width: 18px;
  height: 18px;
  min-height: 18px !important;
}

.bhrc-workspace-settings-import-empty {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 300px;
  padding: 32px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #566174;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.bhrc-workspace-settings-import-empty-icon {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 0 8px;
  object-fit: contain;
  cursor: pointer;
}

.bhrc-workspace-settings-import-empty strong {
  color: #172026;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.bhrc-workspace-settings-import-empty span {
  max-width: 320px;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.4;
}

.bhrc-workspace-settings-import-batch {
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.bhrc-workspace-settings-import-batch.is-selected {
  border-color: #b7c1ca;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 38, 0.04);
}

.bhrc-workspace-settings-import-batch summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 14px;
  list-style: none;
  cursor: pointer;
}

.bhrc-workspace-settings-import-history.is-selection-mode .bhrc-workspace-settings-import-batch summary,
.bhrc-workspace-settings-export-history.is-selection-mode .bhrc-workspace-settings-import-batch summary {
  grid-template-columns: 28px minmax(0, 1fr) auto;
}

.bhrc-workspace-settings-import-batch summary::-webkit-details-marker {
  display: none;
}

.bhrc-workspace-settings-export-batch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid #e7ebef;
  background: transparent;
}

.bhrc-workspace-settings-export-batch-row:first-of-type {
  border-top: 0;
}

.bhrc-workspace-settings-export-batch-row.is-selected {
  background: rgba(23, 32, 38, 0.025);
}

.bhrc-workspace-settings-import-history.is-selection-mode .bhrc-workspace-settings-export-batch-row,
.bhrc-workspace-settings-export-history.is-selection-mode .bhrc-workspace-settings-export-batch-row {
  grid-template-columns: 28px minmax(0, 1fr) 32px;
}

.bhrc-workspace-settings-export-batch-main {
  min-width: 0;
}

.bhrc-workspace-settings-export-batch-title-line {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 9px;
}

.bhrc-workspace-settings-export-batch-title-line .bhrc-workspace-settings-import-batch-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-settings-export-batch-date {
  flex: 0 0 auto;
  color: #566174;
  font-size: 0.84rem;
  line-height: 1.4;
  white-space: nowrap;
}

.bhrc-workspace-settings-export-open {
  justify-self: end;
}

.bhrc-workspace-settings-import-batch-title,
.bhrc-workspace-settings-import-file-title {
  min-width: 0;
  color: #172026;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.bhrc-workspace-settings-import-batch-meta,
.bhrc-workspace-settings-import-file-meta,
.bhrc-workspace-settings-import-file-preview {
  min-width: 0;
  color: #566174;
  font-size: 0.84rem;
  line-height: 1.4;
}

.bhrc-workspace-settings-import-batch-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid #d7dde3;
  border-radius: 999px;
  color: #33404a;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.bhrc-workspace-settings-import-batch.is-running .bhrc-workspace-settings-import-batch-pill {
  border-color: #aeb8c2;
}

.bhrc-workspace-settings-import-progress {
  height: 3px;
  background: #edf0f3;
}

.bhrc-workspace-settings-import-progress > span {
  display: block;
  width: var(--bhrc-import-progress, 0%);
  height: 100%;
  background: #172026;
}

.bhrc-workspace-settings-import-file-list {
  display: grid;
  border-top: 1px solid #edf0f3;
}

.bhrc-workspace-settings-import-file-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1.25fr) minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid #f0f2f4;
}

.bhrc-workspace-settings-import-file-row:first-child {
  border-top: 0;
}

.bhrc-workspace-settings-import-file-row .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: #566174;
}

.bhrc-workspace-settings-import-file-row.is-success .bhrc-workspace-icon {
  background: #172026;
}

.bhrc-workspace-settings-import-file-row.is-failed .bhrc-workspace-icon {
  background: #7a2f1f;
}

.bhrc-workspace-settings-import-file-name,
.bhrc-workspace-settings-import-file-preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-settings-import-file-aside {
  color: #33404a;
  font-size: 0.84rem;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.bhrc-workspace-settings-import-start {
  align-self: center;
  min-width: 0;
  min-height: 34px;
  padding: 0 14px;
}

.bhrc-workspace-settings-export-start {
  align-self: center;
  min-width: 0;
  min-height: 34px;
  padding: 0 14px;
}

.bhrc-workspace-import-modal {
  position: fixed;
  inset: 0;
  z-index: 228;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 17, 21, 0.38);
}

.bhrc-workspace-import-modal[hidden] {
  display: none !important;
}

.bhrc-workspace-import-dialog {
  display: grid;
  gap: 12px;
  width: min(660px, calc(100vw - 56px));
  padding: 28px 24px 24px;
  border: 1px solid rgba(183, 193, 202, 0.86);
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 28px 68px rgba(15, 17, 21, 0.28);
}

.bhrc-workspace-import-dialog-header {
  display: grid;
  gap: 12px;
}

.bhrc-workspace-import-dialog-header > div {
  display: grid;
  gap: 12px;
}

.bhrc-workspace-import-dialog-header h3,
.bhrc-workspace-import-dialog-header p {
  margin: 0;
}

.bhrc-workspace-import-dialog-header h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bhrc-workspace-import-dialog-header p {
  max-width: none;
  color: #4a5663;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: nowrap;
}

.bhrc-workspace-import-source {
  display: block;
  min-height: 112px;
  padding: 14px 16px;
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #fbfcfd;
}

.bhrc-workspace-import-source-content {
  display: grid;
  gap: 8px;
}

.bhrc-workspace-import-source strong,
.bhrc-workspace-import-inline-target > span:first-child {
  color: #172026;
  font-size: 0.92rem;
  font-weight: 650;
}

.bhrc-workspace-import-source [data-bhrc-import-source-summary] {
  min-width: 0;
  color: #566174;
  font-size: 0.92rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-import-source-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.bhrc-workspace-import-source-actions,
.bhrc-workspace-import-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.bhrc-workspace-import-source-actions .bhrc-workspace-settings-canonical-action {
  min-height: 34px;
  min-width: 104px;
  padding: 0 12px;
}

.bhrc-workspace-import-source-actions > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 104px;
  min-width: 104px;
  min-height: 34px;
  padding: 0 12px;
}

.bhrc-workspace-import-inline-target {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 5px;
  margin-top: 8px;
  min-width: 0;
}

.bhrc-workspace-import-folder-picker {
  position: relative;
  display: inline-block;
  max-width: 260px;
  min-width: 0;
}

.bhrc-workspace-import-folder-picker > button {
  display: inline-grid;
  grid-template-columns: auto minmax(0, auto) auto;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 26px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-import-folder-picker > button:focus-visible {
  outline: 0;
  box-shadow: 0 1px 0 #172026;
}

.bhrc-workspace-import-folder-picker > button [data-bhrc-import-folder-label] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-import-folder-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 2;
  display: grid;
  width: max-content;
  min-width: 0;
  max-width: min(218px, calc(100vw - 88px));
  max-height: 260px;
  overflow: auto;
  padding: 6px;
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 17, 21, 0.18);
}

.bhrc-workspace-import-folder-menu[hidden] {
  display: none !important;
}

.bhrc-workspace-import-folder-option {
  display: grid;
  grid-template-columns: 20px minmax(0, max-content);
  align-items: center;
  justify-items: start;
  gap: 8px;
  width: auto;
  min-width: 100%;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-import-folder-option:hover,
.bhrc-workspace-import-folder-option:focus-visible {
  background: #f4f6f8;
  outline: 0;
}

.bhrc-workspace-import-folder-option > span:last-child {
  max-width: 154px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-import-status {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #ffffff;
  color: #33404a;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bhrc-workspace-import-status[hidden] {
  display: none !important;
}

.bhrc-workspace-import-status strong {
  color: #172026;
}

.bhrc-workspace-import-actions {
  padding-top: 4px;
}

.bhrc-workspace-import-dialog .bhrc-workspace-settings-auto-save:disabled {
  border-color: #eef1f4;
  background: #f1f3f5;
  color: #b4bcc4;
  box-shadow: none;
  cursor: default;
  opacity: 1;
}

.bhrc-workspace-export-config {
  display: grid;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #fbfcfd;
}

.bhrc-workspace-export-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-export-field > span:first-child {
  font-weight: 650;
}

.bhrc-workspace-export-picker {
  position: relative;
  display: inline-block;
  max-width: 220px;
  min-width: 0;
}

.bhrc-workspace-export-picker > button {
  display: inline-grid;
  grid-template-columns: auto minmax(0, auto) auto;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 26px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-export-picker > button:focus-visible {
  outline: 0;
  box-shadow: 0 1px 0 #172026;
}

.bhrc-workspace-export-picker > button [data-bhrc-export-scope-label] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-export-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 3;
  display: grid;
  width: min(360px, calc(100vw - 88px));
  max-height: 280px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #d8dee4;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 17, 21, 0.18);
}

.bhrc-workspace-export-menu[hidden] {
  display: none !important;
}

.bhrc-workspace-export-option {
  display: grid;
  grid-template-columns: 18px 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-export-option:hover,
.bhrc-workspace-export-option:focus-visible {
  background: #f4f6f8;
  outline: 0;
}

.bhrc-workspace-export-option[disabled] {
  color: #9aa4ad;
  cursor: default;
}

.bhrc-workspace-export-option span:nth-child(3) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-export-option em {
  color: #566174;
  font-style: normal;
  font-size: 0.84rem;
  white-space: nowrap;
}

.bhrc-workspace-export-format-options {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.bhrc-workspace-export-format-options button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.bhrc-workspace-export-format-options button:hover,
.bhrc-workspace-export-format-options button:focus-visible {
  background: transparent;
  outline: 0;
}

.bhrc-workspace-export-format-options button[aria-pressed="true"] {
  font-weight: 650;
}

.bhrc-workspace-export-format-radio {
  flex: 0 0 auto;
  cursor: pointer;
  pointer-events: none;
}

.bhrc-workspace-settings-export-batch-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.bhrc-workspace-settings-export-download {
  min-height: 30px;
  padding: 0 12px;
}

@media (max-width: 720px) {
  .bhrc-workspace-import-dialog-header p {
    white-space: normal;
  }

  .bhrc-workspace-import-source {
    min-height: 0;
  }

  .bhrc-workspace-import-source-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .bhrc-workspace-import-source [data-bhrc-import-source-summary] {
    white-space: normal;
  }

  .bhrc-workspace-import-source-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .bhrc-workspace-settings-import-action-row,
  .bhrc-workspace-settings-export-action-row,
  .bhrc-workspace-settings-import-file-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .bhrc-workspace-settings-import-action-row p,
  .bhrc-workspace-settings-export-action-row p {
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
  }

  .bhrc-workspace-settings-transfer-tools {
    grid-template-columns: 28px minmax(0, 1fr) auto;
  }

  .bhrc-workspace-settings-transfer-pager {
    justify-content: center;
  }

  .bhrc-workspace-settings-import-batch summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .bhrc-workspace-settings-import-history.is-selection-mode .bhrc-workspace-settings-import-batch summary,
  .bhrc-workspace-settings-export-history.is-selection-mode .bhrc-workspace-settings-import-batch summary {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .bhrc-workspace-settings-import-batch summary > :last-child {
    justify-self: start;
  }

  .bhrc-workspace-settings-import-history.is-selection-mode .bhrc-workspace-settings-import-batch summary > :last-child,
  .bhrc-workspace-settings-export-history.is-selection-mode .bhrc-workspace-settings-import-batch summary > :last-child {
    grid-column: 2;
  }

  .bhrc-workspace-settings-import-file-aside {
    text-align: left;
  }
}

.bhrc-workspace-category-edit-modal {
  position: fixed;
  inset: 0;
  z-index: 225;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 17, 21, 0.38);
}

.bhrc-workspace-category-edit-modal[hidden] {
  display: none !important;
}

.bhrc-workspace-category-edit-dialog {
  display: grid;
  gap: 20px;
  width: min(600px, calc(100vw - 56px));
  padding: 28px 24px 24px;
  border: 1px solid #d7dde3;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 22px 52px rgba(15, 17, 21, 0.24);
}

.bhrc-workspace-category-edit-dialog h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 650;
}

.bhrc-workspace-category-edit-label {
  display: grid;
  gap: 10px;
  color: #172026;
  font-size: 0.92rem;
}

.bhrc-workspace-category-edit-label input,
.bhrc-workspace-category-edit-label select {
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #cbd3da;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  outline: 0;
}

.bhrc-workspace-category-edit-label input:focus,
.bhrc-workspace-category-edit-label select:focus {
  border-color: #7a858c;
  box-shadow: 0 0 0 2px rgba(23, 32, 38, 0.08);
}

.bhrc-workspace-category-edit-colors {
  display: grid;
  gap: 12px;
}

.bhrc-workspace-category-edit-colors strong {
  font-size: 0.92rem;
  font-weight: 520;
}

.bhrc-workspace-category-edit-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhrc-workspace-category-color-option {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 1px solid rgba(23, 32, 38, 0.22);
  border-radius: 4px;
  background: var(--bhrc-category-swatch, #70808a);
  cursor: pointer;
  box-shadow: none;
}

.bhrc-workspace-category-color-option.is-selected {
  outline: 2px solid #172026;
  outline-offset: 2px;
}

.bhrc-workspace-category-shortcut-picker {
  position: relative;
  display: block;
  min-width: 0;
}

.bhrc-workspace-category-shortcut-picker > button {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  padding: 0 10px 0 12px;
  border: 1px solid #cbd3da;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-category-shortcut-picker > button:focus-visible {
  border-color: #7a858c;
  box-shadow: 0 0 0 2px rgba(23, 32, 38, 0.08);
  outline: 0;
}

.bhrc-workspace-category-shortcut-picker > button .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  justify-self: end;
  background: #566174;
}

.bhrc-workspace-category-shortcut-menu {
  position: absolute;
  z-index: 4;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 214px;
  padding: 6px 0;
  border: 1px solid #d4dbe2;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 17, 21, 0.16);
  overflow-y: auto;
}

.bhrc-workspace-category-shortcut-menu[hidden] {
  display: none;
}

.bhrc-workspace-category-shortcut-option {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: 20px 96px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-category-shortcut-option:hover,
.bhrc-workspace-category-shortcut-option:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-workspace-category-shortcut-option:disabled {
  color: #a4adb5;
  cursor: default;
}

.bhrc-workspace-category-shortcut-check,
.bhrc-workspace-category-shortcut-check .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-category-shortcut-owner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: inherit;
}

.bhrc-workspace-category-shortcut-owner .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: var(--bhrc-category-color, #70808a);
}

.bhrc-workspace-category-shortcut-owner span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-category-edit-dialog footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.bhrc-workspace-category-edit-dialog .bhrc-workspace-settings-auto-save:disabled {
  border-color: #eef1f4;
  background: #f1f3f5;
  color: #b4bcc4;
  box-shadow: none;
  cursor: default;
  opacity: 1;
}

.bhrc-workspace-category-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 232;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 17, 21, 0.38);
}

.bhrc-workspace-category-delete-modal[hidden] {
  display: none;
}

.bhrc-workspace-category-delete-dialog {
  display: grid;
  gap: 14px;
  width: min(600px, calc(100vw - 56px));
  padding: 28px 24px 24px;
  border: 1px solid rgba(183, 193, 202, 0.82);
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 28px 68px rgba(15, 17, 21, 0.28);
}

.bhrc-workspace-category-delete-dialog h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bhrc-workspace-category-delete-dialog p {
  margin: 0;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-category-delete-info {
  min-height: 0;
}

.bhrc-workspace-category-delete-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}

.bhrc-workspace-signature-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 17, 21, 0.38);
}

.bhrc-workspace-signature-delete-modal[hidden] {
  display: none;
}

.bhrc-workspace-signature-delete-dialog {
  display: grid;
  gap: 14px;
  width: min(600px, calc(100vw - 56px));
  padding: 28px 24px 24px;
  border: 1px solid rgba(183, 193, 202, 0.82);
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 28px 68px rgba(15, 17, 21, 0.28);
}

.bhrc-workspace-signature-delete-dialog h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bhrc-workspace-signature-delete-dialog p {
  margin: 0;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-signature-delete-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}

.bhrc-workspace-signature-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 17, 21, 0.38);
}

.bhrc-workspace-signature-modal[hidden] {
  display: none;
}

.bhrc-workspace-signature-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  box-sizing: border-box;
  width: min(720px, calc(100vw - 56px));
  min-height: 572px;
  max-height: calc(100vh - 56px);
  padding: 24px 24px 22px;
  border: 1px solid rgba(183, 193, 202, 0.82);
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 28px 68px rgba(15, 17, 21, 0.28);
  overflow: visible;
}

.bhrc-workspace-signature-dialog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.bhrc-workspace-signature-dialog-header h3 {
  margin: 0;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bhrc-workspace-signature-dialog-account {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #303b43;
  font-size: 0.88rem;
  white-space: nowrap;
}

.bhrc-workspace-signature-dialog-account img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.bhrc-workspace-signature-tabs {
  display: flex;
  align-items: end;
  gap: 20px;
  min-height: 32px;
  margin-bottom: 4px;
}

.bhrc-workspace-signature-tabs button {
  min-height: 30px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #303b43;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.bhrc-workspace-signature-tabs button.is-active {
  border-bottom-color: #566174;
  color: #172026;
  font-weight: 650;
}

.bhrc-workspace-signature-tabs button:hover,
.bhrc-workspace-signature-tabs button:focus-visible {
  color: #172026;
  outline: 0;
}

.bhrc-workspace-signature-dialog.is-tools-passive .bhrc-workspace-signature-tools {
  opacity: 0.48;
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar button:disabled,
.bhrc-workspace-signature-insertbar button:disabled,
.bhrc-workspace-signature-dialog.is-tools-passive .bhrc-workspace-signature-formatbar button,
.bhrc-workspace-signature-dialog.is-tools-passive .bhrc-workspace-signature-insertbar button {
  cursor: default;
}

.bhrc-workspace-signature-tools {
  position: relative;
  min-width: 0;
  margin-bottom: 10px;
}

.bhrc-workspace-signature-tool-panel[hidden] {
  display: none;
}

.bhrc-workspace-signature-formatbar,
.bhrc-workspace-signature-insertbar {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 6px 8px;
  overflow: hidden;
  border: 1px solid #d9e0e6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(20, 30, 38, 0.06);
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar {
  justify-self: stretch;
  max-width: 100%;
  margin: 0;
  padding: 6px 8px;
  overflow: hidden;
  border: 1px solid #d9e0e6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(20, 30, 38, 0.06);
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar button,
.bhrc-workspace-signature-insertbar button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #566174;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.bhrc-workspace-signature-insertbar button {
  grid-auto-flow: column;
  gap: 6px;
  font-weight: 500;
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar button:hover,
.bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar button:focus-visible,
.bhrc-workspace-signature-insertbar button:hover,
.bhrc-workspace-signature-insertbar button:focus-visible {
  background: #ffffff;
  color: #566174;
  outline: 0;
}

.bhrc-workspace-signature-insertbar button[disabled],
.bhrc-workspace-signature-insertbar button[aria-disabled="true"] {
  color: #aab4bd;
  cursor: default;
}

.bhrc-workspace-signature-formatbar .bhrc-workspace-icon,
.bhrc-workspace-signature-insertbar .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-signature-insertbar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.bhrc-workspace-signature-insert-caret {
  margin-left: auto;
}

.bhrc-workspace-signature-more {
  margin-left: auto;
}

.bhrc-workspace-signature-more[hidden] {
  display: none !important;
}

.bhrc-workspace-signature-dialog .bhrc-workspace-compose-format-menu {
  z-index: 252;
}

.bhrc-workspace-signature-dialog .bhrc-workspace-compose-format-menu[hidden],
.bhrc-workspace-signature-more-menu[hidden] {
  display: none !important;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-signature-more-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  min-width: 216px;
  padding: 12px;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-signature-more-menu button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  min-height: 34px;
  padding: 0;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-signature-more-menu button::before {
  content: none;
  width: 0;
  margin: 0;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-signature-more-menu .bhrc-workspace-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.bhrc-workspace-signature-more-label {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  min-width: 0;
  color: inherit;
  font-weight: 400;
  white-space: nowrap;
}

.bhrc-workspace-signature-more-label::before,
.bhrc-workspace-signature-more-label::after {
  content: none;
  display: none;
}

.bhrc-workspace-signature-insert-menu,
.bhrc-workspace-signature-table-menu {
  position: fixed;
  z-index: 252;
  padding: 10px;
  border: 1px solid #d6dde2;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(20, 30, 38, 0.16);
}

.bhrc-workspace-signature-insert-menu[hidden],
.bhrc-workspace-signature-table-menu[hidden] {
  display: none;
}

.bhrc-workspace-signature-image-input {
  display: none;
}

.bhrc-workspace-signature-insert-menu {
  display: grid;
  min-width: 150px;
}

.bhrc-workspace-signature-insert-menu button,
.bhrc-workspace-signature-table-menu button {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #303b43;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.bhrc-workspace-signature-insert-menu button[disabled] {
  color: #b5bdc4;
  cursor: default;
}

.bhrc-workspace-signature-insert-menu button:hover:not(:disabled),
.bhrc-workspace-signature-insert-menu button:focus-visible:not(:disabled),
.bhrc-workspace-signature-table-menu button:hover,
.bhrc-workspace-signature-table-menu button:focus-visible {
  background: #f6f8f9;
  outline: 0;
}

.bhrc-workspace-signature-table-menu {
  display: grid;
  gap: 12px;
  width: 190px;
}

.bhrc-workspace-signature-table-menu strong {
  color: #172026;
  font-size: 0.9rem;
  font-weight: 700;
}

.bhrc-workspace-signature-table-grid {
  display: grid;
  grid-template-columns: repeat(10, 16px);
  grid-auto-rows: 16px;
  gap: 0;
  padding: 0;
}

.bhrc-workspace-signature-table-grid button {
  display: block;
  box-sizing: border-box;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: inset 0 0 0 0.5px rgba(23, 32, 38, 0.72);
}

.bhrc-workspace-signature-table-grid button.is-selected {
  background: #eef1f4;
  box-shadow: inset 0 0 0 0.5px #172026;
}

.bhrc-workspace-signature-editor-card {
  display: grid;
  grid-template-rows: 54px minmax(230px, 1fr);
  min-height: 306px;
  border: 1px solid #d7dde3;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.bhrc-workspace-signature-editor-card input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid #78838c;
  background: #ffffff;
  color: #172026;
  font: inherit;
  font-size: 0.92rem;
  outline: 0;
}

.bhrc-workspace-signature-editor-card input::placeholder {
  color: #8c969f;
}

.bhrc-workspace-signature-editor {
  box-sizing: border-box;
  height: auto;
  min-height: 230px;
  padding: 14px 12px;
  color: #172026;
  font-size: 0.94rem;
  line-height: 1.45;
  outline: 0;
  overflow: auto;
  overflow-wrap: anywhere;
}

.bhrc-workspace-signature-editor a[href],
.bhrc-workspace-signature-editor a[href]:visited,
.bhrc-workspace-signature-editor a[href]:hover,
.bhrc-workspace-signature-editor a[href]:focus,
.bhrc-workspace-signature-editor a[href]:active {
  color: #172026;
  font-weight: 700;
  text-decoration: none;
  cursor: text;
}

.bhrc-workspace-signature-editor:empty::before {
  content: attr(data-placeholder);
  color: #87929c;
}

.bhrc-workspace-signature-editor table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 8px 0;
}

.bhrc-workspace-signature-editor .bhrc-signature-table {
  max-width: 100%;
}

.bhrc-workspace-signature-editor img {
  max-width: 100%;
  height: auto;
}

.bhrc-workspace-signature-editor td {
  min-width: 48px;
  height: 24px;
  padding: 4px 6px;
  border: 1px solid #aeb8c0;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.bhrc-workspace-signature-editor td.is-bhrc-signature-table-selected,
.bhrc-workspace-signature-editor th.is-bhrc-signature-table-selected {
  background: rgba(23, 32, 38, 0.08);
}

.bhrc-workspace-signature-table-overlay {
  position: fixed;
  inset: 0;
  z-index: 265;
  pointer-events: none;
}

.bhrc-workspace-signature-table-overlay[hidden] {
  display: none;
}

.bhrc-workspace-signature-table-resizer {
  position: fixed;
  z-index: 1;
  width: 8px;
  min-height: 24px;
  background: transparent;
  cursor: col-resize;
  pointer-events: auto;
}

.bhrc-workspace-signature-table-resizer::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(23, 32, 38, 0.32);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.bhrc-workspace-signature-table-resizer:hover::after,
.bhrc-workspace-signature-table-resizing .bhrc-workspace-signature-table-resizer::after {
  opacity: 1;
}

.bhrc-workspace-signature-table-row-resizer {
  position: fixed;
  z-index: 1;
  min-width: 24px;
  background: transparent;
  cursor: row-resize;
  pointer-events: auto;
}

.bhrc-workspace-signature-table-row-resizer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 1px;
  background: rgba(23, 32, 38, 0.32);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.bhrc-workspace-signature-table-row-resizer:hover::after,
.bhrc-workspace-signature-table-row-resizing .bhrc-workspace-signature-table-row-resizer::after {
  opacity: 1;
}

.bhrc-workspace-signature-table-selector {
  position: fixed;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.12s ease;
}

.bhrc-workspace-signature-table-selector::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: rgba(23, 32, 38, 0.18);
}

.bhrc-workspace-signature-table-selector:hover,
.bhrc-workspace-signature-table-selector:focus-visible {
  opacity: 1;
  outline: 0;
}

.bhrc-workspace-signature-table-add {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid #8f9aa5;
  border-radius: 999px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(15, 17, 21, 0.16);
  pointer-events: auto;
  transition: opacity 0.12s ease, border-color 0.12s ease;
}

.bhrc-workspace-signature-table-add:hover,
.bhrc-workspace-signature-table-add:focus-visible {
  border-color: #172026;
  background: #ffffff;
  color: #172026;
  opacity: 1;
  outline: 0;
}

.bhrc-workspace-signature-table-resizing,
.bhrc-workspace-signature-table-resizing * {
  user-select: none;
}

.bhrc-workspace-signature-table-column-resizing,
.bhrc-workspace-signature-table-column-resizing * {
  cursor: col-resize !important;
}

.bhrc-workspace-signature-table-row-resizing,
.bhrc-workspace-signature-table-row-resizing * {
  cursor: row-resize !important;
}

.bhrc-workspace-signature-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 10px 0 8px;
}

.bhrc-workspace-signature-options .bhrc-workspace-settings-auto-check {
  min-height: 28px;
  font-size: 0.9rem;
}

.bhrc-workspace-signature-dialog-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding-top: 10px;
}

.bhrc-workspace-signature-warning {
  display: inline-grid;
  grid-column: 1;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 0;
  color: #303b43;
  font-size: 0.9rem;
}

.bhrc-workspace-signature-warning[hidden] {
  display: none;
}

.bhrc-workspace-signature-warning .bhrc-workspace-icon {
  width: 19px;
  height: 19px;
  color: #f2763f;
}

.bhrc-workspace-signature-footer-actions {
  display: inline-flex;
  grid-column: 2;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.bhrc-workspace-signature-footer-actions .bhrc-workspace-settings-auto-save,
.bhrc-workspace-signature-footer-actions .bhrc-workspace-settings-auto-delete {
  min-width: 96px;
}

.bhrc-workspace-signature-footer-actions .bhrc-workspace-settings-auto-save:disabled {
  border-color: #eef1f4;
  background: #f1f3f5;
  color: #b4bcc4;
  box-shadow: none;
  cursor: default;
}

.bhrc-workspace-signature-table-dialog {
  position: absolute;
  z-index: 260;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  width: min(520px, calc(100% - 48px));
  padding: 26px 24px 24px;
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 62px rgba(15, 17, 21, 0.28);
  transform: translate(-50%, -50%);
}

.bhrc-workspace-signature-link-dialog {
  position: absolute;
  z-index: 260;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: min(600px, calc(100% - 56px));
  padding: 28px 24px 24px;
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 62px rgba(15, 17, 21, 0.28);
  transform: translate(-50%, -50%);
}

.bhrc-workspace-signature-table-dialog[hidden] {
  display: none;
}

.bhrc-workspace-signature-link-dialog[hidden] {
  display: none;
}

.bhrc-workspace-signature-table-dialog h4 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 700;
}

.bhrc-workspace-signature-link-dialog h4 {
  margin: 0 0 8px;
  color: #172026;
  font-size: 1.18rem;
  font-weight: 700;
}

.bhrc-workspace-signature-table-dialog label {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 250px);
  align-items: center;
  gap: 18px;
  color: #303b43;
  font-size: 0.9rem;
}

.bhrc-workspace-signature-link-dialog label {
  display: grid;
  gap: 6px;
  color: #303b43;
  font-size: 0.9rem;
}

.bhrc-workspace-signature-table-dialog input {
  box-sizing: border-box;
  color-scheme: light;
  width: 100%;
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid #c8d1d9;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  caret-color: #172026;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-signature-link-dialog input {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid #c8d1d9;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  outline: 0;
}

.bhrc-workspace-signature-table-dialog input:focus,
.bhrc-workspace-signature-table-dialog input:focus-visible {
  border-color: #7f8992;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 0 0 1px rgba(23, 32, 38, 0.12);
  outline: 0;
}

.bhrc-workspace-signature-link-dialog input:focus,
.bhrc-workspace-signature-link-dialog input:focus-visible {
  border-color: #7f8992;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 0 0 1px rgba(23, 32, 38, 0.12);
  outline: 0;
}

.bhrc-workspace-signature-table-dialog input::selection {
  background: rgba(23, 32, 38, 0.14);
  color: #172026;
}

.bhrc-workspace-signature-link-dialog input::selection {
  background: rgba(23, 32, 38, 0.14);
  color: #172026;
}

.bhrc-workspace-signature-table-dialog footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.bhrc-workspace-signature-link-dialog footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 0;
}

.bhrc-workspace-signature-link-dialog .bhrc-workspace-settings-auto-save:disabled {
  border-color: #eef1f4;
  background: #f1f3f5;
  color: #b4bcc4;
  box-shadow: none;
  cursor: default;
}

.bhrc-workspace-signature-dialog.is-table-dialog-open::after,
.bhrc-workspace-signature-dialog.is-link-dialog-open::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 255;
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.18);
}

.bhrc-workspace-settings-auto-replies-view {
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding-bottom: 0;
}

.bhrc-workspace-settings-auto-replies-body {
  padding-right: 6px;
  overflow-x: hidden;
}

.bhrc-workspace-settings-auto-copy {
  max-width: 112ch;
  margin: 14px 0 18px;
  color: #33404a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-settings-auto-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
  padding-bottom: 22px;
}

.bhrc-workspace-settings-auto-toggle-row,
.bhrc-workspace-settings-auto-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: #172026;
  font-size: 0.92rem;
  line-height: 1.35;
}

.bhrc-workspace-settings-auto-toggle-row {
  width: fit-content;
  cursor: pointer;
}

.bhrc-workspace-settings-auto-toggle-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-settings-auto-switch {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 22px;
  border: 1px solid #8d98a3;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.bhrc-workspace-settings-auto-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #566174;
  transition: transform 140ms ease, background 140ms ease;
}

.bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch {
  border-color: #172026;
  background: #172026;
}

.bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch::after {
  transform: translateX(18px);
  background: #ffffff;
}

.bhrc-workspace-settings-auto-toggle-row input:focus-visible + .bhrc-workspace-settings-auto-switch,
.bhrc-workspace-settings-auto-check input:focus-visible {
  outline: 2px solid rgba(23, 32, 38, 0.28);
  outline-offset: 2px;
}

.bhrc-workspace-settings-auto-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1.5px solid #7d878e;
  border-radius: 4px;
  background: #ffffff;
  color: #26323a;
  cursor: pointer;
}

.bhrc-workspace-settings-auto-check input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  opacity: 0;
  transform: translateY(-1px) rotate(45deg);
}

.bhrc-workspace-settings-auto-check input[type="checkbox"]:checked {
  border-color: #7d878e;
  background: #ffffff;
}

.bhrc-workspace-settings-auto-check input[type="checkbox"]:checked::after {
  opacity: 1;
}

.bhrc-workspace-settings-auto-check input[type="checkbox"]:disabled + span,
.bhrc-workspace-settings-auto-check input[type="checkbox"]:disabled + label {
  color: #a7afb5;
  opacity: 0.78;
}

.bhrc-workspace-settings-auto-check input[type="checkbox"]:disabled {
  cursor: default;
}

.bhrc-workspace-settings-auto-schedule {
  display: grid;
  grid-template-columns: 112px minmax(126px, 1fr) minmax(126px, 1fr);
  align-items: center;
  gap: 12px 10px;
  max-width: min(100%, 560px);
  margin-left: 28px;
  color: #172026;
  font-size: 0.9rem;
}

.bhrc-workspace-settings-auto-schedule > span:not(.bhrc-workspace-settings-auto-date-field) {
  white-space: nowrap;
}

.bhrc-workspace-settings-auto-schedule.is-disabled {
  color: #a7afb5;
}

.bhrc-workspace-settings-auto-schedule input,
.bhrc-workspace-settings-auto-subject {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 1px solid #cdd4dc;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  font-size: 0.9rem;
  padding: 0 12px;
}

.bhrc-workspace-settings-auto-date-field {
  position: relative;
  display: block;
  min-width: 0;
  max-width: 100%;
}

.bhrc-workspace-settings-auto-date-field input {
  display: block;
  width: 100%;
  padding-right: 38px;
}

.bhrc-workspace-settings-auto-date-field button {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  display: grid;
  place-items: center;
  width: 32px;
  min-width: 32px;
  padding: 0;
  border: 0;
  border-left: 1px solid #e1e6eb;
  border-radius: 0 3px 3px 0;
  background: #ffffff;
  color: #5d6870;
}

.bhrc-workspace-settings-auto-date-field button:hover,
.bhrc-workspace-settings-auto-date-field button:focus-visible {
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-auto-date-field button:focus-visible {
  box-shadow: inset 0 0 0 1px #7d878e;
}

.bhrc-workspace-settings-auto-date-field .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-settings-auto-schedule input:disabled {
  border-color: #dce2e7;
  background: #fafbfc;
  color: #a7afb5;
}

.bhrc-workspace-settings-auto-date-field button:disabled {
  border-left-color: #edf1f4;
  background: #fafbfc;
  color: #a7afb5;
}

.bhrc-workspace-settings-auto-duration-options {
  display: grid;
  gap: 12px;
  max-width: min(100%, 620px);
  margin-top: -4px;
  margin-left: 28px;
}

.bhrc-workspace-settings-auto-duration-options[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-subject {
  width: 100%;
  max-width: 100%;
}

.bhrc-workspace-settings-auto-info {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #303b43;
}

.bhrc-workspace-settings-auto-info .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
}

.bhrc-workspace-settings-auto-info::after {
  content: "Bu kutuyu iÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸aretlediÃƒÆ’Ã¢â‚¬ÂÃƒâ€¦Ã‚Â¸inizde dÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼zenlediÃƒÆ’Ã¢â‚¬ÂÃƒâ€¦Ã‚Â¸iniz mevcut toplantÃƒÆ’Ã¢â‚¬ÂÃƒâ€šÃ‚Â±lar iptal edilir ve davet edildiÃƒÆ’Ã¢â‚¬ÂÃƒâ€¦Ã‚Â¸iniz toplantÃƒÆ’Ã¢â‚¬ÂÃƒâ€šÃ‚Â±lar da reddedilir.";
  position: absolute;
  right: 50%;
  bottom: calc(100% + 8px);
  z-index: 2;
  display: none;
  width: 310px;
  max-width: min(310px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid #d6dde2;
  border-radius: 6px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 14px 28px rgba(20, 30, 38, 0.16);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  transform: translateX(50%);
  white-space: normal;
}

.bhrc-workspace-settings-auto-info::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: calc(100% + 3px);
  z-index: 3;
  display: none;
  width: 10px;
  height: 10px;
  border-right: 1px solid #d6dde2;
  border-bottom: 1px solid #d6dde2;
  background: #ffffff;
  transform: translateX(50%) rotate(45deg);
}

.bhrc-workspace-settings-auto-info:hover::after,
.bhrc-workspace-settings-auto-info:focus-visible::after,
.bhrc-workspace-settings-auto-info:hover::before,
.bhrc-workspace-settings-auto-info:focus-visible::before {
  display: block;
}

.bhrc-workspace-settings-auto-info:focus-visible {
  outline: 1px solid #7d878e;
  outline-offset: 2px;
}

.bhrc-workspace-settings-auto-editor {
  position: relative;
  min-width: 0;
  max-width: 100%;
  border: 1px solid #d7dde3;
  background: #ffffff;
  overflow: visible;
}

.bhrc-workspace-settings-auto-editor[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-editor .bhrc-workspace-compose-format-menu[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-formatbar {
  display: flex;
  align-items: center;
  gap: 4px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  padding: 6px;
  overflow: hidden;
  border-bottom: 1px solid #eef1f4;
  background: #ffffff;
}

.bhrc-workspace-settings-auto-formatbar button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #566174;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.bhrc-workspace-settings-auto-formatbar .bhrc-workspace-settings-auto-more {
  margin-left: auto;
}

.bhrc-workspace-settings-auto-formatbar .bhrc-workspace-settings-auto-more[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-more > .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-settings-auto-more-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  min-width: 0;
  padding: 12px;
}

.bhrc-workspace-settings-auto-more-menu button {
  justify-content: flex-start;
  gap: 12px;
  width: auto;
  min-height: 34px;
  padding: 0;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}

.bhrc-workspace-settings-auto-more-menu button::before {
  content: none;
  width: 0;
  margin: 0;
}

.bhrc-workspace-settings-auto-more-menu .bhrc-workspace-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.bhrc-workspace-settings-auto-more-label {
  color: inherit;
  font-weight: 400;
  white-space: nowrap;
}

.bhrc-workspace-settings-auto-formatbar button:hover,
.bhrc-workspace-settings-auto-formatbar button:focus-visible {
  color: #172026;
  outline: 0;
}

.bhrc-workspace-settings-auto-formatbar .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-settings-auto-color-letter {
  position: relative;
  display: inline-block;
  min-width: 14px;
  color: #172026;
}

.bhrc-workspace-settings-auto-color-letter::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: #c43726;
}

.bhrc-workspace-settings-auto-message {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 132px;
  padding: 14px 12px;
  color: #172026;
  font-size: 0.94rem;
  line-height: 1.45;
  outline: 0;
  overflow-wrap: anywhere;
}

.bhrc-workspace-settings-auto-message:empty::before {
  content: attr(data-placeholder);
  color: #172026;
}

.bhrc-workspace-settings-auto-contacts-row {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 28px;
  margin-top: -6px;
  padding: 0 8px;
  color: #172026;
  background: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
}

.bhrc-workspace-settings-auto-contacts-row[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-contacts-row > input[type="checkbox"] {
  color: #26323a !important;
  opacity: 1 !important;
}

.bhrc-workspace-settings-auto-contacts-label {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
  color: #172026 !important;
  -webkit-text-fill-color: #172026 !important;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: nowrap !important;
  cursor: pointer;
}

.bhrc-workspace-settings-auto-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px;
  border-top: 1px solid var(--bhrc-workspace-settings-line);
  background: #ffffff;
}

.bhrc-workspace-settings-auto-actions[hidden] {
  display: none;
}

.bhrc-workspace-settings-auto-save,
.bhrc-workspace-settings-auto-delete {
  min-width: 96px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  transform: none;
  transition: none;
}

.bhrc-workspace-settings-auto-save {
  border: 1px solid rgba(32, 37, 43, 0.48);
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #566174;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
}

.bhrc-workspace-settings-auto-delete {
  border: 1px solid #9aa3ad;
  background: #ffffff;
  color: #566174;
  box-shadow: none;
  font-weight: 560;
}

.bhrc-workspace-settings-auto-save:hover,
.bhrc-workspace-settings-auto-save:focus-visible {
  border-color: rgba(32, 37, 43, 0.48);
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #1f2937;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
  outline: 0;
  transform: none;
}

.bhrc-workspace-settings-auto-delete:hover,
.bhrc-workspace-settings-auto-delete:focus-visible {
  border-color: #7f8894;
  background: #f6f7f8;
  color: #1f2937;
  outline: 0;
  transform: none;
}

.bhrc-workspace-settings-date-popover {
  position: fixed;
  z-index: 132;
  width: min(560px, calc(100vw - 32px));
}

.bhrc-workspace-settings-date-popover[hidden] {
  display: none;
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-card {
  padding: 20px;
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-card h2 {
  margin-bottom: 18px;
  font-size: 1.16rem;
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-grid {
  grid-template-columns: minmax(210px, 1fr) minmax(168px, 0.85fr);
  gap: 26px;
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions {
  margin-top: 20px;
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions .bhrc-workspace-primary,
.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions .bhrc-workspace-secondary {
  min-height: 32px;
}

@media (max-width: 860px) {
  .bhrc-workspace-settings-panel {
    width: 100vw;
  }

  .bhrc-workspace-settings-header {
    grid-template-columns: max-content minmax(120px, 1fr) 34px;
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .bhrc-workspace-settings-layout {
    grid-template-columns: 15% 19% 66%;
  }

  .bhrc-workspace-settings-primary,
  .bhrc-workspace-settings-secondary {
    border-right: 1px solid var(--bhrc-workspace-settings-line);
    border-bottom: 0;
  }

  .bhrc-workspace-settings-column {
    padding: 14px 8px;
  }

  .bhrc-workspace-settings-detail {
    padding: 0;
  }

  .bhrc-workspace-settings-detail-header {
    padding: 0;
  }

  .bhrc-workspace-settings-detail-body {
    padding: 0;
  }

  .bhrc-workspace-settings-account-section,
  .bhrc-workspace-settings-account-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .bhrc-workspace-settings-detail-view {
    padding: 14px;
  }

  .bhrc-workspace-settings-account-action-row,
  .bhrc-workspace-settings-account-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .bhrc-workspace-settings-signature-intro,
  .bhrc-workspace-settings-signature-default-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .bhrc-workspace-settings-signature-empty {
    min-height: 300px;
  }

  .bhrc-workspace-settings-canonical-action {
    justify-self: start;
  }

  .bhrc-workspace-settings-auto-schedule {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 0;
  }

  .bhrc-workspace-settings-auto-duration-options {
    margin-left: 0;
  }

  .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bhrc-workspace-side-muted,
.bhrc-workspace-notice-blank {
  color: #5d6870;
}

.bhrc-workspace-notice-blank {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 180px;
  text-align: center;
}

.bhrc-workspace-notifications-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
}

.bhrc-workspace-notifications-panel .bhrc-workspace-notice-blank {
  align-self: stretch;
  align-content: center;
  justify-items: center;
  min-height: 0;
  padding: 16px 0 48px;
}

.bhrc-workspace-notification-empty-animation {
  display: block;
  width: 118px;
  height: 118px;
  cursor: pointer;
  object-fit: contain;
}

.bhrc-workspace-notice-blank span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef2f3;
  color: #6b757b;
  font-size: 2rem;
}

.bhrc-workspace-setting-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.bhrc-workspace-setting-row span {
  color: #4b555d;
  font-weight: 800;
}

.bhrc-workspace-setting-row select,
.bhrc-workspace-setting-row input[type="time"] {
  min-height: 38px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  padding: 0 10px;
}

.bhrc-workspace-setting-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.bhrc-workspace-setting-inline button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  background: #ffffff;
  color: #3f4a52;
  font-weight: 760;
}

.bhrc-workspace-setting-row small {
  color: #6c767e;
  line-height: 1.4;
}

.bhrc-workspace-compose {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 22px;
  display: grid;
  grid-template-rows: auto minmax(160px, 1fr) auto auto;
  width: min(520px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 72px));
  border: 1px solid #cbd3da;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(23, 32, 38, 0.22);
}

.bhrc-workspace-compose[hidden] {
  display: none;
}

.bhrc-workspace-compose [hidden] {
  display: none !important;
}

.bhrc-workspace-compose header,
.bhrc-workspace-compose footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #f3f5f5;
}

.bhrc-workspace-compose header {
  border-bottom: 1px solid #dce2e7;
  border-radius: 8px 8px 0 0;
}

.bhrc-workspace-compose footer {
  justify-content: flex-start;
  border-top: 1px solid #dce2e7;
  border-radius: 0 0 8px 8px;
}

.bhrc-workspace-compose header button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1.3rem;
}

.bhrc-workspace-compose label {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  border-bottom: 1px solid #edf0f2;
  color: #5a656d;
}

.bhrc-workspace-compose input,
.bhrc-workspace-compose textarea {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #172026;
}

.bhrc-workspace-compose textarea {
  width: 100%;
  min-height: 180px;
  padding: 14px 12px;
  resize: vertical;
}

.bhrc-workspace-compose,
.bhrc-workspace-compose header,
.bhrc-workspace-compose footer,
.bhrc-workspace-compose input,
.bhrc-workspace-compose textarea {
  background: #ffffff;
}

.bhrc-workspace-compose input,
.bhrc-workspace-compose textarea {
  caret-color: #172026;
}

.bhrc-workspace-primary[data-bhrc-compose-send],
.bhrc-workspace-reader-compose-send,
.bhrc-workspace-primary[data-bhrc-schedule-send] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(32, 37, 43, 0.48);
  border-radius: 999px;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #566174;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    2px 3px 0 rgba(15, 17, 21, 0.08);
  transform: none;
}

.bhrc-workspace-primary[data-bhrc-compose-send]:hover,
.bhrc-workspace-primary[data-bhrc-compose-send]:focus-visible,
.bhrc-workspace-reader-compose-send:hover,
.bhrc-workspace-reader-compose-send:focus-visible,
.bhrc-workspace-primary[data-bhrc-schedule-send]:hover,
.bhrc-workspace-primary[data-bhrc-schedule-send]:focus-visible {
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.16) 0, rgba(15, 17, 21, 0.16) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 244, 0.92));
  color: #1f2937;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    2px 3px 0 rgba(15, 17, 21, 0.08);
  transform: none;
}

.bhrc-workspace-primary[data-bhrc-compose-open] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  font-weight: 560;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-primary[data-bhrc-compose-open] .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-primary[data-bhrc-compose-open]:hover,
.bhrc-workspace-primary[data-bhrc-compose-open]:active,
.bhrc-workspace-primary[data-bhrc-compose-open]:focus {
  border-color: #7f8894;
  background: #f4f5f6;
  color: #1f2937;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-primary[data-bhrc-compose-open]:focus-visible {
  outline: 2px solid rgba(32, 37, 43, 0.3);
  outline-offset: 3px;
}

.bhrc-workspace-compose footer.bhrc-workspace-compose-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
}

.bhrc-workspace-attach-button {
  position: relative;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #394650;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-attach-button:hover,
.bhrc-workspace-attach-button:focus-visible {
  background: #ffffff;
  color: #172026;
  outline: 0;
  transform: none;
}

.bhrc-workspace-attach-button > span:first-child {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: none;
}

.bhrc-workspace-attach-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid #7d878e;
  border-radius: 999px;
  background: #ffffff;
  color: #172026;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 16px;
}

.bhrc-workspace-compose {
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  width: min(700px, calc(100vw - 36px));
  height: min(480px, calc(100vh - 72px));
  min-height: 260px;
  max-height: min(650px, calc(100vh - 72px));
  overflow: hidden;
  transition: none;
}

.bhrc-workspace-compose.is-minimized {
  grid-template-rows: auto;
  width: min(320px, calc(100vw - 36px));
  min-height: 39px;
  height: 39px;
  bottom: 0;
  box-shadow: 0 12px 32px rgba(23, 32, 38, 0.16);
}

.bhrc-workspace-compose.is-expanded {
  right: 16px;
  bottom: 16px;
  width: min(1064px, calc(100vw - 32px));
  min-height: min(720px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
}

.bhrc-workspace-compose.is-contact-centered {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.bhrc-workspace-compose.is-minimized .bhrc-workspace-compose-body,
.bhrc-workspace-compose.is-minimized .bhrc-workspace-compose-attachments,
.bhrc-workspace-compose.is-minimized .bhrc-workspace-compose-formatbar,
.bhrc-workspace-compose.is-minimized .bhrc-workspace-compose-actions {
  display: none;
}

.bhrc-workspace-compose header.bhrc-workspace-compose-header {
  min-height: 39px;
  padding: 0 10px 0 15px;
  border-bottom: 1px solid #edf0f2;
  background: transparent;
  color: #0f2133;
  border-radius: 8px 8px 0 0;
  cursor: move;
  user-select: none;
}

.bhrc-workspace-compose.is-minimized header.bhrc-workspace-compose-header {
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.bhrc-workspace-compose-header strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 760;
}

.bhrc-workspace-compose-window-controls {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  cursor: default;
}

.bhrc-workspace-compose header .bhrc-workspace-compose-window-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  color: #3d4750;
  font-size: 0;
}

.bhrc-workspace-compose header .bhrc-workspace-compose-window-button:hover,
.bhrc-workspace-compose header .bhrc-workspace-compose-window-button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
}

.bhrc-compose-minimize .bhrc-workspace-icon,
.bhrc-compose-close .bhrc-workspace-icon {
  display: block;
  width: 16px;
  height: 16px;
}

.bhrc-workspace-compose-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 0;
  background: #ffffff;
}

.bhrc-workspace-compose-recipients {
  display: grid;
  min-width: 0;
}

.bhrc-workspace-compose label.bhrc-workspace-compose-field {
  min-height: 40px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 15px;
  border-bottom: 1px solid #edf0f2;
  color: #4b5563;
  background: #ffffff;
}

.bhrc-workspace-compose label.bhrc-compose-recipient-field {
  grid-template-columns: 70px minmax(0, 1fr) auto;
}

.bhrc-workspace-compose label.bhrc-compose-subject-field {
  grid-template-columns: 70px minmax(0, 1fr);
}

.bhrc-workspace-compose-field span:not(.bhrc-workspace-compose-recipient-actions):not(.visually-hidden) {
  font-size: 14px;
  color: #4b5563;
}

.bhrc-workspace-compose input,
.bhrc-workspace-compose textarea,
.bhrc-workspace-compose-editor {
  font: inherit;
  background: #ffffff;
}

.bhrc-workspace-compose input::placeholder,
.bhrc-workspace-compose textarea::placeholder {
  color: #737d83;
}

.bhrc-workspace-compose .bhrc-compose-subject-field input {
  width: 100%;
}

.bhrc-workspace-compose-recipient-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.bhrc-workspace-compose-recipient-actions button,
.bhrc-workspace-compose-tool,
.bhrc-workspace-compose-discard {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3e4952;
  cursor: pointer;
  font: inherit;
  font-weight: 680;
  transform: none;
}

.bhrc-workspace-compose-tool .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-compose-recipient-actions button:hover,
.bhrc-workspace-compose-recipient-actions button:focus-visible,
.bhrc-workspace-compose-tool:hover,
.bhrc-workspace-compose-tool:focus-visible,
.bhrc-workspace-compose-discard:hover,
.bhrc-workspace-compose-discard:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose textarea {
  min-height: 0;
  height: 100%;
  padding: 15px;
  line-height: 1.5;
  resize: none;
}

.bhrc-workspace-compose-editor {
  min-height: 0;
  height: 100%;
  padding: 15px;
  overflow: auto;
  color: #172026;
  line-height: 1.5;
  outline: 0;
  caret-color: #172026;
  white-space: pre-wrap;
  word-break: break-word;
}

.bhrc-workspace-compose-editor:empty::before {
  content: attr(data-placeholder);
  color: #737d83;
  pointer-events: none;
}

.bhrc-workspace-compose-editor a {
  color: #111827;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.bhrc-workspace-compose-editor .bhrc-compose-signature-block {
  display: block;
  max-width: 100%;
}

.bhrc-workspace-compose-editor .bhrc-compose-signature-block a,
.bhrc-workspace-compose-editor .bhrc-compose-signature-block a:visited,
.bhrc-workspace-compose-editor .bhrc-compose-signature-block a:hover,
.bhrc-workspace-compose-editor .bhrc-compose-signature-block a:focus,
.bhrc-workspace-compose-editor .bhrc-compose-signature-block a:active {
  color: #111827;
  cursor: text;
  font-weight: 740;
  text-decoration: none;
}

.bhrc-workspace-compose-editor table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  margin: 8px 0;
}

.bhrc-workspace-compose-editor td,
.bhrc-workspace-compose-editor th {
  min-width: 48px;
  height: 24px;
  padding: 4px 6px;
  border: 1px solid #aeb8c0;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.bhrc-workspace-compose-editor img {
  max-width: 100%;
  height: auto;
}

.bhrc-workspace-compose-confidential-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 0 15px 10px;
  padding: 7px 0;
  border-top: 1px solid #e5eaee;
  color: #26323a;
  background: #ffffff;
}

.bhrc-workspace-compose-confidential-card[hidden] {
  display: none !important;
}

.bhrc-workspace-compose-confidential-card > .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  color: #3f4a52;
}

.bhrc-workspace-compose-confidential-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bhrc-workspace-compose-confidential-copy strong {
  color: #172026;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.bhrc-workspace-compose-confidential-copy span {
  overflow: hidden;
  color: #56626b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-compose-confidential-edit,
.bhrc-workspace-compose-confidential-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font: inherit;
  transform: none;
}

.bhrc-workspace-compose-confidential-edit {
  min-height: 28px;
  padding: 0;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.bhrc-workspace-compose-confidential-close {
  width: 24px;
  height: 24px;
}

.bhrc-workspace-compose-confidential-close .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
}

.bhrc-workspace-compose-confidential-edit:hover,
.bhrc-workspace-compose-confidential-edit:focus-visible,
.bhrc-workspace-compose-confidential-close:hover,
.bhrc-workspace-compose-confidential-close:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-compose-link-panel[hidden],
.bhrc-workspace-compose-link-actions[hidden],
.bhrc-workspace-compose-emoji-panel[hidden],
.bhrc-workspace-confidential-panel[hidden],
.bhrc-workspace-compose-attachments[hidden] {
  display: none !important;
}

.bhrc-workspace-compose-attachments {
  display: grid;
  justify-items: end;
  gap: 7px;
  max-height: 110px;
  padding: 0 15px 6px;
  overflow-y: auto;
  background: #ffffff;
}

.bhrc-workspace-compose-attachment-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  width: min(220px, 100%);
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  text-align: left;
}

.bhrc-workspace-compose-attachment-item .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  color: #3f4a52;
}

.bhrc-workspace-compose-attachment-meta {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bhrc-workspace-compose-attachment-name {
  overflow: hidden;
  color: #172026;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-compose-attachment-name a {
  color: #172026;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.bhrc-workspace-compose-attachment-name a:hover,
.bhrc-workspace-compose-attachment-name a:focus-visible {
  color: #172026;
  outline: 0;
}

.bhrc-workspace-compose-attachment-size {
  color: #5c6670;
  font-weight: 650;
}

.bhrc-workspace-compose-attachment-status {
  color: #5c6670;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.15;
}

.bhrc-workspace-compose-attachment-remove {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3f4a52;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-compose-attachment-remove:hover,
.bhrc-workspace-compose-attachment-remove:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose-attachment-remove::before,
.bhrc-workspace-compose-attachment-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.bhrc-workspace-compose-attachment-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bhrc-workspace-compose-attachment-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bhrc-workspace-compose-attachment-progress {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border: 1px solid #cfd7dd;
  border-radius: 999px;
  background: #ffffff;
}

.bhrc-workspace-compose-attachment-progress span {
  display: block;
  width: var(--bhrc-attachment-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.18) 0, rgba(15, 17, 21, 0.18) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(235, 239, 242, 0.98), rgba(205, 214, 221, 0.94));
  transition: width 180ms ease;
}

.bhrc-workspace-compose-attachment-item[data-status="ready"] .bhrc-workspace-compose-attachment-progress {
  display: none;
}

.bhrc-workspace-compose-link-panel {
  position: fixed;
  z-index: 146;
  display: grid;
  width: min(336px, calc(100vw - 24px));
  gap: 8px;
  padding: 9px;
  border: 1px solid #cfd7dd;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(20, 30, 38, 0.14);
}

.bhrc-workspace-compose-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.bhrc-workspace-compose-link-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid #cfd7dd;
  border-radius: 4px;
  background: #ffffff;
  color: #3f4a52;
}

.bhrc-workspace-compose-link-field:focus-within {
  border-color: #8f9aa3;
  box-shadow: 0 0 0 1px #8f9aa3 inset;
}

.bhrc-workspace-compose-link-field .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.bhrc-workspace-compose-link-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  outline: 0;
}

.bhrc-workspace-compose-link-field input::placeholder {
  color: #737d83;
}

.bhrc-workspace-compose-link-apply {
  min-width: 58px;
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font: inherit;
  font-weight: 680;
  transform: none;
}

.bhrc-workspace-compose-link-apply:disabled {
  color: #9aa3ad;
  cursor: default;
}

.bhrc-workspace-compose-link-apply:hover,
.bhrc-workspace-compose-link-apply:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose-link-apply:disabled:hover,
.bhrc-workspace-compose-link-apply:disabled:focus-visible {
  color: #9aa3ad;
}

.bhrc-workspace-compose-link-actions {
  position: fixed;
  z-index: 147;
  display: inline-flex;
  align-items: center;
  max-width: min(520px, calc(100vw - 24px));
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid #bfc8cf;
  border-radius: 3px;
  background: #ffffff;
  color: #172026;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(20, 30, 38, 0.12);
  white-space: nowrap;
}

.bhrc-workspace-compose-link-actions a,
.bhrc-workspace-compose-link-actions button {
  border: 0;
  background: transparent;
  color: #0b57d0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-compose-link-actions a {
  overflow: hidden;
  max-width: 260px;
  text-overflow: ellipsis;
}

.bhrc-workspace-compose-link-actions button {
  padding: 0;
}

.bhrc-workspace-compose-link-actions a:hover,
.bhrc-workspace-compose-link-actions a:focus-visible,
.bhrc-workspace-compose-link-actions button:hover,
.bhrc-workspace-compose-link-actions button:focus-visible {
  background: transparent;
  color: #0b57d0;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose-link-separator {
  color: #5c6670;
}

.bhrc-workspace-compose-emoji-panel {
  position: fixed;
  z-index: 146;
  display: grid;
  width: min(390px, calc(100vw - 24px));
  max-height: min(430px, calc(100vh - 24px));
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #d5dce2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 32, 38, 0.16);
}

.bhrc-workspace-compose-emoji-search {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid #cfd7de;
  border-radius: 8px;
  background: #ffffff;
}

.bhrc-workspace-compose-emoji-search:focus-within {
  border-color: #8f9aa3;
  box-shadow: 0 0 0 1px #8f9aa3 inset;
}

.bhrc-workspace-compose-emoji-search .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.bhrc-workspace-compose-emoji-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172026;
  font: inherit;
  outline: 0;
}

.bhrc-workspace-compose-emoji-search input::placeholder {
  color: #737d83;
}

.bhrc-workspace-compose-emoji-categories {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 4px;
}

.bhrc-workspace-compose-emoji-arrow,
.bhrc-workspace-compose-emoji-category,
.bhrc-workspace-compose-emoji-button {
  border: 0;
  background: transparent;
  color: #303b43;
  cursor: pointer;
}

.bhrc-workspace-compose-emoji-arrow:hover,
.bhrc-workspace-compose-emoji-arrow:focus-visible,
.bhrc-workspace-compose-emoji-category:hover,
.bhrc-workspace-compose-emoji-category:focus-visible,
.bhrc-workspace-compose-emoji-button:hover,
.bhrc-workspace-compose-emoji-button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose-emoji-arrow {
  display: inline-grid;
  width: 28px;
  height: 30px;
  place-items: center;
  padding: 0;
}

.bhrc-workspace-compose-emoji-arrow span {
  width: 9px;
  height: 9px;
  border-top: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
}

.bhrc-workspace-compose-emoji-arrow.is-prev span {
  transform: rotate(-45deg);
}

.bhrc-workspace-compose-emoji-arrow.is-next span {
  transform: rotate(135deg);
}

.bhrc-workspace-compose-emoji-track {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.bhrc-workspace-compose-emoji-track::-webkit-scrollbar {
  display: none;
}

.bhrc-workspace-compose-emoji-category {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border-radius: 7px;
}

.bhrc-workspace-compose-emoji-category.is-active {
  box-shadow: inset 0 -2px 0 #596777;
}

.bhrc-workspace-compose-emoji-category img,
.bhrc-workspace-compose-emoji-button img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.bhrc-workspace-compose-emoji-category img {
  width: 24px;
  height: 24px;
}

.bhrc-workspace-compose-emoji-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-content: start;
  gap: 6px;
  min-height: 150px;
  overflow: auto;
  padding: 2px;
}

.bhrc-workspace-compose-emoji-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 3px;
  border-radius: 7px;
}

.bhrc-workspace-compose-emoji-button img {
  width: 27px;
  height: 27px;
}

.bhrc-workspace-compose-emoji-empty {
  margin: 8px 0 4px;
  color: #5c6670;
  font-size: 13px;
  text-align: center;
}

.bhrc-workspace-compose-editor img.bhrc-compose-emoji-inline,
.bhrc-workspace-reader-body img.bhrc-compose-emoji-inline {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  margin: 0 2px;
  vertical-align: -0.22em;
}

.bhrc-workspace-confidential-panel {
  position: fixed;
  z-index: 148;
  display: grid;
  width: min(560px, calc(100vw - 24px));
  gap: 18px;
  padding: 24px 22px 20px;
  border: 1px solid #d4dbe1;
  border-radius: 12px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 18px 40px rgba(23, 32, 38, 0.16);
}

.bhrc-workspace-confidential-panel header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 0;
  padding: 0;
}

.bhrc-workspace-confidential-panel h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.bhrc-workspace-confidential-panel p {
  margin: 0;
  color: #4f5b64;
  font-size: 0.95rem;
  line-height: 1.45;
}

.bhrc-workspace-confidential-summary {
  display: block;
  max-width: 100%;
}

.bhrc-workspace-confidential-summary .bhrc-workspace-confidential-info {
  margin-left: 4px;
  vertical-align: -0.22em;
}

.bhrc-workspace-confidential-info {
  position: relative;
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  color: #3f4a52;
  cursor: help;
}

.bhrc-workspace-confidential-info .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-confidential-info::after {
  content: attr(data-bhrc-tooltip);
  position: absolute;
  z-index: 24;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(360px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(86, 97, 106, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 12px 26px rgba(23, 32, 38, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  white-space: pre-line;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.bhrc-workspace-confidential-info:hover::after,
.bhrc-workspace-confidential-info:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

.bhrc-workspace-confidential-field,
.bhrc-workspace-confidential-code {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 0;
}

.bhrc-workspace-confidential-field strong,
.bhrc-workspace-confidential-code legend {
  color: #33404a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.bhrc-workspace-confidential-code {
  margin: 0;
  padding: 0;
  border: 0 !important;
}

.bhrc-workspace-confidential-code legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  padding: 0;
  border: 0;
}

.bhrc-workspace-confidential-expiry-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.bhrc-workspace-confidential-expiry-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #98a4ad;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transform: none;
}

.bhrc-workspace-confidential-expiry-button:hover,
.bhrc-workspace-confidential-expiry-button:focus-visible {
  background: #ffffff;
  color: #172026;
  outline: 1px solid rgba(34, 43, 49, 0.16);
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-confidential-expiry-button .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  justify-self: end;
}

.bhrc-workspace-confidential-expiry-row time {
  color: #4f5b64;
  font-size: 0.92rem;
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.bhrc-workspace-confidential-expiry-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 28;
  display: grid;
  width: min(320px, 100%);
  max-height: 206px;
  overflow: auto;
  border: 1px solid #cfd7dd;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 32, 38, 0.14);
}

.bhrc-workspace-confidential-expiry-menu button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  background: #ffffff;
  color: #172026;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transform: none;
}

.bhrc-workspace-confidential-expiry-menu button:hover,
.bhrc-workspace-confidential-expiry-menu button:focus-visible,
.bhrc-workspace-confidential-expiry-menu button.is-selected {
  background: #f1f3f5;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-confidential-code-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 42px;
  min-width: 0;
}

.bhrc-workspace-confidential-code label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 30px;
  border: 0;
  color: #303b43;
  cursor: pointer;
  text-decoration: none;
}

.bhrc-workspace-confidential-code label span {
  border: 0;
  text-decoration: none;
}

.bhrc-workspace-confidential-code label.is-disabled {
  color: #9aa4ad;
  cursor: default;
}

.bhrc-workspace-confidential-code label.is-disabled span {
  color: #9aa4ad;
}

.bhrc-workspace-confidential-code label.is-disabled input {
  border-color: #c9d0d6;
  cursor: default;
}

.bhrc-workspace-confidential-code input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 17px;
  height: 17px;
  margin: 0;
  border: 1.5px solid #56616a;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.bhrc-workspace-confidential-code input[type="radio"]::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #172026;
  opacity: 0;
}

.bhrc-workspace-confidential-code input[type="radio"]:checked::after {
  opacity: 1;
}

.bhrc-workspace-confidential-code input[type="radio"]:focus-visible {
  outline: 2px solid rgba(38, 50, 58, 0.22);
  outline-offset: 2px;
}

.bhrc-workspace-confidential-panel footer {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 4px;
  border: 0;
}

.bhrc-workspace-confidential-panel footer button {
  min-height: 36px;
  padding: 0 22px;
  font: inherit;
  font-weight: 760;
}

.bhrc-workspace-confidential-panel footer button:hover,
.bhrc-workspace-confidential-panel footer button:focus-visible {
  transform: none;
}

.bhrc-workspace-confidential-badge,
.bhrc-workspace-reader-confidential {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3f4a52;
  font-size: 0.86rem;
  font-weight: 750;
}

.bhrc-workspace-confidential-badge .bhrc-workspace-icon,
.bhrc-workspace-reader-confidential .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-reader-confidential {
  margin: 0 0 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e1e6eb;
}

.bhrc-workspace-reader-message.is-confidential {
  -webkit-user-select: none;
  user-select: none;
}

.bhrc-workspace-reader-message.is-confidential .bhrc-workspace-reader-body {
  -webkit-user-select: none;
  user-select: none;
}

.bhrc-workspace-reader-toolbar button:disabled,
.bhrc-workspace-reader-actions button:disabled {
  opacity: 0.42;
  cursor: default;
}

.bhrc-workspace-reader-toolbar button:disabled:hover,
.bhrc-workspace-reader-actions button:disabled:hover {
  background: transparent;
  color: inherit;
}

.bhrc-workspace-compose.is-expanded textarea {
  min-height: 330px;
}

.bhrc-workspace-compose.is-expanded .bhrc-workspace-compose-editor {
  min-height: 330px;
}

.bhrc-workspace-compose-editor blockquote,
.bhrc-workspace-compose-editor .bhrc-compose-quote-inline,
.bhrc-workspace-reader-body .bhrc-compose-quote-inline {
  display: inline-block;
  margin: 2px 0;
  padding-left: 10px;
  border-left: 3px solid rgba(83, 94, 103, 0.34);
  color: inherit;
}

.bhrc-workspace-compose-formatbar {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: calc(100% - 30px);
  min-height: 38px;
  margin: 0 15px 6px;
  padding: 4px 7px;
  overflow-x: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #303b43;
  box-shadow: none;
}

.bhrc-workspace-compose-formatbar button,
.bhrc-workspace-compose-format-menu button {
  border: 0;
  background: transparent;
  color: #303b43;
  cursor: pointer;
  font: inherit;
  transform: none;
}

.bhrc-workspace-compose-formatbar button {
  display: inline-grid;
  place-items: center;
  min-width: 27px;
  height: 28px;
  padding: 0 7px;
  border-radius: 0;
  font-weight: 700;
  box-shadow: none;
}

.bhrc-workspace-compose-formatbar .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-compose-formatbar button:hover,
.bhrc-workspace-compose-formatbar button:focus-visible,
.bhrc-workspace-compose-format-menu button:hover,
.bhrc-workspace-compose-format-menu button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-compose-formatbar button.is-active {
  outline: 0;
  box-shadow: none;
}

.bhrc-workspace-compose-format-divider {
  width: 1px;
  height: 22px;
  margin: 0 4px;
  background: #cfd7dd;
}

.bhrc-workspace-compose-format-select,
.bhrc-workspace-compose-format-size,
.bhrc-workspace-compose-format-color,
.bhrc-workspace-compose-format-align {
  grid-auto-flow: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.bhrc-workspace-compose-format-select {
  min-width: 42px;
  font-weight: 500 !important;
}

.bhrc-workspace-compose-format-select i,
.bhrc-workspace-compose-format-size i,
.bhrc-workspace-compose-format-color i,
.bhrc-workspace-compose-format-align i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.bhrc-workspace-compose-format-italic {
  font-style: italic;
}

.bhrc-workspace-compose-format-underline {
  text-decoration: underline;
}

.bhrc-workspace-compose-format-color {
  position: relative;
}

.bhrc-workspace-compose-format-color::after {
  content: none;
  display: none;
  position: absolute;
  left: 7px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: currentColor;
}

.bhrc-workspace-compose-format-align span,
.bhrc-format-align-icon {
  display: grid;
  gap: 3px;
  width: 15px;
}

.bhrc-workspace-compose-format-align span::before,
.bhrc-workspace-compose-format-align span::after,
.bhrc-format-align-icon::before,
.bhrc-format-align-icon::after {
  content: "";
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.bhrc-workspace-compose-format-align span {
  grid-auto-rows: 1.5px;
}

.bhrc-workspace-compose-format-align span::before {
  width: 15px;
}

.bhrc-workspace-compose-format-align span::after {
  width: 10px;
}

.bhrc-workspace-compose-format-strike {
  position: relative;
}

.bhrc-workspace-compose-format-strike::after {
  content: none;
  display: none;
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1.5px;
  background: currentColor;
}

.bhrc-workspace-compose-format-clear span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.bhrc-workspace-compose-format-clear span::before,
.bhrc-workspace-compose-format-clear span::after {
  content: none;
  display: none;
  position: absolute;
  background: currentColor;
}

.bhrc-workspace-compose-format-align .bhrc-workspace-icon,
.bhrc-workspace-compose-format-clear .bhrc-workspace-icon {
  display: inline-block;
  gap: 0;
  width: 18px;
  height: 18px;
}

.bhrc-workspace-compose-format-align .bhrc-workspace-icon::before,
.bhrc-workspace-compose-format-align .bhrc-workspace-icon::after,
.bhrc-workspace-compose-format-clear .bhrc-workspace-icon::before,
.bhrc-workspace-compose-format-clear .bhrc-workspace-icon::after {
  content: none;
  display: none;
}

.bhrc-workspace-compose-format-clear span::before {
  left: 1px;
  right: 1px;
  top: 7px;
  height: 1.5px;
}

.bhrc-workspace-compose-format-clear span::after {
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: rotate(45deg);
}

.bhrc-workspace-compose-format-menu {
  position: fixed;
  z-index: 130;
  min-width: 216px;
  padding: 9px;
  border: 1px solid #d6dde2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(20, 30, 38, 0.16);
}

.bhrc-workspace-compose-format-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  text-align: left;
}

.bhrc-workspace-compose-format-menu button::before {
  content: "";
  width: 22px;
  margin-left: -4px;
}

.bhrc-workspace-compose-format-menu button.is-selected::before {
  content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
  color: #172026;
}

.bhrc-workspace-compose-format-menu button.is-selected::before {
  content: "\2713";
}

.bhrc-workspace-compose-format-menu button.is-wide {
  font-weight: inherit;
}

.bhrc-workspace-compose-format-menu button.is-narrow {
  letter-spacing: 0;
  transform: none;
  transform-origin: left center;
}

.bhrc-workspace-compose-size-menu {
  min-width: 250px;
}

.bhrc-workspace-compose-size-menu .is-small {
  font-size: 0.78rem;
}

.bhrc-workspace-compose-size-menu .is-large {
  font-size: 1.2rem;
}

.bhrc-workspace-compose-size-menu .is-huge {
  font-size: 1.7rem;
}

.bhrc-workspace-compose-color-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 324px;
}

.bhrc-workspace-compose-color-menu section {
  display: grid;
  gap: 8px;
}

.bhrc-workspace-compose-color-menu strong {
  color: #303b43;
  font-size: 0.88rem;
}

.bhrc-compose-color-grid {
  display: grid;
  grid-template-columns: repeat(7, 18px);
  gap: 4px;
}

.bhrc-compose-color-grid button {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid rgba(32, 37, 43, 0.2);
  border-radius: 2px;
}

.bhrc-compose-color-grid button::before {
  content: none;
  width: 0;
  margin: 0;
}

.bhrc-workspace-compose-align-menu {
  min-width: 54px;
  padding: 8px;
  justify-items: center;
}

.bhrc-workspace-compose-align-menu button {
  justify-content: center;
  width: 36px;
  min-width: 36px;
  min-height: 32px;
  padding: 0;
}

.bhrc-workspace-compose-align-menu button::before {
  content: none;
  width: 0;
  margin: 0;
}

.bhrc-format-align-icon {
  justify-items: start;
}

.bhrc-format-align-icon.is-center {
  justify-items: center;
}

.bhrc-format-align-icon.is-right {
  justify-items: end;
}

.bhrc-format-align-icon::before {
  width: 15px;
}

.bhrc-format-align-icon::after {
  width: 9px;
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-settings-auto-formatbar {
  display: flex;
  justify-self: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border-bottom: 1px solid #eef1f4;
  border-radius: 0;
  background: #ffffff;
}

.bhrc-workspace-compose-formatbar.bhrc-workspace-settings-auto-formatbar button {
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 3px;
  background: #ffffff;
}

.bhrc-workspace-settings-auto-editor > .bhrc-workspace-settings-auto-message.bhrc-workspace-compose-editor {
  height: auto;
  min-height: 132px;
  padding: 14px 12px;
  overflow: visible;
  overflow-wrap: anywhere;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  min-width: 0;
  padding: 12px;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu button {
  justify-content: flex-start;
  gap: 12px;
  width: auto;
  min-height: 34px;
  padding: 0;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu button::before {
  content: none;
  width: 0;
  margin: 0;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu .bhrc-workspace-settings-auto-more-label {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  min-width: 0;
  color: inherit;
  font-weight: 400;
  white-space: nowrap;
}

.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu .bhrc-workspace-settings-auto-more-label::before,
.bhrc-workspace-compose-format-menu.bhrc-workspace-settings-auto-more-menu .bhrc-workspace-settings-auto-more-label::after {
  content: none;
  display: none;
}

.bhrc-workspace-compose footer.bhrc-workspace-compose-actions {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 56px;
  padding: 8px 15px 11px;
  border-top: 0;
  background: #ffffff;
}

.bhrc-workspace-compose-send-group {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #9aa3ad;
  border-radius: 999px;
  background: #ffffff;
  color: #566174;
  box-shadow: none;
}

.bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send],
.bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-reader-compose-send] {
  min-width: 82px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 560;
  box-shadow: none;
}

.bhrc-workspace-compose-send-options {
  min-width: 32px;
  width: 34px;
  padding: 0;
  border: 0 !important;
  border-left: 1px solid rgba(32, 37, 43, 0.22) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit;
  font-weight: 560;
  box-shadow: none !important;
}

.bhrc-workspace-compose-send-group:hover,
.bhrc-workspace-compose-send-group:focus-within {
  border-color: #7f8894;
  background: #f4f5f6;
  color: #1f2937;
}

.bhrc-workspace-compose-send-options .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-compose-send-menu {
  position: fixed;
  z-index: 126;
  min-width: 226px;
  padding: 7px;
  border: 1px solid #d6dde2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(20, 30, 38, 0.16);
}

.bhrc-workspace-compose-send-menu button {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #172026;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.bhrc-workspace-compose-send-menu button:hover,
.bhrc-workspace-compose-send-menu button:focus-visible {
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.bhrc-workspace-compose-send-menu button .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
}

.bhrc-workspace-schedule-panel {
  position: fixed;
  z-index: 127;
  right: 42px;
  bottom: 88px;
  width: min(600px, calc(100vw - 32px));
}

.bhrc-workspace-schedule-card {
  padding: 24px;
  border: 1px solid #d6dde2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(20, 30, 38, 0.18);
}

.bhrc-workspace-schedule-card h2 {
  margin: 0 0 22px;
  color: #172026;
  font-size: 1.25rem;
  line-height: 1.25;
}

.bhrc-workspace-schedule-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(190px, 0.9fr);
  gap: 38px;
  align-items: start;
}

[data-standalone-schedule-panel] .bhrc-workspace-schedule-grid {
  grid-template-columns: minmax(210px, 1fr) minmax(190px, 0.9fr);
  gap: 38px;
}

.bhrc-workspace-schedule-calendar {
  color: #172026;
}

.bhrc-workspace-schedule-calendar-header,
.bhrc-workspace-schedule-calendar-nav,
.bhrc-workspace-schedule-weekdays,
.bhrc-workspace-schedule-days {
  display: grid;
  align-items: center;
}

.bhrc-workspace-schedule-calendar-header {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 800;
}

.bhrc-workspace-schedule-calendar-nav {
  grid-auto-flow: column;
  justify-content: end;
  gap: 6px;
  margin-right: 16px;
}

.bhrc-workspace-schedule-calendar-nav button,
.bhrc-workspace-schedule-day {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.bhrc-workspace-schedule-calendar-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  color: #7b8790;
}

.bhrc-workspace-schedule-calendar-nav button:hover,
.bhrc-workspace-schedule-calendar-nav button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-schedule-calendar-nav button:disabled,
.bhrc-workspace-schedule-calendar-nav button:disabled:hover,
.bhrc-workspace-schedule-calendar-nav button:disabled:focus-visible {
  color: #c5ccd2;
  cursor: default;
  outline: 0;
  box-shadow: none;
}

.bhrc-workspace-schedule-calendar-nav .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-schedule-day:hover,
.bhrc-workspace-schedule-day:focus-visible {
  background: transparent;
  color: #172026;
  outline: 1px solid rgba(34, 43, 49, 0.18);
}

.bhrc-workspace-schedule-weekdays,
.bhrc-workspace-schedule-days {
  grid-template-columns: repeat(7, 30px);
  gap: 7px;
}

.bhrc-workspace-schedule-weekdays {
  margin-bottom: 8px;
  color: #4d5962;
  font-size: 0.84rem;
}

.bhrc-workspace-schedule-weekdays span,
.bhrc-workspace-schedule-day {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.bhrc-workspace-schedule-day {
  position: relative;
  box-sizing: border-box;
  border: 0;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bhrc-workspace-schedule-day.is-muted {
  color: #a7b0b8;
}

.bhrc-workspace-schedule-day.is-disabled,
.bhrc-workspace-schedule-day:disabled {
  color: #c5ccd2;
  cursor: default;
}

.bhrc-workspace-schedule-day.is-disabled:hover,
.bhrc-workspace-schedule-day:disabled:hover,
.bhrc-workspace-schedule-day.is-disabled:focus-visible,
.bhrc-workspace-schedule-day:disabled:focus-visible {
  color: #c5ccd2;
  outline: 0;
}

.bhrc-workspace-schedule-day.is-selected {
  background: transparent;
  color: #172026;
  font-weight: 700;
}

.bhrc-workspace-schedule-day.is-selected::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid #7d878e;
  border-radius: 8px;
  pointer-events: none;
}

.bhrc-workspace-schedule-fields {
  display: grid;
  gap: 19px;
}

.bhrc-workspace-schedule-fields label {
  position: relative;
  display: grid;
  gap: 8px;
  color: #303b43;
  font-weight: 700;
}

.bhrc-workspace-schedule-fields label:first-child > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.bhrc-workspace-schedule-fields input {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #aeb7bf;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font: inherit;
  outline: 0;
}

.bhrc-workspace-schedule-fields input:focus {
  border-color: #7d878e;
  box-shadow: 0 0 0 2px rgba(125, 135, 142, 0.16);
}

.bhrc-workspace-schedule-time-list {
  position: absolute;
  z-index: 2;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 184px;
  overflow: auto;
  padding: 6px;
  border: 1px solid #d6dde2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 30, 38, 0.14);
}

.bhrc-workspace-schedule-time-list button {
  width: 100%;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #172026;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.bhrc-workspace-schedule-time-list button:hover,
.bhrc-workspace-schedule-time-list button:focus-visible {
  background: transparent;
  outline: 1px solid rgba(34, 43, 49, 0.16);
}

.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-time-list button:hover:not(:disabled),
.bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-time-list button:focus-visible:not(:disabled) {
  background: transparent;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #172026));
  outline: 0;
  box-shadow: none;
}

.bhrc-workspace-schedule-time-list button:disabled,
.bhrc-workspace-schedule-time-list button:disabled:hover,
.bhrc-workspace-schedule-time-list button:disabled:focus-visible {
  color: #c5ccd2;
  cursor: default;
  outline: 0;
}

.bhrc-workspace-schedule-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}

.bhrc-workspace-schedule-actions .bhrc-workspace-primary,
.bhrc-workspace-schedule-actions .bhrc-workspace-secondary {
  min-width: 96px;
  min-height: 34px;
  border-radius: 999px;
}

.bhrc-workspace-schedule-actions .bhrc-workspace-primary:disabled {
  color: #a8b0b8;
  cursor: default;
  opacity: 0.68;
}

@media (max-width: 720px) {
  .bhrc-workspace-schedule-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .bhrc-workspace-schedule-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [data-standalone-schedule-panel] .bhrc-workspace-schedule-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.bhrc-workspace-compose-tools {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  background: transparent;
  box-shadow: none;
}

.bhrc-workspace-compose-tool.is-active {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bhrc-workspace-compose .bhrc-workspace-attach-button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bhrc-workspace-compose .bhrc-workspace-attach-button > span:first-child {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-icon.is-attach-file {
  -webkit-mask-image: url("/static/icons/behindapp/attach-file.svg");
  mask-image: url("/static/icons/behindapp/attach-file.svg");
}

.bhrc-workspace-compose-discard {
  justify-self: end;
  font-size: 17px;
}

.bhrc-workspace-compose-discard .bhrc-workspace-icon,
.bhrc-workspace-reader-toolbar .bhrc-workspace-icon,
.bhrc-workspace-message-quick-actions .bhrc-workspace-icon,
.bhrc-workspace-message-delete-action .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-compose.is-minimized .bhrc-compose-minimize {
  opacity: 0.55;
}

.bhrc-workspace-compose-resize-handle {
  position: absolute;
  z-index: 2;
  background: transparent;
}

.bhrc-workspace-compose.is-minimized .bhrc-workspace-compose-resize-handle {
  display: none;
}

.bhrc-workspace-compose-resize-handle.is-n,
.bhrc-workspace-compose-resize-handle.is-s {
  left: 12px;
  right: 12px;
  height: 8px;
  cursor: ns-resize;
}

.bhrc-workspace-compose-resize-handle.is-n {
  top: -4px;
}

.bhrc-workspace-compose-resize-handle.is-s {
  bottom: -4px;
}

.bhrc-workspace-compose-resize-handle.is-e,
.bhrc-workspace-compose-resize-handle.is-w {
  top: 12px;
  bottom: 12px;
  width: 8px;
  cursor: ew-resize;
}

.bhrc-workspace-compose-resize-handle.is-e {
  right: -4px;
}

.bhrc-workspace-compose-resize-handle.is-w {
  left: -4px;
}

.bhrc-workspace-compose-resize-handle.is-ne,
.bhrc-workspace-compose-resize-handle.is-se,
.bhrc-workspace-compose-resize-handle.is-sw,
.bhrc-workspace-compose-resize-handle.is-nw {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-compose-resize-handle.is-ne {
  top: -6px;
  right: -6px;
  cursor: nesw-resize;
}

.bhrc-workspace-compose-resize-handle.is-se {
  right: -6px;
  bottom: -6px;
  cursor: nwse-resize;
}

.bhrc-workspace-compose-resize-handle.is-sw {
  bottom: -6px;
  left: -6px;
  cursor: nesw-resize;
}

.bhrc-workspace-compose-resize-handle.is-nw {
  top: -6px;
  left: -6px;
  cursor: nwse-resize;
}

@media (max-width: 700px) {
  .bhrc-workspace-compose,
  .bhrc-workspace-compose.is-expanded {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    min-height: min(560px, calc(100vh - 20px));
    max-height: calc(100vh - 20px);
  }

  .bhrc-workspace-compose footer.bhrc-workspace-compose-actions {
    grid-template-columns: auto 1fr auto;
  }
}

/* BehindApp authenticated workspace toast and density tail contract */
.bhrc-workspace-toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #243139;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.22);
  font-weight: 800;
}

.bhrc-workspace-toast[hidden] {
  display: none;
}

.bhrc-workspace-body[data-density="compact"] .bhrc-workspace-ribbon {
  padding-top: 4px;
  padding-bottom: 4px;
}

.bhrc-workspace-body[data-density="compact"] .bhrc-workspace-shell {
  grid-template-rows: 44px 32px 44px minmax(0, 1fr) auto;
}

.bhrc-workspace-body[data-density="compact"][data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-shell {
  grid-template-rows: 44px 32px minmax(0, 1fr) auto;
}

.bhrc-workspace-body[data-density="compact"] .bhrc-workspace-message-card {
  min-height: 62px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.bhrc-workspace-body[data-density="airy"] .bhrc-workspace-message-card {
  min-height: 92px;
  padding-top: 16px;
  padding-bottom: 16px;
}
/* /BehindApp authenticated workspace toast and density tail contract */

@media (max-width: 1100px) {
  .bhrc-workspace-topbar {
    grid-template-columns: 200px minmax(220px, 1fr) auto;
  }

  .bhrc-workspace-main {
    grid-template-columns: 224px minmax(260px, 340px) minmax(0, 1fr);
  }

  .bhrc-workspace-ribbon-button span {
    display: none;
  }
}

@media (max-width: 900px) {
  .bhrc-workspace-body {
    overflow: auto;
  }

  .bhrc-workspace-shell {
    min-height: 100vh;
    height: auto;
    grid-template-rows: auto auto auto auto auto;
  }

  .bhrc-workspace-topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .bhrc-workspace-search {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .bhrc-workspace-search.is-expanded {
    top: 12px;
    right: 12px;
    left: 12px;
    min-width: 0;
    grid-template-columns: 120px 38px minmax(0, 1fr) 38px 38px;
  }

  .bhrc-workspace-search-layer {
    width: calc(100vw - 24px);
  }

  .bhrc-workspace-top-actions {
    justify-content: flex-end;
    overflow-x: auto;
  }

  .bhrc-workspace-tabs,
  .bhrc-workspace-ribbon {
    padding-left: 12px;
    overflow-x: auto;
  }

  .bhrc-workspace-ribbon {
    margin-left: 0;
  }

  .bhrc-workspace-main {
    margin-left: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "rail nav"
      "rail list"
      "rail reader";
  }

  .bhrc-workspace-rail {
    grid-area: rail;
    position: static;
    width: auto;
  }

  .bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-inner {
    width: min(100% - 32px, 1070px);
    padding-top: 16px;
  }

  .bhrc-workspace-nav {
    grid-area: nav;
    max-height: 240px;
    border-right: 0;
    border-bottom: 1px solid #dce2e7;
  }

  .bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-main {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-nav {
    display: none;
  }

  .bhrc-workspace-list-pane {
    grid-area: list;
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid #dce2e7;
  }

  .bhrc-workspace-reader {
    grid-area: reader;
    min-height: 420px;
  }

  .bhrc-workspace-qr-reader {
    grid-column: 2;
    grid-row: 2 / span 2;
    min-height: 520px;
  }

  .bhrc-workspace-qr-blocks {
    min-height: 220px;
  }

  .bhrc-workspace-body.is-nav-collapsed .bhrc-workspace-qr-reader {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}

@media (max-width: 560px) {
  .bhrc-workspace-search {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .bhrc-workspace-search.is-expanded {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .bhrc-workspace-search.is-expanded .bhrc-workspace-scope,
  .bhrc-workspace-search.is-expanded .bhrc-workspace-search-back,
  .bhrc-workspace-search.is-expanded .bhrc-workspace-search-submit {
    display: none;
  }

  .bhrc-workspace-filter-panel {
    padding: 18px;
  }

  .bhrc-workspace-filter-row,
  .bhrc-workspace-filter-date-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bhrc-workspace-filter-actions {
    grid-template-columns: 1fr;
  }

  .bhrc-workspace-qr-detail-grid {
    grid-template-columns: 1fr;
  }

  .bhrc-workspace-qr-detail-grid dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .bhrc-workspace-qr-detail-grid dd {
    padding-top: 0;
  }

  .bhrc-workspace-qr-transaction {
    grid-template-columns: 1fr;
  }

  .bhrc-workspace-account-chip {
    max-width: 100%;
  }

  .bhrc-workspace-ribbon-panel {
    min-width: max-content;
  }

  .bhrc-workspace-reader {
    padding: 20px;
  }

  .bhrc-workspace-reader-welcome h1 {
    font-size: 1.55rem;
  }

  .bhrc-workspace-compose {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }
}
/* /BehindApp authenticated workspace */





@media (max-width: 1100px) {
  .bhrc-workspace-balanced-ribbon .bhrc-workspace-primary > span:not(.bhrc-workspace-icon),
  .bhrc-workspace-balanced-ribbon .bhrc-workspace-ribbon-button > span:not(.bhrc-workspace-icon) {
    display: inline;
  }
}




.bhrc-workspace-body[data-bhrc-theme-accent="blue"] {
  --bhrc-workspace-theme-accent: #2563eb;
  --bhrc-workspace-theme-accent-soft: rgba(37, 99, 235, 0.13);
}

.bhrc-workspace-body[data-bhrc-theme-accent="cyan"] {
  --bhrc-workspace-theme-accent: #0891b2;
  --bhrc-workspace-theme-accent-soft: rgba(8, 145, 178, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="green"] {
  --bhrc-workspace-theme-accent: #16834a;
  --bhrc-workspace-theme-accent-soft: rgba(22, 131, 74, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="gold"] {
  --bhrc-workspace-theme-accent: #b7791f;
  --bhrc-workspace-theme-accent-soft: rgba(183, 121, 31, 0.16);
}

.bhrc-workspace-body[data-bhrc-theme-accent="rose"] {
  --bhrc-workspace-theme-accent: #be123c;
  --bhrc-workspace-theme-accent-soft: rgba(190, 18, 60, 0.12);
}

.bhrc-workspace-body[data-bhrc-theme-accent="plum"] {
  --bhrc-workspace-theme-accent: #7c3aed;
  --bhrc-workspace-theme-accent-soft: rgba(124, 58, 237, 0.12);
}

.bhrc-workspace-body[data-bhrc-theme-accent="sky"] {
  --bhrc-workspace-theme-accent: #0369a1;
  --bhrc-workspace-theme-accent-soft: rgba(3, 105, 161, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="teal"] {
  --bhrc-workspace-theme-accent: #0f766e;
  --bhrc-workspace-theme-accent-soft: rgba(15, 118, 110, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="emerald"] {
  --bhrc-workspace-theme-accent: #047857;
  --bhrc-workspace-theme-accent-soft: rgba(4, 120, 87, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="lime"] {
  --bhrc-workspace-theme-accent: #4d7c0f;
  --bhrc-workspace-theme-accent-soft: rgba(77, 124, 15, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="amber"] {
  --bhrc-workspace-theme-accent: #b45309;
  --bhrc-workspace-theme-accent-soft: rgba(180, 83, 9, 0.15);
}

.bhrc-workspace-body[data-bhrc-theme-accent="orange"] {
  --bhrc-workspace-theme-accent: #c2410c;
  --bhrc-workspace-theme-accent-soft: rgba(194, 65, 12, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-accent="red"] {
  --bhrc-workspace-theme-accent: #b91c1c;
  --bhrc-workspace-theme-accent-soft: rgba(185, 28, 28, 0.13);
}

.bhrc-workspace-body[data-bhrc-theme-accent="pink"] {
  --bhrc-workspace-theme-accent: #be185d;
  --bhrc-workspace-theme-accent-soft: rgba(190, 24, 93, 0.13);
}

.bhrc-workspace-body[data-bhrc-theme-accent="violet"] {
  --bhrc-workspace-theme-accent: #6d28d9;
  --bhrc-workspace-theme-accent-soft: rgba(109, 40, 217, 0.13);
}

.bhrc-workspace-body[data-bhrc-theme-accent="indigo"] {
  --bhrc-workspace-theme-accent: #4338ca;
  --bhrc-workspace-theme-accent-soft: rgba(67, 56, 202, 0.13);
}

.bhrc-workspace-body[data-bhrc-theme-accent="brown"] {
  --bhrc-workspace-theme-accent: #92400e;
  --bhrc-workspace-theme-accent-soft: rgba(146, 64, 14, 0.14);
}

.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] {
  --bhrc-workspace-theme-canvas: #f4f4f1;
  --bhrc-workspace-theme-canvas-size: auto, 512px 512px;
  --bhrc-workspace-theme-canvas-repeat: repeat, repeat;
  --bhrc-workspace-theme-canvas-position: 0 0, 0 0;
}

.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-canvas^="grunge-"] {
  --bhrc-workspace-theme-canvas: #11181e;
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-01"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-01.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-02"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-02.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-03"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-03.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-04"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-04.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-05"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-05.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-06"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-06.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-07"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-07.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-08"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-08.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-09"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-09.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-10"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("/static/behindapp/textures/grunge/grunge-10.webp?v=bhrc-grunge-v1");
}

.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-canvas^="grunge-"] {
  --bhrc-workspace-theme-canvas-layer: linear-gradient(rgba(13, 18, 23, 0.79), rgba(13, 18, 23, 0.79)), var(--bhrc-workspace-theme-canvas-image);
}

.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-01"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-01.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-02"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-02.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-03"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-03.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-04"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-04.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-05"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-05.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-06"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-06.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-07"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-07.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-08"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-08.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-09"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-09.webp?v=bhrc-grunge-v1"); }
.bhrc-workspace-body[data-bhrc-theme-canvas="grunge-10"] { --bhrc-workspace-theme-canvas-image: url("/static/behindapp/textures/grunge/grunge-10.webp?v=bhrc-grunge-v1"); }

.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-reader,
.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-list-pane,
.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-body,
.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-editor {
  background-color: var(--bhrc-workspace-theme-canvas);
  background-image: var(--bhrc-workspace-theme-canvas-layer);
  background-position: var(--bhrc-workspace-theme-canvas-position);
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat);
  background-size: var(--bhrc-workspace-theme-canvas-size);
}

.bhrc-workspace-body .bhrc-workspace-tabs button.active,
.bhrc-workspace-body .bhrc-workspace-settings-button.is-active,
.bhrc-workspace-body .bhrc-workspace-rail button.active,
.bhrc-workspace-body .bhrc-workspace-search-filter:hover,
.bhrc-workspace-body .bhrc-workspace-search-submit:hover {
  color: var(--bhrc-workspace-theme-accent);
}

.bhrc-workspace-body .bhrc-workspace-tabs button.active {
  box-shadow: inset 0 -2px 0 var(--bhrc-workspace-theme-accent);
}

.bhrc-workspace-body .bhrc-workspace-search:focus-within,
.bhrc-workspace-body .bhrc-workspace-help-search:focus-within,
.bhrc-workspace-body .bhrc-workspace-settings-language-time-field select:focus {
  border-color: var(--bhrc-workspace-theme-accent);
  box-shadow: 0 0 0 2px var(--bhrc-workspace-theme-accent-soft);
}

.bhrc-workspace-body.is-workspace-dark {
  background: #101418;
  color: #e5e9ed;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-topbar,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-tabs,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-nav,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-list-pane,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-side-panel,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-detail,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-panel {
  border-color: #303943;
  background-color: #151b21;
  color: #e5e9ed;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-nav,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail {
  background-color: #11171d;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-search,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-help-search,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-signature-select,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-import-dialog,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-export-dialog {
  border-color: #3a4652;
  background-color: #10161c;
  color: #e5e9ed;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-detail-header,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-header,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-primary,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-secondary,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-account-section,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-account-row,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-appearance-section,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-section,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-table,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-row {
  border-color: #303943;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-detail-header h3,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-appearance-section h4,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-section h4,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-row dt,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-row dd,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-appearance-theme-block h5,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-button,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-button,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-brand,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail-label {
  color: #e5e9ed;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-appearance-section p,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-search input,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-account-action-row p {
  color: #b8c1ca;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-about-table {
  background: #11171d;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-canonical-action {
  color: #dce3ea;
  border-color: #67727d;
  background:
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(29, 37, 45, 0.96), rgba(19, 25, 31, 0.92));
}

/* BehindApp dark appearance inversion guard */
.bhrc-workspace-body.is-workspace-dark {
  --bhrc-dark-bg: #11171d;
  --bhrc-dark-panel: #151d24;
  --bhrc-dark-elevated: #18232c;
  --bhrc-dark-field: #10161c;
  --bhrc-dark-line: #303943;
  --bhrc-dark-line-strong: #46535f;
  --bhrc-dark-text: #edf2f6;
  --bhrc-dark-muted: #b8c5cf;
  --bhrc-dark-disabled: rgba(237, 242, 246, 0.34);
  --bhrc-workspace-settings-line: var(--bhrc-dark-line);
  color-scheme: dark;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-app,
  .bhrc-workspace-main,
  .bhrc-workspace-topbar,
  .bhrc-workspace-nav,
  .bhrc-workspace-ribbon,
  .bhrc-workspace-sidebar,
  .bhrc-workspace-list,
  .bhrc-workspace-reader,
  .bhrc-workspace-reader-empty,
  .bhrc-workspace-footer,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-header,
  .bhrc-workspace-settings-layout,
  .bhrc-workspace-settings-column,
  .bhrc-workspace-settings-primary,
  .bhrc-workspace-settings-secondary,
  .bhrc-workspace-settings-subsection,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-settings-detail-view,
  .bhrc-workspace-settings-detail-header,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-account-section,
  .bhrc-workspace-settings-account-row,
  .bhrc-workspace-settings-signature-defaults,
  .bhrc-workspace-settings-signature-list,
  .bhrc-workspace-settings-signature-row,
  .bhrc-workspace-settings-signature-empty,
  .bhrc-workspace-settings-category-table,
  .bhrc-workspace-settings-category-head,
  .bhrc-workspace-settings-category-row,
  .bhrc-workspace-settings-storage-card,
  .bhrc-workspace-settings-storage-table,
  .bhrc-workspace-settings-storage-head,
  .bhrc-workspace-settings-storage-row,
  .bhrc-workspace-settings-import-section,
  .bhrc-workspace-settings-export-section,
  .bhrc-workspace-settings-import-batch,
  .bhrc-workspace-settings-export-batch-row,
  .bhrc-workspace-category-menu,
  .bhrc-workspace-category-search,
  .bhrc-workspace-category-custom-row,
  .bhrc-workspace-category-edit-field,
  .bhrc-workspace-import-dialog,
  .bhrc-workspace-import-source,
  .bhrc-workspace-import-source-content,
  .bhrc-workspace-import-status,
  .bhrc-workspace-export-config,
  .bhrc-workspace-export-field,
  .bhrc-workspace-export-picker,
  .bhrc-workspace-export-format-options,
  .bhrc-workspace-export-format-radio,
  .bhrc-workspace-category-edit-dialog,
  .bhrc-workspace-category-delete-dialog,
  .bhrc-workspace-signature-delete-dialog,
  .bhrc-workspace-signature-dialog,
  .bhrc-workspace-signature-editor-card,
  .bhrc-workspace-contact-card,
  .bhrc-workspace-contact-card-fixed,
  .bhrc-workspace-contact-card-scroll,
  .bhrc-workspace-contact-modal,
  .bhrc-workspace-contact-modal-content,
  .bhrc-workspace-contact-edit-modal,
  .bhrc-workspace-contact-edit-body,
  .bhrc-workspace-contact-edit-footer,
  .bhrc-workspace-contact-edit-section,
  .bhrc-workspace-contact-edit-field,
  .bhrc-workspace-contact-edit-category-panel,
  .bhrc-workspace-contact-message-card,
  .bhrc-workspace-contact-message,
  .bhrc-workspace-contact-tabs,
  .bhrc-workspace-reader-fullscreen-layer,
  .bhrc-workspace-reader-fullscreen-bar,
  .bhrc-workspace-schedule-card,
  .bhrc-workspace-compose,
  .bhrc-workspace-compose-header,
  .bhrc-workspace-compose-fields,
  .bhrc-workspace-compose-actions,
  .bhrc-workspace-compose-send-group,
  .bhrc-workspace-compose-tools,
  .bhrc-workspace-compose-link-dialog,
  .bhrc-workspace-compose-emoji-panel,
  .bhrc-workspace-compose-emoji-search,
  .bhrc-workspace-compose-emoji-categories,
  .bhrc-workspace-rule-folder-list
) {
  background-color: var(--bhrc-dark-panel) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-search-layer,
  .bhrc-workspace-search-results,
  .bhrc-workspace-scope,
  .bhrc-workspace-filter-panel,
  .bhrc-workspace-filter-modal,
  .bhrc-workspace-menu,
  .bhrc-workspace-category-menu,
  .bhrc-workspace-profile-menu,
  .bhrc-workspace-profile-panel,
  .bhrc-workspace-signature-default-menu,
  .bhrc-workspace-settings-storage-empty-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-compose-send-menu,
  .bhrc-workspace-compose-format-menu,
  .bhrc-workspace-compose-size-menu,
  .bhrc-workspace-compose-color-menu,
  .bhrc-workspace-compose-align-menu,
  .bhrc-workspace-compose-emoji-panel,
  .bhrc-workspace-settings-auto-more-menu,
  .bhrc-workspace-signature-more-menu,
  .bhrc-workspace-schedule-time-list,
  .bhrc-workspace-contact-menu,
  .bhrc-workspace-contact-edit-category-panel,
  .bhrc-workspace-contact-edit-menu,
  .bhrc-workspace-search-dropdown,
  .bhrc-workspace-context-menu
) {
  background-color: var(--bhrc-dark-elevated) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line-strong) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.44) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-import-modal,
  .bhrc-workspace-category-edit-modal,
  .bhrc-workspace-category-delete-modal,
  .bhrc-workspace-signature-modal,
  .bhrc-workspace-signature-delete-modal,
  .bhrc-workspace-contact-modal-layer,
  .bhrc-workspace-contact-edit-layer,
  .bhrc-workspace-schedule-panel
) {
  background: rgba(0, 0, 0, 0.58) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-title,
  .bhrc-workspace-brand,
  .bhrc-workspace-top-greeting,
  .bhrc-workspace-tab,
  .bhrc-workspace-ribbon button:not(:disabled),
  .bhrc-workspace-folder strong,
  .bhrc-workspace-folder em,
  .bhrc-workspace-message-title,
  .bhrc-workspace-message-sender,
  .bhrc-workspace-message-date,
  .bhrc-workspace-settings-panel h2,
  .bhrc-workspace-settings-panel h3,
  .bhrc-workspace-settings-panel h4,
  .bhrc-workspace-settings-panel h5,
  .bhrc-workspace-settings-panel strong,
  .bhrc-workspace-settings-panel label,
  .bhrc-workspace-settings-panel button:not(:disabled),
  .bhrc-workspace-settings-panel a,
  .bhrc-workspace-import-dialog h3,
  .bhrc-workspace-import-dialog strong,
  .bhrc-workspace-export-config h3,
  .bhrc-workspace-export-config strong,
  .bhrc-workspace-export-format-radio,
  .bhrc-workspace-category-menu strong,
  .bhrc-workspace-category-menu button:not(:disabled),
  .bhrc-workspace-category-edit-dialog h3,
  .bhrc-workspace-category-delete-dialog h3,
  .bhrc-workspace-signature-dialog h3,
  .bhrc-workspace-signature-delete-dialog h3,
  .bhrc-workspace-contact-card h3,
  .bhrc-workspace-contact-modal h2,
  .bhrc-workspace-contact-edit-modal h3,
  .bhrc-workspace-contact-edit-modal label,
  .bhrc-workspace-contact-edit-modal button:not(:disabled),
  .bhrc-workspace-contact-message-card strong,
  .bhrc-workspace-schedule-card h2,
  .bhrc-workspace-compose h2,
  .bhrc-workspace-compose label,
  .bhrc-workspace-compose button:not(:disabled)
) {
  color: var(--bhrc-dark-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-muted,
  .bhrc-workspace-message-preview,
  .bhrc-workspace-message-chip,
  .bhrc-workspace-settings-panel p,
  .bhrc-workspace-settings-panel small,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-signature-empty-inner p,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-storage-total span,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-storage-total small,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-import-batch-meta,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-import-file-meta,
  .bhrc-workspace-settings-panel .bhrc-workspace-settings-export-batch-meta,
  .bhrc-workspace-import-dialog p,
  .bhrc-workspace-export-config p,
  .bhrc-workspace-export-option em,
  .bhrc-workspace-category-menu span,
  .bhrc-workspace-category-delete-dialog p,
  .bhrc-workspace-signature-delete-dialog p,
  .bhrc-workspace-contact-card small,
  .bhrc-workspace-contact-modal p,
  .bhrc-workspace-contact-message-card p,
  .bhrc-workspace-contact-message-card span,
  .bhrc-workspace-contact-detail-row span,
  .bhrc-workspace-compose small
) {
  color: var(--bhrc-dark-muted) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-list:empty::after {
  color: var(--bhrc-dark-muted) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-searchbox,
  .bhrc-workspace-settings-search,
  .bhrc-workspace-settings-search input,
  .bhrc-workspace-settings-language-time-field select,
  .bhrc-workspace-settings-signature-select,
  .bhrc-workspace-category-edit-label input,
  .bhrc-workspace-category-edit-label select,
  .bhrc-workspace-import-folder-picker > button,
  .bhrc-workspace-export-picker > button,
  .bhrc-workspace-schedule-fields input,
  .bhrc-workspace-settings-auto-schedule input,
  .bhrc-workspace-settings-auto-subject,
  .bhrc-workspace-settings-auto-date-field input,
  .bhrc-workspace-signature-editor-card input,
  .bhrc-workspace-compose input,
  .bhrc-workspace-compose textarea,
  .bhrc-workspace-compose select,
  .bhrc-workspace-filter-row input[type="text"],
  .bhrc-workspace-category-search input,
  .bhrc-workspace-category-edit-field input,
  .bhrc-workspace-contact-edit-field input,
  .bhrc-workspace-contact-edit-field textarea,
  .bhrc-workspace-contact-edit-category-panel input,
  .bhrc-workspace-compose-link-field input,
  .bhrc-workspace-compose-emoji-search input,
  .bhrc-workspace-reader-forward-recipients-text input
) {
  background-color: var(--bhrc-dark-field) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line-strong) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
  textarea,
  select
)::placeholder,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-searchbox::placeholder,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-search input::placeholder,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-editor-card input::placeholder,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-auto-message:empty::before,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-editor:empty::before,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-editor:empty::before {
  color: rgba(237, 242, 246, 0.58) !important;
  opacity: 1 !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-category-head,
  .bhrc-workspace-settings-category-row,
  .bhrc-workspace-settings-storage-head,
  .bhrc-workspace-settings-storage-row,
  .bhrc-workspace-settings-import-file-row,
  .bhrc-workspace-settings-export-batch-row,
  .bhrc-workspace-signature-default-option,
  .bhrc-workspace-category-shortcut-option,
  .bhrc-workspace-import-folder-option,
  .bhrc-workspace-export-option,
  .bhrc-workspace-search-result,
  .bhrc-workspace-search-history button,
  .bhrc-workspace-menu button,
  .bhrc-workspace-menu a,
  .bhrc-workspace-profile-actions button,
  .bhrc-workspace-profile-identity-row
) {
  background-color: transparent !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-category-row:hover,
  .bhrc-workspace-settings-storage-row:hover,
  .bhrc-workspace-settings-import-file-row:hover,
  .bhrc-workspace-settings-export-batch-row:hover,
  .bhrc-workspace-signature-default-option:hover,
  .bhrc-workspace-signature-default-option:focus-visible,
  .bhrc-workspace-category-shortcut-option:hover,
  .bhrc-workspace-category-shortcut-option:focus-visible,
  .bhrc-workspace-import-folder-option:hover,
  .bhrc-workspace-import-folder-option:focus-visible,
  .bhrc-workspace-export-option:hover,
  .bhrc-workspace-export-option:focus-visible,
  .bhrc-workspace-search-result:hover,
  .bhrc-workspace-search-result:focus-visible,
  .bhrc-workspace-search-history button:hover,
  .bhrc-workspace-search-history button:focus-visible,
  .bhrc-workspace-menu button:hover,
  .bhrc-workspace-menu button:focus-visible,
  .bhrc-workspace-menu a:hover,
  .bhrc-workspace-menu a:focus-visible,
  .bhrc-workspace-profile-actions button:hover,
  .bhrc-workspace-profile-actions button:focus-visible
) {
  background-color: var(--bhrc-dark-elevated) !important;
  color: #ffffff !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-compose-formatbar,
  .bhrc-workspace-settings-auto-formatbar,
  .bhrc-workspace-signature-formatbar,
  .bhrc-workspace-settings-auto-editor,
  .bhrc-workspace-settings-auto-message,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-compose-editor,
  .bhrc-workspace-compose-body
) {
  background-color: var(--bhrc-dark-field) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-compose-formatbar button,
  .bhrc-workspace-settings-auto-formatbar button,
  .bhrc-workspace-signature-formatbar button,
  .bhrc-workspace-compose-tool,
  .bhrc-workspace-settings-auto-more,
  .bhrc-workspace-signature-dialog button:not(:disabled),
  .bhrc-workspace-settings-panel .bhrc-workspace-icon-button,
  .bhrc-workspace-reader-actions button,
  .bhrc-workspace-message-quick-actions button,
  .bhrc-workspace-message-delete-action,
  .bhrc-workspace-reader-fullscreen-close
) {
  background-color: transparent !important;
  color: var(--bhrc-dark-text) !important;
  border-color: transparent !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-compose-formatbar button:hover,
  .bhrc-workspace-compose-formatbar button:focus-visible,
  .bhrc-workspace-settings-auto-formatbar button:hover,
  .bhrc-workspace-settings-auto-formatbar button:focus-visible,
  .bhrc-workspace-signature-formatbar button:hover,
  .bhrc-workspace-signature-formatbar button:focus-visible,
  .bhrc-workspace-compose-tool:hover,
  .bhrc-workspace-compose-tool:focus-visible,
  .bhrc-workspace-reader-actions button:hover,
  .bhrc-workspace-reader-actions button:focus-visible,
  .bhrc-workspace-message-quick-actions button:hover,
  .bhrc-workspace-message-quick-actions button:focus-visible
) {
  background-color: transparent !important;
  color: #ffffff !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  button:disabled,
  .bhrc-workspace-settings-panel button:disabled,
  .bhrc-workspace-compose-formatbar button:disabled,
  .bhrc-workspace-settings-auto-formatbar button:disabled,
  .bhrc-workspace-signature-formatbar button:disabled,
  .bhrc-workspace-folder.is-disabled,
  .bhrc-workspace-category-shortcut-option:disabled,
  .bhrc-workspace-import-folder-option:disabled,
  .bhrc-workspace-export-option:disabled
) {
  background-color: transparent !important;
  color: var(--bhrc-dark-disabled) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-save,
  .bhrc-workspace-settings-login-action,
  .bhrc-workspace-primary
):not(:disabled) {
  background-color: var(--bhrc-dark-text) !important;
  color: var(--bhrc-dark-bg) !important;
  border-color: var(--bhrc-dark-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-delete,
  .bhrc-workspace-secondary,
  .bhrc-workspace-settings-create-account-action,
  .bhrc-workspace-import-actions .bhrc-workspace-settings-auto-delete,
  .bhrc-workspace-signature-footer-actions .bhrc-workspace-settings-auto-delete
):not(:disabled) {
  background-color: transparent !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line-strong) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-check input[type="checkbox"],
  .bhrc-workspace-filter-row input[type="checkbox"],
  .bhrc-workspace-filter-panel input[type="checkbox"],
  .bhrc-workspace-filter-modal input[type="checkbox"],
  .bhrc-workspace-export-format-radio input[type="radio"],
  .bhrc-workspace-category-edit-label input[type="checkbox"],
  .bhrc-workspace-signature-options input[type="checkbox"],
  .bhrc-workspace-message-select,
  .bhrc-workspace-transfer-select
) {
  background-color: var(--bhrc-dark-field) !important;
  border-color: var(--bhrc-dark-line-strong) !important;
  color: var(--bhrc-dark-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-check input[type="checkbox"]:checked,
  .bhrc-workspace-filter-row input[type="checkbox"]:checked,
  .bhrc-workspace-filter-panel input[type="checkbox"]:checked,
  .bhrc-workspace-filter-modal input[type="checkbox"]:checked,
  .bhrc-workspace-signature-options input[type="checkbox"]:checked
) {
  background-color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-switch,
  .bhrc-workspace-settings-toggle,
  .bhrc-workspace-toggle
) {
  background-color: var(--bhrc-dark-line-strong) !important;
  border-color: var(--bhrc-dark-line-strong) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch,
  .bhrc-workspace-settings-toggle.is-on,
  .bhrc-workspace-toggle.is-on
) {
  background-color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch::after,
  .bhrc-workspace-settings-auto-switch::after
) {
  background-color: var(--bhrc-dark-bg) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-icon,
  .bhrc-workspace-search-glyph,
  .bhrc-workspace-search-filter .bhrc-workspace-icon,
  .bhrc-workspace-search-submit .bhrc-workspace-icon,
  .bhrc-workspace-settings-panel .bhrc-workspace-icon,
  .bhrc-workspace-import-dialog .bhrc-workspace-icon,
  .bhrc-workspace-export-config .bhrc-workspace-icon,
  .bhrc-workspace-contact-card .bhrc-workspace-icon,
  .bhrc-workspace-reader-actions .bhrc-workspace-icon,
  .bhrc-workspace-message-quick-actions .bhrc-workspace-icon
) {
  color: currentColor !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-rule,
  .bhrc-workspace-settings-storage-rule,
  .bhrc-workspace-settings-import-rule,
  .bhrc-workspace-settings-export-rule,
  .bhrc-workspace-settings-import-progress-rule,
  .bhrc-workspace-settings-export-progress-rule,
  .bhrc-workspace-compose-divider,
  .bhrc-workspace-compose-format-divider,
  hr
) {
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-footer,
  .bhrc-workspace-footer a,
  .bhrc-workspace-footer button,
  .bhrc-workspace-footer strong
) {
  background-color: var(--bhrc-dark-bg) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-message,
  .bhrc-workspace-message-row,
  .bhrc-workspace-message-card
) {
  background-color: var(--bhrc-dark-panel) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-message:hover,
  .bhrc-workspace-message-row:hover,
  .bhrc-workspace-message-card:hover,
  .bhrc-workspace-message.is-selected,
  .bhrc-workspace-message.active
) {
  background-color: var(--bhrc-dark-elevated) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-folder:hover,
  .bhrc-workspace-folder:focus-visible,
  .bhrc-workspace-folder:focus-within
) {
  background-color: var(--bhrc-dark-bg) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-reader-title,
  .bhrc-workspace-reader-card,
  .bhrc-workspace-reader-header
) {
  background-color: var(--bhrc-dark-panel) !important;
  color: var(--bhrc-dark-text) !important;
  border-color: var(--bhrc-dark-line) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-reader-document,
  .bhrc-workspace-reader-body
) {
  color: var(--bhrc-dark-text);
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-import-empty,
  .bhrc-workspace-settings-export-empty,
  .bhrc-workspace-empty-state
) {
  background: transparent !important;
  color: var(--bhrc-dark-text) !important;
  border-color: transparent !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-settings-storage-bar,
  .bhrc-workspace-settings-import-progress-track,
  .bhrc-workspace-settings-export-progress-track
) {
  background-color: rgba(237, 242, 246, 0.16) !important;
  border-color: var(--bhrc-dark-line) !important;
}
/* /BehindApp dark appearance inversion guard */

/* BehindApp workspace theme contract
   Light mode is canonical for structure. Dark mode may only swap semantic
   color tokens; layout, media, icon geometry and control spacing stay shared. */
.bhrc-workspace-body {
  --bhrc-theme-bg: #f6f7f7;
  --bhrc-theme-panel: #ffffff;
  --bhrc-theme-surface: #ffffff;
  --bhrc-theme-field: #ffffff;
  --bhrc-theme-elevated: #f4f5f6;
  --bhrc-theme-line: #dce2e7;
  --bhrc-theme-line-strong: #9aa3ad;
  --bhrc-theme-text: #172026;
  --bhrc-theme-muted: #737d83;
  --bhrc-theme-disabled: #9aa3ad;
  --bhrc-theme-icon: #3f4a52;
  --bhrc-theme-shadow-popover: 0 16px 34px rgba(20, 30, 38, 0.14);
  --bhrc-theme-shadow-panel: 0 18px 40px rgba(23, 32, 38, 0.16);
  --bhrc-theme-scrollbar-track: #ffffff;
  --bhrc-theme-scrollbar-thumb: #b7c0c8;
  --bhrc-theme-scrollbar-thumb-hover: #929da6;
  color-scheme: light;
}

.bhrc-workspace-body.is-workspace-dark {
  --bhrc-theme-bg: #11171d;
  --bhrc-theme-panel: #11171d;
  --bhrc-theme-surface: #11171d;
  --bhrc-theme-field: #11171d;
  --bhrc-theme-elevated: #11171d;
  --bhrc-theme-line: #303943;
  --bhrc-theme-line-strong: #46535f;
  --bhrc-theme-text: #edf2f6;
  --bhrc-theme-muted: #c2ccd5;
  --bhrc-theme-disabled: rgba(237, 242, 246, 0.38);
  --bhrc-theme-icon: #edf2f6;
  --bhrc-theme-shadow-popover: 0 18px 42px rgba(0, 0, 0, 0.34);
  --bhrc-theme-shadow-panel: 0 18px 42px rgba(0, 0, 0, 0.38);
  --bhrc-theme-scrollbar-track: #11171d;
  --bhrc-theme-scrollbar-thumb: #46535f;
  --bhrc-theme-scrollbar-thumb-hover: #5f6d7a;
  --bhrc-dark-bg: var(--bhrc-theme-bg);
  --bhrc-dark-panel: var(--bhrc-theme-panel);
  --bhrc-dark-elevated: var(--bhrc-theme-elevated);
  --bhrc-dark-field: var(--bhrc-theme-field);
  --bhrc-dark-line: var(--bhrc-theme-line);
  --bhrc-dark-line-strong: var(--bhrc-theme-line-strong);
  --bhrc-dark-text: var(--bhrc-theme-text);
  --bhrc-dark-muted: var(--bhrc-theme-muted);
  --bhrc-dark-disabled: var(--bhrc-theme-disabled);
  color-scheme: dark;
}

.bhrc-workspace-body :where(
  [data-bhrc-profile-avatar-display].has-photo,
  .bhrc-workspace-profile-photo.has-photo,
  .bhrc-workspace-profile-avatar.has-photo,
  .bhrc-workspace-avatar.has-photo,
  .bhrc-workspace-reader-avatar.has-photo,
  .bhrc-workspace-contact-avatar.has-photo
) {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: transparent !important;
  filter: none !important;
  font-size: 0 !important;
  mix-blend-mode: normal !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-send-group,
  .bhrc-workspace-reader-compose-send-group
) {
  background: var(--bhrc-theme-field) !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-primary[data-bhrc-compose-open],
  .bhrc-workspace-primary[data-bhrc-compose-open]:hover,
  .bhrc-workspace-primary[data-bhrc-compose-open]:active,
  .bhrc-workspace-primary[data-bhrc-compose-open]:focus,
  .bhrc-workspace-primary[data-bhrc-compose-open]:focus-visible,
  .bhrc-workspace-primary[data-bhrc-compose-send],
  .bhrc-workspace-primary[data-bhrc-compose-send]:hover,
  .bhrc-workspace-primary[data-bhrc-compose-send]:focus-visible,
  .bhrc-workspace-reader-compose-send,
  .bhrc-workspace-reader-compose-send:hover,
  .bhrc-workspace-reader-compose-send:focus-visible,
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send],
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:hover,
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:focus-visible,
  .bhrc-workspace-compose-send-options,
  .bhrc-workspace-compose-send-options:hover,
  .bhrc-workspace-compose-send-options:focus-visible
) {
  background: var(--bhrc-theme-field) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-send-options {
  border-left-color: var(--bhrc-theme-line-strong) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-options,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-options:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-options:focus-visible {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-options .bhrc-workspace-icon {
  background: currentColor !important;
  color: var(--bhrc-theme-text) !important;
  opacity: 1 !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-compose-send-group,
  .bhrc-workspace-reader-compose-send-group,
  .bhrc-workspace-primary[data-bhrc-compose-open],
  .bhrc-workspace-primary[data-bhrc-compose-open]:hover,
  .bhrc-workspace-primary[data-bhrc-compose-open]:active,
  .bhrc-workspace-primary[data-bhrc-compose-open]:focus,
  .bhrc-workspace-primary[data-bhrc-compose-open]:focus-visible,
  .bhrc-workspace-primary[data-bhrc-compose-send],
  .bhrc-workspace-primary[data-bhrc-compose-send]:hover,
  .bhrc-workspace-primary[data-bhrc-compose-send]:focus-visible,
  .bhrc-workspace-reader-compose-send,
  .bhrc-workspace-reader-compose-send:hover,
  .bhrc-workspace-reader-compose-send:focus-visible,
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send],
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:hover,
  .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:focus-visible,
  .bhrc-workspace-compose-send-options,
  .bhrc-workspace-compose-send-options:hover,
  .bhrc-workspace-compose-send-options:focus-visible
) {
  background: var(--bhrc-theme-field) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-compose-tools,
  .bhrc-workspace-compose-formatbar
) {
  background: var(--bhrc-theme-field) !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-open]:not(:disabled),
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-open]:not(:disabled):hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-open]:not(:disabled):active,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-open]:not(:disabled):focus,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-open]:not(:disabled):focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled),
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled):hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled):focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled),
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled):hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send]:not(:disabled):focus-visible {
  background: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-primary[data-bhrc-compose-open] .bhrc-workspace-icon,
  .bhrc-workspace-primary[data-bhrc-compose-send] .bhrc-workspace-icon,
  .bhrc-workspace-reader-compose-send .bhrc-workspace-icon,
  .bhrc-workspace-compose-send-options .bhrc-workspace-icon,
  .bhrc-workspace-compose-link-field .bhrc-workspace-icon,
  .bhrc-workspace-compose-emoji-search .bhrc-workspace-icon
) {
  background: currentColor !important;
  color: var(--bhrc-theme-icon) !important;
  opacity: 1 !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-tools,
  .bhrc-workspace-compose-formatbar
) {
  background: var(--bhrc-theme-field) !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-tool,
  .bhrc-workspace-compose-tool:hover,
  .bhrc-workspace-compose-tool:focus-visible,
  .bhrc-workspace-compose-tool.is-active,
  .bhrc-workspace-compose-formatbar button,
  .bhrc-workspace-compose-formatbar button:hover,
  .bhrc-workspace-compose-formatbar button:focus-visible,
  .bhrc-workspace-compose .bhrc-workspace-attach-button,
  .bhrc-workspace-compose .bhrc-workspace-attach-button:hover,
  .bhrc-workspace-compose .bhrc-workspace-attach-button:focus-visible
) {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-link-actions a,
  .bhrc-workspace-compose-link-actions a:hover,
  .bhrc-workspace-compose-link-actions a:focus-visible,
  .bhrc-workspace-compose-link-actions button,
  .bhrc-workspace-compose-link-actions button:hover,
  .bhrc-workspace-compose-link-actions button:focus-visible
) {
  background: transparent !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-link-panel,
  .bhrc-workspace-compose-link-actions,
  .bhrc-workspace-compose-emoji-panel,
  .bhrc-workspace-compose-emoji-categories,
  .bhrc-workspace-compose-emoji-grid
) {
  background: var(--bhrc-theme-panel) !important;
  border-color: var(--bhrc-theme-line) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-link-panel,
  .bhrc-workspace-compose-emoji-panel
) {
  box-shadow: var(--bhrc-theme-shadow-popover) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-link-field {
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 7px !important;
  padding-left: 10px !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-link-field,
  .bhrc-workspace-compose-link-field input,
  .bhrc-workspace-compose-emoji-search,
  .bhrc-workspace-compose-emoji-search input
) {
  background: var(--bhrc-theme-field) !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-link-field input {
  padding-left: 0 !important;
  text-align: left !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-compose-link-field input::placeholder,
  .bhrc-workspace-compose-emoji-search input::placeholder,
  .bhrc-workspace-compose-emoji-empty
) {
  color: var(--bhrc-theme-muted) !important;
  opacity: 1 !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-link-apply:disabled {
  color: var(--bhrc-theme-disabled) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-emoji-grid {
  scrollbar-color: var(--bhrc-theme-scrollbar-thumb) var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-emoji-grid::-webkit-scrollbar-track,
.bhrc-workspace-body .bhrc-workspace-compose-emoji-grid::-webkit-scrollbar-corner {
  background: var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-emoji-grid::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-scrollbar-thumb) !important;
  border-color: var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body .bhrc-workspace-compose-emoji-grid::-webkit-scrollbar-thumb:hover {
  background: var(--bhrc-theme-scrollbar-thumb-hover) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-compose-emoji-category[data-bhrc-emoji-category="all"] img[src$="/clock.svg"] {
  filter: brightness(0) invert(1) !important;
  opacity: 0.94 !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-confidential-panel,
  .bhrc-workspace-confidential-panel header,
  .bhrc-workspace-confidential-panel h2,
  .bhrc-workspace-confidential-panel p,
  .bhrc-workspace-confidential-field,
  .bhrc-workspace-confidential-field strong,
  .bhrc-workspace-confidential-expiry-row,
  .bhrc-workspace-confidential-expiry-row time,
  .bhrc-workspace-confidential-code,
  .bhrc-workspace-confidential-code legend,
  .bhrc-workspace-confidential-code-options,
  .bhrc-workspace-confidential-code label,
  .bhrc-workspace-confidential-code label span,
  .bhrc-workspace-confidential-panel footer
) {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-confidential-panel {
  border-color: var(--bhrc-theme-line) !important;
  box-shadow: var(--bhrc-theme-shadow-panel) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-confidential-panel p,
  .bhrc-workspace-confidential-summary,
  .bhrc-workspace-confidential-info,
  .bhrc-workspace-confidential-code label.is-disabled,
  .bhrc-workspace-confidential-code label.is-disabled span
) {
  color: var(--bhrc-theme-muted) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-confidential-expiry-button,
  .bhrc-workspace-confidential-expiry-button:hover,
  .bhrc-workspace-confidential-expiry-button:focus-visible,
  .bhrc-workspace-confidential-expiry-menu,
  .bhrc-workspace-confidential-expiry-menu button,
  .bhrc-workspace-confidential-expiry-menu button:hover,
  .bhrc-workspace-confidential-expiry-menu button:focus-visible,
  .bhrc-workspace-confidential-expiry-menu button.is-selected,
  .bhrc-workspace-confidential-code input[type="radio"],
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-primary,
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-primary:hover,
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-primary:focus-visible,
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-secondary,
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-secondary:hover,
  .bhrc-workspace-confidential-panel footer .bhrc-workspace-secondary:focus-visible
) {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body .bhrc-workspace-confidential-code input[type="radio"]::after {
  background: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-confidential-code label.is-disabled input {
  border-color: var(--bhrc-theme-line) !important;
}

.bhrc-workspace-body .bhrc-workspace-confidential-info::after {
  background: var(--bhrc-theme-panel) !important;
  border-color: var(--bhrc-theme-line) !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: var(--bhrc-theme-shadow-popover) !important;
}

.bhrc-workspace-body .bhrc-workspace-confidential-panel footer .bhrc-workspace-primary:disabled {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  border-color: var(--bhrc-theme-line) !important;
  color: var(--bhrc-theme-disabled) !important;
}

/* Workspace theme contract coverage */
.bhrc-workspace-body :where(
  .bhrc-workspace-help-panel,
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-help-article-tools,
  .bhrc-workspace-help-search-results,
  .bhrc-workspace-help-article,
  .bhrc-workspace-help-card,
  .bhrc-workspace-help-info-card,
  .bhrc-workspace-tip-card,
  .bhrc-workspace-support-form,
  .bhrc-workspace-settings-auto-replies-view,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-settings-auto-form,
  .bhrc-workspace-settings-auto-duration-options,
  .bhrc-workspace-settings-auto-editor,
  .bhrc-workspace-settings-auto-formatbar,
  .bhrc-workspace-settings-auto-message,
  .bhrc-workspace-settings-auto-contacts-row,
  .bhrc-workspace-settings-auto-actions,
  .bhrc-workspace-signature-delete-dialog,
  .bhrc-workspace-signature-dialog,
  .bhrc-workspace-signature-tools,
  .bhrc-workspace-signature-formatbar,
  .bhrc-workspace-signature-insertbar,
  .bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar,
  .bhrc-workspace-signature-insert-menu,
  .bhrc-workspace-signature-table-menu,
  .bhrc-workspace-signature-editor-card,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-signature-options,
  .bhrc-workspace-signature-dialog-footer,
  .bhrc-workspace-signature-table-dialog,
  .bhrc-workspace-signature-link-dialog,
  .bhrc-workspace-category-edit-dialog,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-import-dialog,
  .bhrc-workspace-import-source,
  .bhrc-workspace-import-status,
  .bhrc-workspace-export-config,
  .bhrc-workspace-export-field,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-export-format-options,
  .bhrc-workspace-settings-import-empty,
  .bhrc-workspace-settings-export-empty,
  .bhrc-workspace-settings-signature-empty
) {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-search,
  .bhrc-workspace-help-search input,
  .bhrc-workspace-support-message textarea,
  .bhrc-workspace-support-file-name,
  .bhrc-workspace-settings-auto-schedule input,
  .bhrc-workspace-settings-auto-subject,
  .bhrc-workspace-settings-auto-date-field input,
  .bhrc-workspace-settings-auto-date-field button,
  .bhrc-workspace-signature-table-dialog input,
  .bhrc-workspace-signature-link-dialog input,
  .bhrc-workspace-signature-editor-card input,
  .bhrc-workspace-category-edit-label input,
  .bhrc-workspace-category-edit-label select,
  .bhrc-workspace-category-shortcut-picker > button,
  .bhrc-workspace-import-folder-picker > button,
  .bhrc-workspace-export-picker > button,
  .bhrc-workspace-settings-language-time-field select,
  .bhrc-workspace-settings-signature-select,
  .bhrc-workspace-settings-transfer-select,
  .bhrc-workspace-settings-transfer-all-select,
  .bhrc-workspace-setting-row select
) {
  background-color: var(--bhrc-theme-field) !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  select,
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"]
) {
  background-color: var(--bhrc-theme-field) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(option) {
  background-color: var(--bhrc-theme-field) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(option:checked) {
  background-color: var(--bhrc-theme-elevated) !important;
  box-shadow: 0 0 0 999px var(--bhrc-theme-elevated) inset !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(select option:hover, select option:focus) {
  background-color: var(--bhrc-theme-elevated) !important;
  box-shadow: 0 0 0 999px var(--bhrc-theme-elevated) inset !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  select,
  option,
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"]
) {
  color-scheme: dark !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-tabs button,
  .bhrc-workspace-help-back,
  .bhrc-workspace-help-topic,
  .bhrc-workspace-help-search-results button,
  .bhrc-workspace-tip-action,
  .bhrc-workspace-support-file-button,
  .bhrc-workspace-support-send,
  .bhrc-workspace-support-cancel,
  .bhrc-workspace-settings-auto-save,
  .bhrc-workspace-settings-auto-delete,
  .bhrc-workspace-settings-auto-formatbar button,
  .bhrc-workspace-settings-auto-more-menu button,
  .bhrc-workspace-compose-formatbar.bhrc-workspace-signature-formatbar button,
  .bhrc-workspace-signature-insertbar button,
  .bhrc-workspace-signature-insert-menu button,
  .bhrc-workspace-signature-table-menu button,
  .bhrc-workspace-category-shortcut-option,
  .bhrc-workspace-import-folder-option,
  .bhrc-workspace-export-option,
  .bhrc-workspace-export-format-options button
) {
  background: transparent !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-tabs button:hover,
  .bhrc-workspace-help-tabs button:focus-visible,
  .bhrc-workspace-help-tabs button.is-active,
  .bhrc-workspace-help-tabs button[aria-selected="true"],
  .bhrc-workspace-help-search-results button:hover,
  .bhrc-workspace-help-search-results button:focus-visible,
  .bhrc-workspace-help-topic:hover,
  .bhrc-workspace-help-topic:focus-visible,
  .bhrc-workspace-tip-action:hover,
  .bhrc-workspace-tip-action:focus-visible,
  .bhrc-workspace-settings-auto-formatbar button:hover,
  .bhrc-workspace-settings-auto-formatbar button:focus-visible,
  .bhrc-workspace-category-shortcut-option:hover,
  .bhrc-workspace-category-shortcut-option:focus-visible,
  .bhrc-workspace-import-folder-option:hover,
  .bhrc-workspace-import-folder-option:focus-visible,
  .bhrc-workspace-export-option:hover,
  .bhrc-workspace-export-option:focus-visible,
  .bhrc-workspace-export-format-options button:hover,
  .bhrc-workspace-export-format-options button:focus-visible
) {
  background: var(--bhrc-theme-elevated) !important;
  color: var(--bhrc-theme-text) !important;
  outline: 0 !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-article h2,
  .bhrc-workspace-help-article h3,
  .bhrc-workspace-help-card h3,
  .bhrc-workspace-help-info-card h3,
  .bhrc-workspace-help-info-card a,
  .bhrc-workspace-tip-category,
  .bhrc-workspace-tip-card h3,
  .bhrc-workspace-support-file-name a,
  .bhrc-workspace-settings-auto-toggle-row,
  .bhrc-workspace-settings-auto-check,
  .bhrc-workspace-settings-auto-schedule,
  .bhrc-workspace-settings-auto-contacts-label,
  .bhrc-workspace-signature-dialog-header h3,
  .bhrc-workspace-signature-tabs button.is-active,
  .bhrc-workspace-signature-tabs button[aria-selected="true"],
  .bhrc-workspace-signature-table-menu strong,
  .bhrc-workspace-category-edit-dialog h3,
  .bhrc-workspace-category-edit-label,
  .bhrc-workspace-category-edit-colors strong,
  .bhrc-workspace-import-dialog h3,
  .bhrc-workspace-import-source strong,
  .bhrc-workspace-import-inline-target > span:first-child,
  .bhrc-workspace-import-status strong,
  .bhrc-workspace-export-config h3,
  .bhrc-workspace-export-field,
  .bhrc-workspace-settings-import-empty strong,
  .bhrc-workspace-settings-export-empty strong,
  .bhrc-workspace-settings-signature-empty strong
) {
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-info-card p,
  .bhrc-workspace-tip-card p,
  .bhrc-workspace-settings-auto-copy,
  .bhrc-workspace-settings-auto-schedule.is-disabled,
  .bhrc-workspace-signature-dialog-account,
  .bhrc-workspace-signature-warning,
  .bhrc-workspace-import-dialog p,
  .bhrc-workspace-import-source [data-bhrc-import-source-summary],
  .bhrc-workspace-export-config p,
  .bhrc-workspace-export-option em,
  .bhrc-workspace-settings-import-empty span,
  .bhrc-workspace-settings-export-empty span,
  .bhrc-workspace-settings-signature-empty span
) {
  color: var(--bhrc-theme-muted) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted) !important;
}

.bhrc-workspace-body .bhrc-workspace-help-search input::placeholder,
.bhrc-workspace-body .bhrc-workspace-support-message textarea::placeholder,
.bhrc-workspace-body .bhrc-workspace-signature-table-dialog input::placeholder,
.bhrc-workspace-body .bhrc-workspace-signature-link-dialog input::placeholder,
.bhrc-workspace-body .bhrc-workspace-signature-editor-card input::placeholder,
.bhrc-workspace-body .bhrc-workspace-settings-auto-message:empty::before,
.bhrc-workspace-body .bhrc-workspace-signature-editor:empty::before {
  color: var(--bhrc-theme-muted) !important;
  opacity: 1 !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-schedule input:disabled,
  .bhrc-workspace-settings-auto-date-field button:disabled,
  .bhrc-workspace-signature-insertbar button[disabled],
  .bhrc-workspace-signature-insertbar button[aria-disabled="true"],
  .bhrc-workspace-signature-insert-menu button[disabled],
  .bhrc-workspace-category-shortcut-option:disabled,
  .bhrc-workspace-export-option:disabled
) {
  background-color: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-disabled) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled) !important;
}

.bhrc-workspace-body .bhrc-workspace-help-view > .bhrc-workspace-help-search {
  box-shadow: 0 12px 0 var(--bhrc-theme-panel) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-actions,
  .bhrc-workspace-signature-dialog-footer
) {
  border-color: var(--bhrc-theme-line) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-switch,
  .bhrc-workspace-settings-auto-check input[type="checkbox"],
  .bhrc-workspace-settings-auto-contacts-row > input[type="checkbox"],
  .bhrc-workspace-export-format-radio input[type="radio"]
) {
  background: var(--bhrc-theme-field) !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-check input[type="checkbox"]:checked,
  .bhrc-workspace-settings-auto-contacts-row > input[type="checkbox"]:checked,
  .bhrc-workspace-export-format-radio input[type="radio"]:checked
) {
  background: var(--bhrc-theme-field) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-settings-auto-switch::after {
  background: var(--bhrc-theme-muted) !important;
}

.bhrc-workspace-body .bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch {
  background: var(--bhrc-theme-elevated) !important;
  border-color: var(--bhrc-theme-line-strong) !important;
}

.bhrc-workspace-body .bhrc-workspace-settings-auto-toggle-row input:checked + .bhrc-workspace-settings-auto-switch::after {
  background: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-save,
  .bhrc-workspace-settings-auto-delete,
  .bhrc-workspace-support-send,
  .bhrc-workspace-support-cancel
) {
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-auto-save:disabled,
  .bhrc-workspace-settings-auto-delete:disabled,
  .bhrc-workspace-support-send:disabled
) {
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-disabled) !important;
}

.bhrc-workspace-body .bhrc-workspace-settings-auto-info::after,
.bhrc-workspace-body .bhrc-workspace-settings-storage-info [role="tooltip"],
.bhrc-workspace-body .bhrc-workspace-settings-import-info [role="tooltip"],
.bhrc-workspace-body .bhrc-workspace-settings-export-info [role="tooltip"] {
  background: var(--bhrc-theme-panel) !important;
  border-color: var(--bhrc-theme-line) !important;
  box-shadow: var(--bhrc-theme-shadow-popover) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-settings-auto-info::before {
  background: var(--bhrc-theme-panel) !important;
  border-color: var(--bhrc-theme-line) !important;
}

.bhrc-workspace-body .bhrc-workspace-support-message textarea::-webkit-resizer {
  background-color: var(--bhrc-theme-field) !important;
  border-color: var(--bhrc-theme-line) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-help-panel
) {
  scrollbar-color: var(--bhrc-theme-scrollbar-thumb) var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-help-panel
)::-webkit-scrollbar-track,
.bhrc-workspace-body :where(
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-help-panel
)::-webkit-scrollbar-corner {
  background: var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-signature-editor,
  .bhrc-workspace-help-panel
)::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-scrollbar-thumb) !important;
  border-color: var(--bhrc-theme-scrollbar-track) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-profile-photo-trigger
) {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body .bhrc-workspace-profile-photo,
.bhrc-workspace-body .bhrc-workspace-profile-panel .bhrc-workspace-profile-avatar {
  box-shadow: inset 0 0 0 4px var(--bhrc-theme-panel) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-no-data-icon,
  .bhrc-workspace-qr-data-collection-icon,
  .bhrc-workspace-settings-import-empty-icon,
  .bhrc-workspace-settings-export-empty-icon,
  .bhrc-workspace-settings-signature-empty img,
  .bhrc-workspace-settings-import-empty img,
  .bhrc-workspace-settings-export-empty img
) {
  background: transparent !important;
  filter: invert(1) hue-rotate(180deg) contrast(1.08) saturate(0.95) !important;
  mix-blend-mode: screen !important;
}

/* Workspace dark tone normalization */
.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-ribbon-button:not(:disabled):hover,
  .bhrc-workspace-ribbon-button:not(:disabled):focus-visible,
  .bhrc-workspace-ribbon-split:hover,
  .bhrc-workspace-ribbon-caret-button:hover,
  .bhrc-workspace-ribbon-caret-button:focus-visible,
  .bhrc-workspace-tabs button:hover,
  .bhrc-workspace-tabs button:focus-visible,
  .bhrc-workspace-help-tabs button,
  .bhrc-workspace-help-tabs button:hover,
  .bhrc-workspace-help-tabs button:focus-visible,
  .bhrc-workspace-help-tabs button.is-active,
  .bhrc-workspace-help-tabs button[aria-selected="true"],
  .bhrc-workspace-message-card,
  .bhrc-workspace-message-card:hover,
  .bhrc-workspace-message-card:focus-visible,
  .bhrc-workspace-message-card.active,
  .bhrc-workspace-message-card.active:hover,
  .bhrc-workspace-message-card[aria-selected="true"],
  .bhrc-workspace-message-card[aria-selected="true"]:hover,
  .bhrc-workspace-message,
  .bhrc-workspace-message:hover,
  .bhrc-workspace-message.is-selected,
  .bhrc-workspace-message.active,
  .bhrc-workspace-message-row,
  .bhrc-workspace-message-row:hover,
  .bhrc-workspace-message-tags span,
  .bhrc-workspace-message-icon,
  .bhrc-workspace-select-box,
  .bhrc-workspace-reader,
  .bhrc-workspace-reader-message,
  .bhrc-workspace-reader-subject,
  .bhrc-workspace-reader-card,
  .bhrc-workspace-reader-card > header,
  .bhrc-workspace-reader-body,
  .bhrc-workspace-reader-actions,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-settings-detail-footer,
  .bhrc-workspace-settings-auto-replies-view,
  .bhrc-workspace-settings-auto-replies-body,
  .bhrc-workspace-settings-auto-actions,
  .bhrc-workspace-settings-signature-empty,
  .bhrc-workspace-settings-import-empty,
  .bhrc-workspace-settings-export-empty
) {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-reader-subject h1,
  .bhrc-workspace-reader-card h1,
  .bhrc-workspace-reader-card h2,
  .bhrc-workspace-reader-card h3,
  .bhrc-workspace-reader-card p,
  .bhrc-workspace-reader-card strong,
  .bhrc-workspace-reader-meta,
  .bhrc-workspace-reader-meta *,
  .bhrc-workspace-reader-party,
  .bhrc-workspace-reader-sender,
  .bhrc-workspace-reader-recipient,
  .bhrc-workspace-reader-recipient-list,
  .bhrc-workspace-reader-recipient-separator,
  .bhrc-workspace-reader-cc,
  .bhrc-workspace-reader-time,
  .bhrc-workspace-reader-body,
  .bhrc-workspace-mail-canonical-body,
  .bhrc-workspace-mail-canonical-body *,
  .bhrc-standalone-reader-text,
  .bhrc-standalone-reader-text *,
  .bhrc-workspace-help-article,
  .bhrc-workspace-help-article *,
  .bhrc-workspace-help-steps,
  .bhrc-workspace-help-steps *,
  .bhrc-workspace-tip-card,
  .bhrc-workspace-tip-card *,
  .bhrc-workspace-help-card,
  .bhrc-workspace-help-card *
) {
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-body :where(
  div,
  p,
  span,
  section,
  article,
  table,
  tbody,
  thead,
  tfoot,
  tr,
  td,
  th,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  li,
  small,
  strong,
  em,
  b,
  i,
  a
) {
  background-color: transparent !important;
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-reader-body img,
  .bhrc-workspace-reader-body svg,
  .bhrc-workspace-reader-body canvas,
  .bhrc-workspace-reader-body picture,
  .bhrc-workspace-reader-body video
) {
  filter: none !important;
  mix-blend-mode: normal !important;
}

.bhrc-workspace-body.is-workspace-dark :where(
  .bhrc-workspace-message-quick-actions button,
  .bhrc-workspace-message-quick-actions button:hover,
  .bhrc-workspace-message-quick-actions button:focus-visible,
  .bhrc-workspace-message-delete-action,
  .bhrc-workspace-message-delete-action:hover,
  .bhrc-workspace-message-delete-action:focus-visible,
  .bhrc-workspace-reader-toolbar button,
  .bhrc-workspace-reader-toolbar button:hover,
  .bhrc-workspace-reader-toolbar button:focus-visible
) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark select option,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-setting-row select option,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-edit-label select option {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark select option:checked,
.bhrc-workspace-body.is-workspace-dark select option:hover,
.bhrc-workspace-body.is-workspace-dark select option:focus,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:checked,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:focus,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-setting-row select option:checked,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-setting-row select option:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-setting-row select option:focus,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-edit-label select option:checked,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-edit-label select option:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-edit-label select option:focus {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  box-shadow: 0 0 0 999px var(--bhrc-theme-panel) inset !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card.active,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card.active:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card[aria-selected="true"],
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card[aria-selected="true"]:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message.is-selected,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message.active {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-button:not(:disabled):hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-button:not(:disabled):focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-split:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-caret-button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-ribbon-caret-button:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-icon-button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-icon-button:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail button:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-rail button.active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-card,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-subject,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-dialog,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-import-dialog,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-category-edit-dialog {
  box-shadow: none !important;
}

.bhrc-entry-visually-hidden {
  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;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger {
  position: absolute;
  top: 14px;
  left: 14px;
  right: auto;
  display: grid;
  place-items: center;
  width: 141px;
  height: 141px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger:hover,
.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 2px solid transparent;
  transform: none;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger:focus-visible .bhrc-workspace-profile-photo {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger .bhrc-workspace-profile-photo {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

[data-bhrc-profile-avatar-display].has-photo {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.bhrc-workspace-body.is-workspace-dark [data-bhrc-profile-avatar-display].has-photo {
  background-color: var(--bhrc-theme-panel) !important;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-menu {
  position: absolute !important;
  top: 162px !important;
  left: 50% !important;
  z-index: 30;
  min-width: 222px;
  max-width: min(280px, calc(100vw - 48px));
  transform: translateX(-50%);
}

.bhrc-workspace-profile-avatar-stage:has(.bhrc-workspace-profile-photo-menu:not([hidden])) {
  margin-bottom: 128px;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-menu button {
  width: 100%;
  justify-content: flex-start;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-menu,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-menu button,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-menu button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-menu button:focus-visible {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-signature-insertbar .bhrc-workspace-signature-inline-caret {
  width: 14px;
  height: 14px;
  margin-left: 0;
  color: currentColor;
}

.bhrc-workspace-help-search {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
}

.bhrc-workspace-help-search .bhrc-workspace-icon {
  align-self: center;
  width: 18px;
  height: 18px;
}

.bhrc-workspace-help-article .bhrc-workspace-icon,
.bhrc-workspace-help-steps .bhrc-workspace-icon {
  display: inline-block;
  vertical-align: -3px;
}

.bhrc-workspace-help-article .bhrc-workspace-icon.is-settings,
.bhrc-workspace-help-steps .bhrc-workspace-icon.is-settings {
  width: 16px;
  height: 16px;
  margin: 0 3px -3px;
}

.bhrc-workspace-help-inline-arrow {
  width: 14px !important;
  height: 14px !important;
  margin: 0 3px -2px !important;
  padding: 0 !important;
  color: currentColor !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card.active,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card.active:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card[aria-selected="true"],
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-card[aria-selected="true"]:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-row,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-message-row:hover {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-layer {
  background: rgba(0, 0, 0, 0.58) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor {
  border-color: var(--bhrc-theme-line) !important;
  background: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: var(--bhrc-theme-shadow-panel) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor h2,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-zoom span {
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-crop canvas {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-zoom input {
  accent-color: var(--bhrc-theme-text);
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-save,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-save:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-save:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-cancel,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-cancel:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-editor-cancel:focus-visible {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-card,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-calendar,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-fields label {
  background: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-card h2,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-header strong,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-fields label > span {
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day.is-disabled,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:disabled {
  color: var(--bhrc-theme-disabled) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled) !important;
  opacity: 0.65;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day.is-disabled:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day.is-disabled:focus-visible,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:disabled:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:disabled:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-disabled) !important;
  outline: 0 !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions .bhrc-workspace-primary,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions .bhrc-workspace-primary:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-actions .bhrc-workspace-primary:focus-visible {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-signature-default-row > span,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-options .bhrc-workspace-settings-auto-check span,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-dialog label span {
  color: var(--bhrc-theme-text) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-settings-signature-empty [data-bhrc-signature-add-empty] {
  display: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add],
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:focus-visible {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  transform: none !important;
}

.bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:hover,
.bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:focus-visible {
  color: #566174 !important;
  font-weight: 500 !important;
  transform: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-dialog input[type="number"] {
  color-scheme: dark;
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-dialog input[type="number"]::-webkit-inner-spin-button,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-dialog input[type="number"]::-webkit-outer-spin-button {
  background-color: var(--bhrc-theme-panel) !important;
  opacity: 1;
  filter: invert(1) brightness(1.35);
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select {
  color-scheme: dark;
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:focus,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:active,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-settings-language-time-field select option:checked {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: linear-gradient(var(--bhrc-theme-panel), var(--bhrc-theme-panel)) !important;
  box-shadow: 0 0 0 100vmax var(--bhrc-theme-panel) inset !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-settings-language-time-field.has-custom-select select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.bhrc-workspace-language-time-select {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
}

.bhrc-workspace-language-time-select-button {
  display: grid;
  grid-template-columns: minmax(0, max-content) 18px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--bhrc-theme-text, #172026);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-language-time-select-button span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-language-time-select-button:hover,
.bhrc-workspace-language-time-select-button:focus-visible,
.bhrc-workspace-language-time-select.is-open .bhrc-workspace-language-time-select-button {
  border-color: transparent;
  background: transparent;
  color: var(--bhrc-theme-text, #172026);
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-language-time-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: auto;
  z-index: 260;
  display: grid;
  min-width: 100%;
  width: max-content;
  max-width: min(560px, calc(100vw - 48px));
  max-height: min(360px, 52vh);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--bhrc-theme-line-strong, #c6ced6);
  border-radius: 0 0 4px 4px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  box-shadow: none;
}

.bhrc-workspace-language-time-menu[hidden] {
  display: none;
}

.bhrc-workspace-language-time-option {
  display: block;
  width: 100%;
  min-height: 26px;
  padding: 3px 12px;
  border: 0;
  border-radius: 0;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  background-color: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-muted, #566174) !important;
  font: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  box-shadow: none !important;
}

.bhrc-workspace-language-time-option:hover,
.bhrc-workspace-language-time-option:focus-visible {
  background: var(--bhrc-theme-panel, #ffffff) !important;
  background-color: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #172026)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #172026)) !important;
  outline: 0;
  box-shadow: none !important;
}

.bhrc-workspace-language-time-option[aria-selected="true"] {
  background: var(--bhrc-theme-panel, #ffffff) !important;
  background-color: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-muted, #566174) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-select-button {
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-menu {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-option,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-option[aria-selected="true"] {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-muted) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-option:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-language-time-option:focus-visible {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text)) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-grid button {
  background: var(--bhrc-theme-panel) !important;
  box-shadow: inset 0 0 0 1px var(--bhrc-theme-muted) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-grid button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-grid button:focus-visible {
  background: var(--bhrc-theme-panel) !important;
  box-shadow: inset 0 0 0 1.5px var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-signature-table-grid button.is-selected {
  background: var(--bhrc-theme-panel) !important;
  box-shadow: inset 0 0 0 1.5px var(--bhrc-theme-text) !important;
}

[data-bhrc-profile-avatar-display].has-photo {
  background-size: cover !important;
}

.bhrc-workspace-profile-avatar-stage.has-photo .bhrc-workspace-profile-photo-overlay-copy.is-add,
.bhrc-workspace-profile-avatar-stage.has-no-photo .bhrc-workspace-profile-photo-overlay-copy.is-change {
  display: none;
}

.bhrc-workspace-profile-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 5px;
  padding: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-profile-photo-overlay .bhrc-workspace-icon {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.bhrc-workspace-profile-avatar-stage.has-photo .bhrc-workspace-profile-photo-trigger:hover .bhrc-workspace-profile-photo-overlay,
.bhrc-workspace-profile-avatar-stage.has-photo .bhrc-workspace-profile-photo-trigger:focus-visible .bhrc-workspace-profile-photo-overlay,
.bhrc-workspace-profile-avatar-stage.has-no-photo .bhrc-workspace-profile-photo-trigger:hover .bhrc-workspace-profile-photo-overlay,
.bhrc-workspace-profile-avatar-stage.has-no-photo .bhrc-workspace-profile-photo-trigger:focus-visible .bhrc-workspace-profile-photo-overlay,
.bhrc-workspace-profile-avatar-stage:has(.bhrc-workspace-profile-photo-actions:not([hidden])) .bhrc-workspace-profile-photo-overlay {
  opacity: 1;
}

.bhrc-workspace-profile-photo-actions {
  position: absolute;
  top: 64px;
  left: calc(50% + 56px);
  z-index: 48;
  display: grid;
  min-width: 222px;
  max-width: min(280px, calc(100vw - 48px));
  padding: 8px;
  border: 1px solid var(--bhrc-theme-line-strong, #c6ced6);
  border-radius: 8px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  box-shadow: 0 18px 38px rgba(15, 17, 21, 0.16);
  transform: none;
}

.bhrc-workspace-profile-photo-actions[hidden],
.bhrc-workspace-profile-photo-actions [hidden] {
  display: none !important;
}

.bhrc-workspace-profile-avatar-stage:has(.bhrc-workspace-profile-photo-actions:not([hidden])) {
  margin-bottom: 2px;
}

.bhrc-workspace-profile-photo-actions button {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-profile-photo-actions button:hover,
.bhrc-workspace-profile-photo-actions button:focus-visible {
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  outline: 1px solid var(--bhrc-theme-line, #d6dde2);
}

.bhrc-profile-photo-viewer-layer,
.bhrc-profile-photo-camera-layer,
.bhrc-profile-camera-permission-layer,
.bhrc-profile-photo-remove-layer {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 17, 21, 0.58);
}

.bhrc-profile-photo-viewer-layer[hidden],
.bhrc-profile-photo-camera-layer[hidden],
.bhrc-profile-camera-permission-layer[hidden],
.bhrc-profile-photo-remove-layer[hidden] {
  display: none;
}

.bhrc-profile-photo-viewer {
  position: relative;
  display: grid;
  place-items: center;
  width: min(900px, calc(100vw - 48px));
  min-height: min(70vh, 680px);
  padding: 24px;
  border-radius: 8px;
  background: var(--bhrc-theme-panel, #ffffff);
}

.bhrc-profile-photo-viewer img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.bhrc-profile-photo-viewer-close,
.bhrc-profile-photo-camera header button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--bhrc-theme-text, #172026);
  cursor: pointer;
}

.bhrc-profile-photo-viewer-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.bhrc-profile-photo-camera,
.bhrc-profile-camera-permission,
.bhrc-profile-photo-remove-dialog {
  width: min(500px, calc(100vw - 32px));
  border: 1px solid var(--bhrc-theme-line, #d6dde2);
  border-radius: 10px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  box-shadow: 0 22px 58px rgba(15, 17, 21, 0.22);
  overflow: hidden;
}

.bhrc-profile-photo-camera header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
}

.bhrc-profile-photo-camera h2,
.bhrc-profile-camera-permission h2,
.bhrc-profile-photo-remove-dialog h2 {
  margin: 0;
  color: inherit;
  font-size: 1.12rem;
  font-weight: 700;
}

.bhrc-profile-photo-camera-preview {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000000;
}

.bhrc-profile-photo-camera-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.bhrc-profile-photo-camera footer {
  display: grid;
  place-items: center;
  min-height: 92px;
  background: var(--bhrc-theme-field, #eef2f4);
}

.bhrc-profile-photo-camera-capture {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #19a463;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(15, 17, 21, 0.22);
  cursor: pointer;
}

.bhrc-profile-photo-camera-capture .bhrc-workspace-icon {
  width: 26px;
  height: 26px;
}

.bhrc-profile-camera-permission,
.bhrc-profile-photo-remove-dialog {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.bhrc-profile-camera-permission p,
.bhrc-profile-photo-remove-dialog p {
  margin: 0;
  color: var(--bhrc-theme-muted, #566174);
  line-height: 1.45;
}

.bhrc-profile-camera-permission p button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #19a463;
  font: inherit;
  font-weight: 740;
  cursor: pointer;
}

.bhrc-profile-camera-permission footer,
.bhrc-profile-photo-remove-dialog footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.bhrc-profile-camera-permission footer button,
.bhrc-profile-photo-remove-dialog footer button {
  min-width: 116px;
  min-height: 36px;
  border-radius: 999px;
}

.bhrc-profile-editor-header {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.bhrc-profile-editor-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.bhrc-profile-editor-retake {
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.bhrc-profile-editor-save .bhrc-workspace-icon {
  display: none;
  width: 22px;
  height: 22px;
}

.bhrc-profile-editor-layer.is-camera-crop .bhrc-profile-editor {
  width: min(500px, calc(100vw - 32px));
}

.bhrc-profile-editor-layer.is-camera-crop .bhrc-profile-editor-save {
  width: 62px;
  min-width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-self: end;
}

.bhrc-profile-editor-layer.is-camera-crop .bhrc-profile-editor-save .bhrc-workspace-icon {
  display: block;
}

.bhrc-profile-editor-layer.is-camera-crop .bhrc-profile-editor-save [data-bhrc-profile-photo-save-label] {
  display: none;
}

.bhrc-workspace-help-article .bhrc-workspace-icon,
.bhrc-workspace-help-steps .bhrc-workspace-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  vertical-align: -0.2em !important;
}

.bhrc-workspace-help-article .bhrc-workspace-icon.is-settings,
.bhrc-workspace-help-steps .bhrc-workspace-icon.is-settings {
  width: 16px !important;
  height: 16px !important;
  margin: 0 4px !important;
}

.bhrc-workspace-help-inline-arrow {
  display: inline-flex !important;
  width: 13px !important;
  height: 13px !important;
  margin: 0 4px !important;
  vertical-align: -0.16em !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-photo-viewer,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-photo-camera,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-camera-permission,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-photo-remove-dialog,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-actions,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-actions button,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-actions button:hover,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-profile-photo-actions button:focus-visible {
  border-color: var(--bhrc-theme-line-strong) !important;
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text) !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-photo-camera footer {
  background: var(--bhrc-theme-panel) !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-camera-permission p,
.bhrc-workspace-body.is-workspace-dark .bhrc-profile-photo-remove-dialog p {
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-profile-identifiers {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin-bottom: 2px !important;
}

.bhrc-workspace-profile-identity-row {
  gap: 3px !important;
  min-height: 22px !important;
}

.bhrc-workspace-profile-identity-row code {
  min-width: 0 !important;
  width: auto !important;
  text-align: left !important;
}

.bhrc-workspace-profile-secret-toggle {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin-left: -1px !important;
}

.bhrc-workspace-profile-secret-toggle .bhrc-workspace-icon {
  width: 16px !important;
  height: 16px !important;
}

.bhrc-workspace-profile-avatar-stage {
  width: 216px !important;
  height: 214px !important;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger {
  top: 18px !important;
  left: 18px !important;
  width: 176px !important;
  height: 176px !important;
}

.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo-trigger .bhrc-workspace-profile-photo,
.bhrc-workspace-profile-avatar-stage .bhrc-workspace-profile-photo {
  width: 176px !important;
  height: 176px !important;
}

.bhrc-workspace-profile-photo-actions {
  top: 82px !important;
  left: calc(50% + 74px) !important;
  transform: none !important;
}

.bhrc-workspace-profile-photo-actions button:hover,
.bhrc-workspace-profile-photo-actions button:focus-visible {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.bhrc-workspace-profile-avatar-stage:has(.bhrc-workspace-profile-photo-actions:not([hidden])) {
  margin-bottom: 2px !important;
}

.bhrc-workspace-profile-manage {
  min-height: 50px !important;
  padding: 0 10px !important;
  border-radius: 22px !important;
  font-weight: 760 !important;
}

.bhrc-profile-camera-permission p button {
  color: var(--bhrc-theme-text, #172026) !important;
  font-weight: 800 !important;
}

.bhrc-profile-camera-permission footer button {
  min-width: 96px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border: 1px solid var(--bhrc-theme-line-strong, #9aa3ad) !important;
  border-radius: 999px !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text, #172026) !important;
  font: inherit !important;
  font-weight: 760 !important;
  box-shadow: none !important;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-profile-camera-permission p button {
  color: var(--bhrc-theme-text, #ffffff) !important;
}

.bhrc-workspace-support-file-button,
.bhrc-workspace-support-send,
.bhrc-workspace-support-cancel {
  min-width: 96px !important;
  min-height: 34px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font: inherit !important;
  font-size: 0.9rem !important;
  transform: none !important;
  transition: none !important;
}

.bhrc-workspace-support-send {
  font-weight: 650 !important;
}

.bhrc-workspace-support-file-button,
.bhrc-workspace-support-cancel {
  font-weight: 560 !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-support-file-button,
  .bhrc-workspace-support-send,
  .bhrc-workspace-support-cancel
) {
  background: var(--bhrc-theme-panel) !important;
  background-image: none !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text) !important;
}

.bhrc-workspace-body :where(
  .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add],
  .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:hover,
  .bhrc-workspace-settings-signature-intro [data-bhrc-signature-add]:focus-visible,
  .bhrc-workspace-settings-category-intro [data-bhrc-category-settings-create],
  .bhrc-workspace-settings-category-intro [data-bhrc-category-settings-create]:hover,
  .bhrc-workspace-settings-category-intro [data-bhrc-category-settings-create]:focus-visible
) {
  font-weight: 500 !important;
  transform: none !important;
  transition: none !important;
}

.bhrc-workspace-number-stepper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: stretch;
  min-height: 32px;
  overflow: hidden;
  border: 1px solid var(--bhrc-theme-line-strong, #c8d1d9);
  border-radius: 4px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
}

.bhrc-workspace-signature-table-dialog .bhrc-workspace-number-stepper input,
.bhrc-workspace-signature-table-dialog .bhrc-workspace-number-stepper input:focus,
.bhrc-workspace-signature-table-dialog .bhrc-workspace-number-stepper input:focus-visible {
  min-height: 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  outline: 0 !important;
  appearance: textfield;
  -moz-appearance: textfield;
}

.bhrc-workspace-signature-table-dialog .bhrc-workspace-number-stepper input::-webkit-inner-spin-button,
.bhrc-workspace-signature-table-dialog .bhrc-workspace-number-stepper input::-webkit-outer-spin-button {
  display: none;
  margin: 0;
  -webkit-appearance: none;
}

.bhrc-workspace-number-stepper-buttons {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--bhrc-theme-line-strong, #c8d1d9);
  background: var(--bhrc-theme-panel, #ffffff);
}

.bhrc-workspace-number-stepper-buttons button {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  min-width: 24px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
  box-shadow: none;
  cursor: pointer;
}

.bhrc-workspace-number-stepper-buttons button + button {
  border-top: 1px solid var(--bhrc-theme-line-strong, #c8d1d9);
}

.bhrc-workspace-number-stepper-buttons button::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.bhrc-workspace-number-stepper-buttons button[data-bhrc-signature-number-step="1"]::before {
  border-bottom: 5px solid currentColor;
}

.bhrc-workspace-number-stepper-buttons button[data-bhrc-signature-number-step="-1"]::before {
  border-top: 5px solid currentColor;
}

.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-number-stepper,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-number-stepper-buttons,
.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-number-stepper-buttons button {
  background: var(--bhrc-theme-panel) !important;
  background-color: var(--bhrc-theme-panel) !important;
  color: var(--bhrc-theme-text) !important;
}
/* /BehindApp workspace theme contract */



/* BehindApp unread accent and filter control parity */
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.is-unread .bhrc-workspace-message-row:first-child strong,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.is-unread .bhrc-workspace-message-row:nth-child(2) strong,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.is-unread .bhrc-workspace-message-stamp {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent]:not(.is-workspace-dark) .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-row:first-child strong,
body.bhrc-workspace-body[data-bhrc-theme-accent]:not(.is-workspace-dark) .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-row:nth-child(2) strong {
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #172026) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent]:not(.is-workspace-dark) .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-stamp {
  color: #24313a !important;
  -webkit-text-fill-color: #24313a !important;
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-row:first-child strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-row:nth-child(2) strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card:not(.is-unread) .bhrc-workspace-message-stamp {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card.active:not(.is-unread) .bhrc-workspace-message-row:first-child strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card.active:not(.is-unread) .bhrc-workspace-message-row:nth-child(2) strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card.active:not(.is-unread) .bhrc-workspace-message-stamp,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card[aria-selected="true"]:not(.is-unread) .bhrc-workspace-message-row:first-child strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card[aria-selected="true"]:not(.is-unread) .bhrc-workspace-message-row:nth-child(2) strong,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-list-pane .bhrc-workspace-message-card[aria-selected="true"]:not(.is-unread) .bhrc-workspace-message-stamp {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-quick-actions button,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-delete-action,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-envelope-action {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #172026) !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-quick-actions button,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-delete-action,
body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-envelope-action {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-quick-actions .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-delete-action .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-quick-actions .bhrc-workspace-icon.is-flag-alt-siyah,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-message-card.active .bhrc-workspace-message-quick-actions .bhrc-workspace-icon.is-thumbtack-koyu {
  background-color: currentColor !important;
  color: inherit !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body .bhrc-workspace-profile-panel .bhrc-workspace-profile-manage {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid var(--bhrc-theme-line-strong, #9aa3ad) !important;
  border-radius: 999px !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #172026) !important;
  box-shadow: none !important;
  font-size: 0.9rem !important;
  font-weight: 560 !important;
  line-height: 1 !important;
  transform: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-profile-panel .bhrc-workspace-profile-manage,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-profile-panel .bhrc-workspace-profile-manage:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-profile-panel .bhrc-workspace-profile-manage:focus-visible {
  border-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-panel input[type="checkbox"],
body.bhrc-workspace-body .bhrc-workspace-filter-modal input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  border: 1px solid var(--bhrc-theme-line-strong, #7d878e) !important;
  border-radius: 4px !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #172026) !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-panel input[type="checkbox"]::after,
body.bhrc-workspace-body .bhrc-workspace-filter-modal input[type="checkbox"]::after {
  width: 6px !important;
  height: 10px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  opacity: 0 !important;
  transform: translateY(-1px) rotate(45deg) !important;
  content: "" !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-panel input[type="checkbox"]:checked,
body.bhrc-workspace-body .bhrc-workspace-filter-modal input[type="checkbox"]:checked {
  background: var(--bhrc-theme-text, #172026) !important;
  border-color: var(--bhrc-theme-text, #172026) !important;
  color: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-filter-panel input[type="checkbox"]:checked,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-filter-modal input[type="checkbox"]:checked {
  background: var(--bhrc-workspace-theme-accent) !important;
  border-color: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-panel input[type="checkbox"]:checked::after,
body.bhrc-workspace-body .bhrc-workspace-filter-modal input[type="checkbox"]:checked::after {
  opacity: 1 !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-actions :where(.bhrc-workspace-filter-add, .bhrc-workspace-primary, .bhrc-workspace-secondary),
body.bhrc-workspace-body .bhrc-workspace-filter-modal footer :where(.bhrc-workspace-primary, .bhrc-workspace-secondary) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid var(--bhrc-theme-line-strong, #9aa3ad) !important;
  border-radius: 999px !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #172026) !important;
  box-shadow: none !important;
  font-size: 0.9rem !important;
  font-weight: 560 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transform: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-filter-actions :where(.bhrc-workspace-filter-add, .bhrc-workspace-primary, .bhrc-workspace-secondary):hover,
body.bhrc-workspace-body .bhrc-workspace-filter-actions :where(.bhrc-workspace-filter-add, .bhrc-workspace-primary, .bhrc-workspace-secondary):focus-visible,
body.bhrc-workspace-body .bhrc-workspace-filter-modal footer :where(.bhrc-workspace-primary, .bhrc-workspace-secondary):hover,
body.bhrc-workspace-body .bhrc-workspace-filter-modal footer :where(.bhrc-workspace-primary, .bhrc-workspace-secondary):focus-visible {
  border-color: var(--bhrc-theme-line-strong, #7f8894) !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] [data-bhrc-search-filter-modal-save],
body.bhrc-workspace-body[data-bhrc-theme-accent] [data-bhrc-search-filter-modal-save]:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] [data-bhrc-search-filter-modal-save]:focus-visible {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast) !important;
}
/* /BehindApp unread accent and filter control parity */

/* BehindApp toolbar and dropdown accent prelude */
@keyframes bhrcComposeFormatPulse {
  0%, 100% {
    opacity: 1;
    transform: none;
  }
  42% {
    opacity: 0.34;
    transform: translateY(-1px);
  }
  72% {
    opacity: 1;
    transform: none;
  }
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button[data-bhrc-compose-format-pulse="true"],
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button[data-bhrc-compose-format-pulse="true"] .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button[data-bhrc-compose-format-pulse="true"] .bhrc-format-align-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  animation: bhrcComposeFormatPulse 360ms ease-out 1;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button[data-bhrc-compose-format-pulse="true"] .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button[data-bhrc-compose-format-pulse="true"] .bhrc-format-align-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected::before,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected .bhrc-format-align-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected .bhrc-format-align-icon {
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu:not(.bhrc-workspace-compose-color-menu) button.is-selected {
  box-shadow: inset 0 0 0 1px var(--bhrc-workspace-theme-accent) !important;
  background: transparent !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-compose-color-grid button.is-selected {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  outline: 2px solid var(--bhrc-workspace-theme-accent) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-confidential-expiry-row {
  grid-template-columns: minmax(220px, 272px) auto !important;
}

body.bhrc-workspace-body .bhrc-workspace-confidential-expiry-button {
  grid-template-columns: minmax(0, 1fr) 14px !important;
  max-width: 272px !important;
  padding-inline: 12px 6px !important;
}

body.bhrc-workspace-body .bhrc-workspace-confidential-expiry-menu {
  width: 272px !important;
  max-width: min(272px, calc(100vw - 40px)) !important;
}

body.bhrc-workspace-body .bhrc-workspace-confidential-expiry-menu button:hover,
body.bhrc-workspace-body .bhrc-workspace-confidential-expiry-menu button:focus-visible {
  background: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-confidential-expiry-menu button.is-selected {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-list-tool:is(.active, [data-bhrc-list-tool-active="true"], [aria-expanded="true"]) .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-list-tool:is(.active, [data-bhrc-list-tool-active="true"], [aria-expanded="true"]) > span {
  color: var(--bhrc-workspace-theme-accent) !important;
  background-color: currentColor !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body .bhrc-workspace-menu button:hover,
body.bhrc-workspace-body .bhrc-workspace-menu button:focus-visible,
body.bhrc-workspace-body .bhrc-workspace-menu a:hover,
body.bhrc-workspace-body .bhrc-workspace-menu a:focus-visible {
  background: transparent !important;
  outline: 0 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"],
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] span,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] strong,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] .bhrc-workspace-menu-caret {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-menu button[data-bhrc-menu-option-selected="true"] .bhrc-workspace-menu-caret {
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] :where(
  #workspaceReportMenu,
  #workspaceMoveMenu,
  #workspaceCategoryMenu,
  #workspaceFlagMenu,
  #workspaceSnoozeMenu,
  .bhrc-workspace-report-menu,
  .bhrc-workspace-move-menu,
  .bhrc-workspace-category-menu,
  .bhrc-workspace-flag-menu,
  .bhrc-workspace-snooze-menu
) button[data-bhrc-menu-option-selected="true"],
body.bhrc-workspace-body[data-bhrc-theme-accent] :where(
  #workspaceReportMenu,
  #workspaceMoveMenu,
  #workspaceCategoryMenu,
  #workspaceFlagMenu,
  #workspaceSnoozeMenu,
  .bhrc-workspace-report-menu,
  .bhrc-workspace-move-menu,
  .bhrc-workspace-category-menu,
  .bhrc-workspace-flag-menu,
  .bhrc-workspace-snooze-menu
) button[data-bhrc-menu-option-selected="true"] :where(span, strong, .bhrc-workspace-icon, .bhrc-workspace-menu-caret) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] :where(#workspaceCategoryMenu, .bhrc-workspace-category-menu) .bhrc-workspace-category-target[data-bhrc-menu-option-selected="true"] .bhrc-workspace-icon {
  color: var(--bhrc-category-color, #70808a) !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-active="true"]:not(:disabled),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-active="true"]:not(:disabled) span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-active="true"]:not(:disabled) .bhrc-workspace-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-active="true"]:not(:disabled) .bhrc-workspace-icon {
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-pulse="true"]:not(:disabled),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-pulse="true"]:not(:disabled) span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-pulse="true"]:not(:disabled) .bhrc-workspace-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
  animation: bhrcComposeFormatPulse 420ms ease-out 1;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-ribbon .bhrc-workspace-ribbon-button[data-bhrc-ribbon-pulse="true"]:not(:disabled) .bhrc-workspace-icon {
  background-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu button.is-selected::before {
  content: "" !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-format-menu:not(.bhrc-workspace-compose-color-menu) button.is-selected {
  box-shadow: none !important;
  outline: 0 !important;
  background: transparent !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-compose-color-grid button.is-selected::before {
  content: none !important;
  width: 0 !important;
  margin: 0 !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-panel,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-card,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-fields label,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-time-list {
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-card,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-time-list,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-fields input {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-card h2,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-header strong,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-weekdays span,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-fields label > span,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:not(.is-disabled):not(:disabled),
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-nav button:not(:disabled) {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-nav button:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-nav button:focus-visible,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:not(.is-disabled):not(:disabled):hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:not(.is-disabled):not(:disabled):focus-visible {
  background: transparent !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
  outline-color: var(--bhrc-theme-line-strong, #46535f) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-nav button:disabled,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-calendar-nav button:disabled:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day.is-disabled,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-day:disabled {
  color: var(--bhrc-theme-disabled, rgba(237, 242, 246, 0.38)) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled, rgba(237, 242, 246, 0.38)) !important;
  opacity: 0.65 !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-fields input,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-schedule-time-list button {
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-dialog,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-options,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-target select {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  box-shadow: var(--bhrc-theme-shadow-popover, 0 18px 42px rgba(0, 0, 0, 0.34)) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-title,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-body,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-sender,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-sender-suffix,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-target,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-option {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-actions .bhrc-workspace-primary,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-actions .bhrc-workspace-secondary {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  background-image: none !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-actions .bhrc-workspace-primary:disabled,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-actions .bhrc-workspace-secondary:disabled {
  color: var(--bhrc-theme-disabled, rgba(237, 242, 246, 0.38)) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled, rgba(237, 242, 246, 0.38)) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-sweep-actions .bhrc-workspace-primary:not(:disabled) {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-sweep-option.is-selected .bhrc-workspace-sweep-choice-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-move-menu,
body.bhrc-workspace-body .bhrc-workspace-move-list,
body.bhrc-workspace-body .bhrc-workspace-move-saved-list,
body.bhrc-workspace-body .bhrc-workspace-category-list {
  scrollbar-color: var(--bhrc-theme-line-strong, #9aa3ad) var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-move-menu::-webkit-scrollbar-track,
body.bhrc-workspace-body .bhrc-workspace-move-list::-webkit-scrollbar-track,
body.bhrc-workspace-body .bhrc-workspace-move-saved-list::-webkit-scrollbar-track,
body.bhrc-workspace-body .bhrc-workspace-category-list::-webkit-scrollbar-track {
  background: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-move-menu::-webkit-scrollbar-thumb,
body.bhrc-workspace-body .bhrc-workspace-move-list::-webkit-scrollbar-thumb,
body.bhrc-workspace-body .bhrc-workspace-move-saved-list::-webkit-scrollbar-thumb,
body.bhrc-workspace-body .bhrc-workspace-category-list::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-line-strong, #9aa3ad) !important;
}

body.bhrc-workspace-body .bhrc-workspace-category-menu {
  width: min(268px, calc(100vw - 24px)) !important;
  max-width: min(300px, calc(100vw - 24px)) !important;
}

/* /BehindApp toolbar and dropdown accent prelude */
/* BehindApp compose, sweep and reader canonical active states */
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button:is(.is-active, [aria-pressed="true"], [data-bhrc-compose-format-active="true"]) {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button:is(.is-active, [aria-pressed="true"], [data-bhrc-compose-format-active="true"]) .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar button:is(.is-active, [aria-pressed="true"], [data-bhrc-compose-format-active="true"]) .bhrc-format-align-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  background-color: currentColor !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar .bhrc-workspace-compose-format-bold:is(.is-active, [aria-pressed="true"], [data-bhrc-compose-format-active="true"]) .bhrc-workspace-icon.is-bold {
  background: transparent !important;
  color: var(--bhrc-workspace-theme-accent) !important;
  font-weight: 860 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-compose-formatbar .bhrc-workspace-compose-format-bold:not(.is-active):not([aria-pressed="true"]):not([data-bhrc-compose-format-active="true"]) .bhrc-workspace-icon.is-bold {
  background: transparent !important;
  color: var(--bhrc-theme-muted, #65717c) !important;
  font-weight: 520 !important;
}

body.bhrc-workspace-body .bhrc-workspace-schedule-time-list {
  scrollbar-color: var(--bhrc-theme-line-strong, #9aa3ad) var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-schedule-time-list::-webkit-scrollbar-track {
  background: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-schedule-time-list::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-line-strong, #9aa3ad) !important;
}

body.bhrc-workspace-body .bhrc-workspace-schedule-time-list button:hover,
body.bhrc-workspace-body .bhrc-workspace-schedule-time-list button:focus-visible {
  background: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-time-list button:hover:not(:disabled),
body.bhrc-workspace-body .bhrc-workspace-settings-date-popover .bhrc-workspace-schedule-time-list button:focus-visible:not(:disabled) {
  background: transparent !important;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #172026)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #172026)) !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-schedule-time-list button.is-selected,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-schedule-time-list button[aria-selected="true"] {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body .bhrc-workspace-report-actions .bhrc-workspace-primary,
body.bhrc-workspace-body .bhrc-workspace-report-actions .bhrc-workspace-secondary,
body.bhrc-workspace-body .bhrc-workspace-sweep-actions .bhrc-workspace-primary,
body.bhrc-workspace-body .bhrc-workspace-sweep-actions .bhrc-workspace-secondary {
  min-height: 38px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-report-actions .bhrc-workspace-primary:not(:disabled) {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast) !important;
}

body.bhrc-workspace-body .bhrc-workspace-sweep-choice-box {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--bhrc-theme-line-strong, #7d8994);
  border-radius: 4px;
  background: var(--bhrc-theme-panel, #ffffff);
  box-sizing: border-box;
}

body.bhrc-workspace-body .bhrc-workspace-sweep-choice-box.is-checked {
  border-color: var(--bhrc-workspace-theme-accent, #3456a4);
  background: var(--bhrc-workspace-theme-accent, #3456a4);
}

body.bhrc-workspace-body .bhrc-workspace-sweep-choice-box.is-checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--bhrc-workspace-theme-accent-contrast, #ffffff);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

body.bhrc-workspace-body .bhrc-workspace-sweep-target select,
body.bhrc-workspace-body .bhrc-workspace-sweep-target select option {
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #172026) !important;
}

body.bhrc-workspace-body .bhrc-workspace-sweep-target select option:hover,
body.bhrc-workspace-body .bhrc-workspace-sweep-target select option:focus {
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #172026) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-sweep-target select option:checked {
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-reader-avatar {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  box-shadow: 0 0 0 1px var(--bhrc-workspace-theme-accent-soft) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-report-dialog,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-report-assurance,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-dialog,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-options,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-target select {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-report-title,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-report-body,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-report-assurance,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-title,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-body,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-sender,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-sender-suffix,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-target,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-sweep-option {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose.is-reply-takeover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-bar,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose.is-reply-takeover .bhrc-workspace-reader-compose-bar,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-scroll,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-row,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-editor,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-preview,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-quote {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-scroll {
  scrollbar-color: var(--bhrc-theme-line-strong, #66727d) var(--bhrc-theme-panel, #11171d) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-scroll::-webkit-scrollbar-track {
  background: var(--bhrc-theme-panel, #11171d) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-scroll::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-line-strong, #66727d) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-row input,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-forward-recipients,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-forward-recipients input,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-target,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-target-name,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-target-suffix,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-preview strong,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-quoted-body {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-icon,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-icon:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-reader-compose-icon:focus-visible {
  background: transparent !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
}

/* BehindApp contact surfaces palette contract */
body.bhrc-workspace-body .bhrc-workspace-contact-card,
body.bhrc-workspace-body .bhrc-workspace-contact-card-fixed,
body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll,
body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll section,
body.bhrc-workspace-body .bhrc-workspace-contact-modal,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-header,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content section,
body.bhrc-workspace-body .bhrc-workspace-contact-tabs,
body.bhrc-workspace-body .bhrc-workspace-contact-message-card,
body.bhrc-workspace-body .bhrc-workspace-contact-message {
  border-color: var(--bhrc-theme-line, #d8dee4) !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #101820) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card {
  box-shadow: 0 18px 42px var(--bhrc-theme-shadow, rgba(16, 24, 32, 0.18)) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-card,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-card-fixed,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-card-scroll,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-card-scroll section,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal-header,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal-content,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal-content section,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-tabs,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-message-card,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-message {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card :where(
  strong,
  h3,
  .bhrc-workspace-contact-identity strong,
  .bhrc-workspace-contact-section-button,
  .bhrc-workspace-contact-section-button span:not(.bhrc-workspace-icon),
  .bhrc-workspace-contact-inline-more,
  .bhrc-workspace-contact-plain-button,
  .bhrc-workspace-contact-email-button,
  .bhrc-workspace-contact-message strong,
  .bhrc-workspace-contact-more
),
body.bhrc-workspace-body .bhrc-workspace-contact-modal :where(
  h2,
  h3,
  strong,
  .bhrc-workspace-contact-tabs button.active,
  .bhrc-workspace-contact-detail-row strong,
  .bhrc-workspace-contact-message strong
) {
  color: var(--bhrc-theme-text, #101820) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card :where(
  p,
  small,
  .bhrc-workspace-contact-message span,
  .bhrc-workspace-contact-message p
),
body.bhrc-workspace-body .bhrc-workspace-contact-modal :where(
  p,
  small,
  .bhrc-workspace-contact-tabs button:not(.active),
  .bhrc-workspace-contact-detail-row span,
  .bhrc-workspace-contact-message span,
  .bhrc-workspace-contact-message p
) {
  color: var(--bhrc-theme-muted, #526069) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #526069) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-card :where(
  strong,
  h3,
  .bhrc-workspace-contact-identity strong,
  .bhrc-workspace-contact-section-button,
  .bhrc-workspace-contact-section-button span:not(.bhrc-workspace-icon),
  .bhrc-workspace-contact-inline-more,
  .bhrc-workspace-contact-plain-button,
  .bhrc-workspace-contact-email-button,
  .bhrc-workspace-contact-message strong,
  .bhrc-workspace-contact-more
),
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal :where(
  h2,
  h3,
  strong,
  .bhrc-workspace-contact-tabs button.active,
  .bhrc-workspace-contact-detail-row strong,
  .bhrc-workspace-contact-message strong
) {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-avatar,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-avatar.has-photo {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  box-shadow: 0 0 0 1px var(--bhrc-workspace-theme-accent-soft) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-call,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-call:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-call:focus-visible {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-theme-field, transparent) !important;
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-tabs button.active,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-card-scroll h3,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-modal-content h3,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:focus,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:focus-visible,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:hover span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:focus span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-section-button:focus-visible span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-inline-more:hover {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab],
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:hover,
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus,
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus-visible,
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab] span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:hover span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body[data-bhrc-theme-accent] button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus-visible span:not(.bhrc-workspace-icon) {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab],
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:hover,
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus,
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus-visible,
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab] span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:hover span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus span:not(.bhrc-workspace-icon),
body.bhrc-workspace-body.bhrc-workspace-body button[data-bhrc-contact-section-tab][data-bhrc-contact-section-tab]:focus-visible span:not(.bhrc-workspace-icon) {
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #2f6fed)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #2f6fed)) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-card .bhrc-workspace-icon,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-modal .bhrc-workspace-icon {
  color: var(--bhrc-workspace-theme-accent) !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-file-list {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 8px 0 0;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-file-item,
body.bhrc-workspace-body .bhrc-workspace-contact-file-item:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-file-item:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-file-item:focus-visible,
body.bhrc-workspace-body .bhrc-workspace-contact-file-item:active {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 8px 0;
  border: 0 !important;
  border-radius: 0;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--bhrc-theme-text, #101820) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820) !important;
  box-shadow: none !important;
  text-decoration: none;
  transform: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-file-item,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-file-item:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-file-item:focus,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-file-item:focus-visible,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-file-item:active {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-file-item :is(
  .bhrc-workspace-contact-file-meta,
  .bhrc-workspace-reader-attachment-meta
) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.bhrc-workspace-body .bhrc-workspace-contact-file-item :is(
  .bhrc-workspace-contact-file-name,
  .bhrc-workspace-reader-attachment-name
) {
  overflow: hidden;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.bhrc-workspace-body .bhrc-workspace-contact-file-item :is(
  .bhrc-workspace-contact-file-size,
  .bhrc-workspace-reader-attachment-size
) {
  color: var(--bhrc-theme-muted, #526069) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #526069) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-file-item:is(:hover, :focus, :focus-visible) :is(
  .bhrc-workspace-contact-file-name,
  .bhrc-workspace-reader-attachment-name
) {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content {
  scrollbar-color: var(--bhrc-theme-line-strong, #9aa3ad) var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll::-webkit-scrollbar-track,
body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll::-webkit-scrollbar-corner,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content::-webkit-scrollbar-track,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content::-webkit-scrollbar-corner {
  background: var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-card-scroll::-webkit-scrollbar-thumb,
body.bhrc-workspace-body .bhrc-workspace-contact-modal-content::-webkit-scrollbar-thumb {
  background: var(--bhrc-theme-line-strong, #9aa3ad) !important;
  border-color: var(--bhrc-theme-panel, #ffffff) !important;
}
/* /BehindApp contact surfaces palette contract */

/* BehindApp contact modal action contract */
body.bhrc-workspace-body .bhrc-workspace-contact-menu {
  width: max-content !important;
  min-width: 0 !important;
  max-width: min(260px, calc(100vw - 24px)) !important;
  gap: 2px !important;
  padding: 8px !important;
  border-color: var(--bhrc-theme-line-strong, #c7d0d8) !important;
  border-radius: 4px !important;
  background: var(--bhrc-theme-elevated, #ffffff) !important;
  color: var(--bhrc-theme-text, #101820) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-menu button,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button:focus-visible {
  min-height: 34px !important;
  padding: 0 10px !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: var(--bhrc-theme-text, #101820) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820) !important;
  font-weight: 400 !important;
  text-align: left !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-menu {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-elevated, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-menu button,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-menu button:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-menu button:focus-visible {
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-plain-button,
body.bhrc-workspace-body .bhrc-workspace-contact-plain-button:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-plain-button:focus-visible,
body.bhrc-workspace-body .bhrc-workspace-contact-inline-more,
body.bhrc-workspace-body .bhrc-workspace-contact-inline-more:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-inline-more:focus-visible {
  min-height: 20px !important;
  background: transparent !important;
  color: var(--bhrc-theme-muted, #526069) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #526069) !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-plain-button,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-plain-button:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-plain-button:focus-visible,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-inline-more,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-inline-more:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-inline-more:focus-visible {
  color: var(--bhrc-workspace-theme-accent) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-modal-messages > .bhrc-workspace-contact-message + .bhrc-workspace-contact-message {
  padding-top: 12px !important;
  border-top: 1px solid var(--bhrc-theme-line, #d8dee4) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-modal-messages > .bhrc-workspace-contact-message + .bhrc-workspace-contact-message {
  border-top-color: var(--bhrc-theme-line-strong, #46535f) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:active,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:focus-visible {
  min-width: 138px !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid #9aa3ad !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #566174 !important;
  -webkit-text-fill-color: #566174 !important;
  font-size: 0.9rem !important;
  font-weight: 560 !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:focus-visible {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  background-color: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action:focus-visible {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-workspace-theme-accent) !important;
  background-color: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-button.bhrc-workspace-settings-canonical-action .bhrc-workspace-icon {
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
  background-color: currentColor !important;
  -webkit-text-fill-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action:active,
body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action:focus-visible {
  min-width: 86px !important;
  min-height: 32px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  transform: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-call.bhrc-workspace-settings-canonical-action .bhrc-workspace-icon {
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
  background-color: currentColor !important;
  -webkit-text-fill-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-icon-button:disabled,
body.bhrc-workspace-body .bhrc-workspace-contact-icon-button.is-disabled,
body.bhrc-workspace-body .bhrc-workspace-contact-icon-button:disabled:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-icon-button.is-disabled:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button:disabled,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button.is-disabled,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button:disabled:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-menu button.is-disabled:hover {
  background: transparent !important;
  color: var(--bhrc-theme-disabled, rgba(86, 97, 116, 0.48)) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled, rgba(86, 97, 116, 0.48)) !important;
  cursor: default !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-layer {
  background: rgba(7, 12, 18, 0.42) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-modal,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-body,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-footer,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-menu,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-category-panel {
  border-color: var(--bhrc-theme-line-strong, #c7d0d8) !important;
  background: var(--bhrc-theme-panel, #ffffff) !important;
  color: var(--bhrc-theme-text, #101820) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-modal,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-body,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-footer,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-menu,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-category-panel {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: var(--bhrc-theme-panel, #11171d) !important;
  color: var(--bhrc-theme-text, #edf2f6) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-title,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-section h3,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field span,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-category-panel strong,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-menu button,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-add > button,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-add-button,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-link {
  background: transparent !important;
  color: var(--bhrc-theme-text, #101820) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820) !important;
  font-weight: 400 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-title,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-section h3 {
  font-weight: 760 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-section {
  gap: 14px !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-body {
  padding-top: 17px !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button .bhrc-workspace-icon {
  color: var(--bhrc-theme-muted, #4d5965) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #4d5965) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:hover,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:focus-visible,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button.is-active,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:hover .bhrc-workspace-icon,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:focus-visible .bhrc-workspace-icon,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button.is-active .bhrc-workspace-icon {
  background: transparent !important;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #101820)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #101820)) !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button.is-active::before {
  background: var(--bhrc-workspace-theme-accent, #566ea6) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:hover .bhrc-workspace-icon,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button:focus-visible .bhrc-workspace-icon,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-nav button.is-active .bhrc-workspace-icon {
  background: currentColor !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-heading {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-title {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-info {
  position: relative !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--bhrc-theme-muted, #6d7882) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #6d7882) !important;
  cursor: help !important;
  transform: none !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-info .bhrc-workspace-icon {
  width: 15px !important;
  height: 15px !important;
  color: currentColor !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-info::after {
  content: attr(data-bhrc-tooltip);
  position: absolute;
  z-index: 10090;
  left: 0;
  top: calc(100% + 8px);
  width: max-content;
  max-width: min(330px, calc(100vw - 56px));
  padding: 9px 11px;
  border: 1px solid var(--bhrc-theme-line-strong, #c7d0d8);
  border-radius: 6px;
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #101820);
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.16);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body.bhrc-workspace-body .bhrc-workspace-contact-section-info:hover::after,
body.bhrc-workspace-body .bhrc-workspace-contact-section-info:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-section.is-section-active > .bhrc-workspace-contact-section-heading,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-section.is-section-active > .bhrc-workspace-contact-section-heading .bhrc-workspace-contact-section-info,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-section.is-section-active > .bhrc-workspace-contact-section-heading .bhrc-workspace-icon {
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #101820)) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-text, #101820)) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 16px !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-phone-control {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: end !important;
  border-bottom: 1px solid var(--bhrc-theme-line-strong, #9aa3ad) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-phone-control input:first-child {
  text-align: left !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-phone-control:focus-within {
  border-bottom-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-line-strong, #566ea6)) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-field input,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field select,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field textarea,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-category-panel input {
  border: 0 !important;
  border-bottom: 1px solid var(--bhrc-theme-line-strong, #9aa3ad) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--bhrc-theme-text, #101820) !important;
  -webkit-text-fill-color: var(--bhrc-theme-text, #101820) !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-field input::placeholder,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field textarea::placeholder {
  color: var(--bhrc-theme-muted, #6d7882) !important;
  -webkit-text-fill-color: var(--bhrc-theme-muted, #6d7882) !important;
  opacity: 0.76 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-phone-control input,
body.bhrc-workspace-body .bhrc-workspace-contact-phone-control input:focus {
  border-bottom: 0 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-field input:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field select:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-field textarea:focus,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-category-panel input:focus {
  border-bottom-color: var(--bhrc-workspace-theme-accent, var(--bhrc-theme-line-strong, #566ea6)) !important;
  outline: 0 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo {
  position: relative !important;
  width: 108px !important;
  height: 108px !important;
  border: 2px solid var(--bhrc-workspace-theme-accent, var(--bhrc-theme-line-strong, #7d878e)) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 38%, #657078 0 15%, transparent 16%),
    radial-gradient(circle at 50% 78%, #657078 0 29%, transparent 30%),
    var(--bhrc-theme-field, #eef2f4) !important;
  box-shadow: inset 0 0 0 4px var(--bhrc-theme-panel, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo > .bhrc-workspace-contact-avatar,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo img {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 4px !important;
  padding: 12px !important;
  border-radius: 50% !important;
  background: rgba(16, 24, 32, 0.48) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 760 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 140ms ease !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo-overlay .bhrc-workspace-icon {
  width: 22px !important;
  height: 22px !important;
  color: currentColor !important;
  background-color: currentColor !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo.has-photo .bhrc-workspace-contact-edit-photo-copy.is-add,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo.has-no-photo .bhrc-workspace-contact-edit-photo-copy.is-change {
  display: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo:hover .bhrc-workspace-contact-edit-photo-overlay,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-photo:focus-visible .bhrc-workspace-contact-edit-photo-overlay {
  opacity: 1 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-photo-actions {
  position: fixed !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 10070 !important;
}

@media (max-width: 760px) {
  body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid,
  body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid.is-two,
  body.bhrc-workspace-body .bhrc-workspace-contact-edit-grid.is-three {
    grid-template-columns: 1fr !important;
  }
}

body.bhrc-workspace-body .bhrc-profile-editor-layer.is-contact-photo-target,
body.bhrc-workspace-body .bhrc-profile-photo-viewer-layer.is-contact-photo-target,
body.bhrc-workspace-body .bhrc-profile-photo-camera-layer.is-contact-photo-target,
body.bhrc-workspace-body .bhrc-profile-camera-permission-layer.is-contact-photo-target,
body.bhrc-workspace-body .bhrc-profile-photo-remove-layer.is-contact-photo-target {
  z-index: 10080 !important;
}

body.bhrc-workspace-body .bhrc-workspace-compose.is-contact-overlay {
  z-index: 10060 !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body .bhrc-workspace-contact-edit-secondary.bhrc-workspace-settings-canonical-action {
  min-width: 96px !important;
  min-height: 34px !important;
  border-radius: 999px !important;
  font-weight: 560 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action:not(:disabled) {
  border-color: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  background: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  background-color: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-footer button.bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action:not(:disabled),
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-footer button.bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action:not(:disabled):hover,
body.bhrc-workspace-body[data-bhrc-theme-accent] .bhrc-workspace-contact-edit-footer button.bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action:not(:disabled):focus-visible {
  border-color: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  background: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  background-color: var(--bhrc-workspace-theme-accent, #566ea6) !important;
  color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
}

body.bhrc-workspace-body .bhrc-workspace-contact-edit-save.bhrc-workspace-settings-canonical-action:disabled {
  border-color: var(--bhrc-theme-line-strong, #c7d0d8) !important;
  background: var(--bhrc-theme-field, #f4f5f6) !important;
  color: var(--bhrc-theme-disabled, rgba(86, 97, 116, 0.48)) !important;
  -webkit-text-fill-color: var(--bhrc-theme-disabled, rgba(86, 97, 116, 0.48)) !important;
}

body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-secondary.bhrc-workspace-settings-canonical-action,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-secondary.bhrc-workspace-settings-canonical-action:hover,
body.bhrc-workspace-body.is-workspace-dark .bhrc-workspace-contact-edit-secondary.bhrc-workspace-settings-canonical-action:focus-visible {
  border-color: var(--bhrc-theme-line-strong, #46535f) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #edf2f6 !important;
  -webkit-text-fill-color: #edf2f6 !important;
}
/* /BehindApp contact modal action contract */
/* /BehindApp compose, sweep and reader canonical active states */


/* BehindApp standalone command surface contract */
body.bhrc-standalone-reader-body .bhrc-standalone-ribbon {
  margin-left: 0;
  padding: 5px 16px;
  border-bottom: 1px solid var(--bhrc-theme-line, #dce2e7);
  background: var(--bhrc-theme-panel-muted, #f5f6f6);
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-panel.active.bhrc-workspace-balanced-ribbon {
  min-height: 38px;
  align-items: center;
  gap: clamp(2px, 0.58vw, 11px);
  overflow-x: auto;
  overflow-y: hidden;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 5px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--bhrc-theme-text, #172026);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-split {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  min-width: max-content;
  max-width: none;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-home-ribbon.active {
  overflow-x: auto;
  overflow-y: hidden;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-home-ribbon > .bhrc-workspace-ribbon-button,
body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-home-ribbon > .bhrc-workspace-ribbon-split {
  max-width: none;
  min-width: max-content;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-home-ribbon .bhrc-workspace-ribbon-button > span:not(.bhrc-workspace-icon) {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-split .bhrc-workspace-ribbon-button:first-child {
  padding-right: 0;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-caret-button {
  width: 20px;
  min-width: 20px;
  padding-right: 0;
  padding-left: 0;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-caret-button .bhrc-workspace-icon,
body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button .bhrc-workspace-ribbon-caret-icon {
  width: 14px;
  height: 14px;
}

body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button:not(:disabled):not(.bhrc-workspace-menu-disabled):hover,
body.bhrc-standalone-reader-body .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button:not(:disabled):not(.bhrc-workspace-menu-disabled):focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body.bhrc-standalone-reader-body .bhrc-standalone-dialog .bhrc-workspace-sweep-target-menu {
  max-height: 216px;
}

body.bhrc-standalone-reader-body [data-standalone-schedule-panel] .bhrc-workspace-schedule-actions .bhrc-workspace-primary:not(:disabled),
body.bhrc-standalone-reader-body [data-standalone-schedule-panel] .bhrc-workspace-schedule-actions .bhrc-workspace-primary:not(:disabled):hover,
body.bhrc-standalone-reader-body [data-standalone-schedule-panel] .bhrc-workspace-schedule-actions .bhrc-workspace-primary:not(:disabled):focus-visible {
  border-color: var(--bhrc-workspace-theme-accent, #168f54) !important;
  background: var(--bhrc-workspace-theme-accent, #168f54) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
  outline: 0 !important;
}

body.bhrc-standalone-reader-body.is-standalone-reply-active .bhrc-standalone-content .bhrc-workspace-reader-card > :not([data-standalone-reply-compose]),
body.bhrc-standalone-reader-body.is-standalone-reply-active .bhrc-standalone-content :where(
  .bhrc-workspace-reader-card > header,
  .bhrc-workspace-reader-action-stack,
  .bhrc-workspace-reader-toolbar,
  .bhrc-workspace-reader-actions,
  .bhrc-workspace-reader-tail,
  .bhrc-workspace-reader-footer
) {
  display: none !important;
  visibility: hidden !important;
}

body.bhrc-standalone-reader-body .bhrc-standalone-modal-layer.bhrc-workspace-report-layer,
body.bhrc-standalone-reader-body .bhrc-standalone-modal-layer.bhrc-workspace-sweep-layer {
  z-index: 160;
  background: rgba(17, 24, 29, 0.34);
}

body.bhrc-standalone-reader-body .bhrc-standalone-dialog.bhrc-workspace-report-dialog,
body.bhrc-standalone-reader-body .bhrc-standalone-dialog.bhrc-workspace-sweep-dialog {
  width: min(560px, calc(100vw - 48px));
  padding: 22px 24px;
  border-color: var(--bhrc-theme-line, #d9dee3);
  background: var(--bhrc-theme-panel, #ffffff);
  color: var(--bhrc-theme-text, #172026);
}

body.bhrc-standalone-reader-body .bhrc-standalone-dialog .bhrc-workspace-report-title,
body.bhrc-standalone-reader-body .bhrc-standalone-dialog .bhrc-workspace-sweep-title {
  margin: 0;
  color: var(--bhrc-theme-text, #172026);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
}

body.bhrc-standalone-reader-body .bhrc-standalone-modal-actions.bhrc-workspace-report-actions,
body.bhrc-standalone-reader-body .bhrc-standalone-modal-actions.bhrc-workspace-sweep-actions {
  gap: 10px;
}

body.bhrc-standalone-reader-body .bhrc-standalone-modal-actions .bhrc-workspace-primary,
body.bhrc-standalone-reader-body .bhrc-standalone-modal-actions .bhrc-workspace-secondary {
  min-height: 44px;
  border-radius: 999px;
  padding-right: 18px;
  padding-left: 18px;
  background-image: none !important;
  box-shadow: none !important;
  white-space: normal;
}

body.bhrc-standalone-reader-body[data-bhrc-theme-accent] .bhrc-standalone-modal-actions .bhrc-workspace-primary:not(:disabled) {
  border-color: var(--bhrc-workspace-theme-accent) !important;
  background: var(--bhrc-workspace-theme-accent) !important;
  color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast, #ffffff) !important;
}

body.bhrc-standalone-reader-body.is-workspace-dark .bhrc-standalone-ribbon {
  border-color: var(--bhrc-theme-line, #303943);
  background: var(--bhrc-theme-panel, #11171d);
}

body.bhrc-standalone-reader-body.is-workspace-dark .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button:not(:disabled):not(.bhrc-workspace-menu-disabled):hover,
body.bhrc-standalone-reader-body.is-workspace-dark .bhrc-standalone-ribbon .bhrc-workspace-ribbon-button:not(:disabled):not(.bhrc-workspace-menu-disabled):focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.bhrc-standalone-reader-body.is-workspace-dark .bhrc-standalone-modal-layer.bhrc-workspace-report-layer,
body.bhrc-standalone-reader-body.is-workspace-dark .bhrc-standalone-modal-layer.bhrc-workspace-sweep-layer {
  background: rgba(7, 10, 13, 0.62);
}
/* /BehindApp standalone command surface contract */

/* BehindApp grunge workspace surface contract */
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] {
  --bhrc-workspace-grunge-projection-color: #ffffff;
  --bhrc-workspace-grunge-tone-strength: 0;
  --bhrc-workspace-grunge-tone-color: rgb(255 255 255 / calc(var(--bhrc-workspace-grunge-tone-strength) * 0.77));
  --bhrc-workspace-grunge-projection-image: linear-gradient(var(--bhrc-workspace-grunge-tone-color), var(--bhrc-workspace-grunge-tone-color)), var(--bhrc-workspace-theme-canvas-image);
  --bhrc-workspace-grunge-projection-size: 512px 512px;
  --bhrc-workspace-grunge-projection-repeat: repeat;
  --bhrc-workspace-grunge-projection-position: 0 0;
  --bhrc-workspace-grunge-projection-attachment: fixed;
  --bhrc-workspace-grunge-projection-blend-mode: normal;
  --bhrc-workspace-grunge-foreground-shadow: 0 0 1px rgba(255, 255, 255, 0.78), 0 1px 1px rgba(255, 255, 255, 0.62);
  --bhrc-workspace-grunge-icon-shadow: drop-shadow(0 0 1px rgba(255, 255, 255, 0.62)) drop-shadow(0 1px 1px rgba(255, 255, 255, 0.68));
  --bhrc-workspace-theme-canvas-size: var(--bhrc-workspace-grunge-projection-size);
  --bhrc-workspace-theme-canvas-repeat: var(--bhrc-workspace-grunge-projection-repeat);
  --bhrc-workspace-theme-canvas-position: var(--bhrc-workspace-grunge-projection-position);
  --bhrc-workspace-theme-panel-color: transparent;
  --bhrc-workspace-grunge-surface-canvas: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-layer: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-panel: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-card: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-control: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-interactive: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-popover: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-dialog: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-media: none;
  --bhrc-workspace-grunge-surface-footer: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-panel: transparent;
  --bhrc-workspace-grunge-card: transparent;
  --bhrc-workspace-grunge-control: transparent;
  --bhrc-workspace-grunge-interactive: transparent;
  --bhrc-workspace-grunge-overlay: transparent;
  --bhrc-workspace-grunge-resident: transparent;
  --bhrc-workspace-grunge-floating: transparent;
  --bhrc-workspace-grunge-listing: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-popover: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-dialog: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-overlay-color: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-overlay-image: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-overlay-filter: none;
  --bhrc-workspace-grunge-hover: transparent;
  --bhrc-workspace-grunge-line: color-mix(in srgb, var(--bhrc-workspace-theme-accent, #c80b43) 15%, rgba(42, 58, 72, 0.30));
  --bhrc-workspace-grunge-scrollbar-track: transparent;
  --bhrc-workspace-grunge-scrollbar-thumb: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43));
  --bhrc-scrollbar-track: var(--bhrc-workspace-grunge-scrollbar-track);
  --bhrc-scrollbar-thumb: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-scrollbar-thumb-hover: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-theme-scrollbar-track: var(--bhrc-workspace-grunge-scrollbar-track);
  --bhrc-theme-scrollbar-thumb: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-theme-scrollbar-thumb-hover: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-workspace-theme-panel-layer: var(--bhrc-workspace-grunge-panel);
  --bhrc-workspace-theme-panel-layer-soft: var(--bhrc-workspace-grunge-floating);
  --bhrc-theme-panel: var(--bhrc-workspace-grunge-panel);
  --bhrc-theme-surface: var(--bhrc-workspace-grunge-panel);
  --bhrc-theme-field: var(--bhrc-workspace-grunge-control);
  --bhrc-theme-elevated: var(--bhrc-workspace-grunge-overlay);
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-canvas^="grunge-"] {
  --bhrc-workspace-grunge-projection-color: #ffffff;
  --bhrc-workspace-grunge-tone-color: rgb(13 18 23 / calc(var(--bhrc-workspace-grunge-tone-strength) * 0.79));
  --bhrc-workspace-grunge-projection-blend-mode: normal;
  --bhrc-workspace-grunge-foreground-shadow: 0 0 1px rgba(0, 0, 0, 0.82), 0 1px 1px rgba(0, 0, 0, 0.68);
  --bhrc-workspace-grunge-icon-shadow: drop-shadow(0 0 1px rgba(0, 0, 0, 0.68)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.74));
  --bhrc-workspace-theme-panel-color: transparent;
  --bhrc-workspace-grunge-surface-canvas: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-layer: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-panel: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-card: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-control: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-interactive: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-popover: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-dialog: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-surface-media: none;
  --bhrc-workspace-grunge-surface-footer: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-panel: transparent;
  --bhrc-workspace-grunge-card: transparent;
  --bhrc-workspace-grunge-control: transparent;
  --bhrc-workspace-grunge-interactive: transparent;
  --bhrc-workspace-grunge-overlay: transparent;
  --bhrc-workspace-grunge-resident: transparent;
  --bhrc-workspace-grunge-floating: transparent;
  --bhrc-workspace-grunge-listing: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-popover: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-dialog: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-overlay-color: var(--bhrc-workspace-grunge-overlay);
  --bhrc-workspace-grunge-overlay-image: var(--bhrc-workspace-grunge-projection-image);
  --bhrc-workspace-grunge-overlay-filter: none;
  --bhrc-workspace-grunge-hover: transparent;
  --bhrc-workspace-grunge-line: color-mix(in srgb, var(--bhrc-workspace-theme-accent, #ff5c8a) 20%, rgba(175, 190, 204, 0.26));
  --bhrc-workspace-grunge-scrollbar-track: transparent;
  --bhrc-workspace-grunge-scrollbar-thumb: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #ff5c8a));
  --bhrc-scrollbar-track: var(--bhrc-workspace-grunge-scrollbar-track);
  --bhrc-scrollbar-thumb: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-scrollbar-thumb-hover: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-theme-scrollbar-track: var(--bhrc-workspace-grunge-scrollbar-track);
  --bhrc-theme-scrollbar-thumb: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-theme-scrollbar-thumb-hover: var(--bhrc-workspace-grunge-scrollbar-thumb);
  --bhrc-workspace-theme-panel-layer: var(--bhrc-workspace-grunge-panel);
  --bhrc-workspace-theme-panel-layer-soft: var(--bhrc-workspace-grunge-floating);
  --bhrc-theme-panel: var(--bhrc-workspace-grunge-panel);
  --bhrc-theme-surface: var(--bhrc-workspace-grunge-panel);
  --bhrc-theme-field: var(--bhrc-workspace-grunge-control);
  --bhrc-theme-elevated: var(--bhrc-workspace-grunge-overlay);
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] {
  background-color: var(--bhrc-workspace-grunge-projection-color) !important;
  background-image: var(--bhrc-workspace-grunge-surface-canvas) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="canvas"],
  .bhrc-workspace-shell,
  .bhrc-workspace-main,
  .bhrc-workspace-top-actions
) {
  background-color: transparent !important;
  background-image: none !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="panel"],
  [data-bhrc-surface="footer"],
  .bhrc-workspace-topbar,
  .bhrc-workspace-tabs,
  .bhrc-workspace-ribbon,
  .bhrc-workspace-rail,
  .bhrc-workspace-nav,
  .bhrc-workspace-list-pane,
  .bhrc-workspace-reader,
  .bhrc-workspace-side-panel,
  .bhrc-workspace-profile-menu,
  .bhrc-workspace-profile-panel,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-filter-panel,
  .bhrc-workspace-qr-nav,
  .bhrc-workspace-qr-reader,
  .bhrc-workspace-qr-detail,
  .bhrc-workspace-footer,
  .bhrc-home-footer
) {
  background-color: var(--bhrc-workspace-grunge-panel) !important;
  background-image: var(--bhrc-workspace-grunge-surface-panel) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="card"],
  .bhrc-workspace-list-header,
  .bhrc-workspace-list-tabs,
  .bhrc-workspace-list-tools,
  .bhrc-workspace-message-date-header,
  .bhrc-workspace-message-list,
  .bhrc-workspace-reader-subject,
  .bhrc-workspace-reader-message,
  .bhrc-workspace-reader-card > header,
  .bhrc-workspace-reader-body,
  .bhrc-workspace-reader-actions,
  .bhrc-workspace-reader-compose,
  .bhrc-workspace-reader-compose-bar,
  .bhrc-workspace-reader-compose-scroll,
  .bhrc-workspace-reader-compose-row,
  .bhrc-workspace-reader-compose-preview,
  .bhrc-workspace-compose-body,
  .bhrc-workspace-compose-editor,
  .bhrc-workspace-notification-item,
  .bhrc-workspace-notice-blank,
  .bhrc-workspace-empty,
  .bhrc-workspace-search-tabs-wrap,
  .bhrc-workspace-search-tabs,
  .bhrc-workspace-search-history,
  .bhrc-workspace-search-empty,
  .bhrc-workspace-filter-row,
  .bhrc-workspace-filter-date-row,
  .bhrc-workspace-filter-modal footer,
  .bhrc-workspace-profile-contact,
  .bhrc-workspace-profile-identifiers,
  .bhrc-workspace-profile-identity-row,
  .bhrc-workspace-profile-actions,
  .bhrc-workspace-profile-photo-actions,
  .bhrc-workspace-help-card,
  .bhrc-workspace-help-info-card,
  .bhrc-workspace-help-topic,
  .bhrc-workspace-help-article-tools,
  .bhrc-workspace-help-search-results,
  .bhrc-workspace-help-search-results button,
  .bhrc-workspace-help-article,
  .bhrc-workspace-help-article section,
  .bhrc-workspace-tip-card,
  .bhrc-workspace-support-form,
  .bhrc-workspace-support-message,
  .bhrc-workspace-support-file-row,
  .bhrc-workspace-support-file-name,
  .bhrc-workspace-support-actions,
  .bhrc-workspace-settings-account-section,
  .bhrc-workspace-settings-account-row,
  .bhrc-workspace-settings-account-details,
  .bhrc-workspace-settings-account-details-header,
  .bhrc-workspace-settings-signature-empty,
  .bhrc-workspace-settings-signature-empty-inner,
  .bhrc-workspace-settings-storage-card,
  .bhrc-workspace-settings-storage-table,
  .bhrc-workspace-settings-storage-head,
  .bhrc-workspace-settings-storage-folder-list,
  .bhrc-workspace-settings-import-empty,
  .bhrc-workspace-settings-notification-intro,
  .bhrc-workspace-settings-notification-group,
  .bhrc-workspace-settings-category-table,
  .bhrc-workspace-settings-category-head,
  .bhrc-workspace-settings-category-list,
  .bhrc-workspace-settings-mail-layout-section,
  .bhrc-workspace-settings-mail-layout-choice,
  .bhrc-workspace-signature-editor-card,
  .bhrc-workspace-contact-card,
  .bhrc-workspace-contact-card-fixed,
  .bhrc-workspace-contact-card-scroll,
  .bhrc-workspace-contact-message-card,
  .bhrc-workspace-contact-modal-content section,
  .bhrc-workspace-settings-detail table,
  .bhrc-workspace-settings-detail thead,
  .bhrc-workspace-settings-detail tbody,
  .bhrc-workspace-settings-detail tr,
  .bhrc-workspace-qr-tabs,
  .bhrc-workspace-qr-sticky-head,
  .bhrc-workspace-qr-block-head,
  .bhrc-workspace-qr-block-row,
  .bhrc-workspace-qr-transaction-header,
  .bhrc-workspace-qr-transaction-index,
  .bhrc-workspace-qr-transaction-index-item,
  .bhrc-workspace-qr-mempool-notice,
  .bhrc-workspace-qr-mempool-empty,
  .bhrc-workspace-qr-reader-empty
) {
  background-color: var(--bhrc-workspace-grunge-card) !important;
  background-image: var(--bhrc-workspace-grunge-surface-card) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-message-card:not(.active):not([aria-selected="true"]) {
  background-color: var(--bhrc-workspace-grunge-card) !important;
  background-image: var(--bhrc-workspace-grunge-surface-card) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="control"],
  .bhrc-workspace-search,
  .bhrc-workspace-scope,
  .bhrc-workspace-searchbox,
  .bhrc-workspace-searchbox input,
  .bhrc-workspace-search-back,
  .bhrc-workspace-search-filter,
  .bhrc-workspace-search-submit,
  .bhrc-workspace-search-tabs-scroll,
  .bhrc-workspace-settings-search,
  .bhrc-workspace-settings-search input,
  .bhrc-workspace-help-search,
  .bhrc-workspace-help-search input,
  .bhrc-workspace-compose-emoji-search,
  .bhrc-workspace-compose-emoji-search input,
  .bhrc-workspace-rule-folder-search,
  .bhrc-workspace-rule-folder-search input,
  .bhrc-workspace-secondary,
  .bhrc-workspace-filter-add,
  .bhrc-workspace-filter-row button,
  .bhrc-workspace-help-back,
  .bhrc-workspace-tip-action,
  .bhrc-workspace-support-file-button,
  .bhrc-workspace-support-cancel,
  .bhrc-workspace-support-send:disabled,
  .bhrc-workspace-profile-manage,
  .bhrc-workspace-profile-actions button,
  .bhrc-workspace-profile-secret-toggle,
  .bhrc-workspace-profile-secret-copy,
  .bhrc-workspace-settings-signature-select,
  .bhrc-workspace-settings-mail-layout-account-toggle,
  .bhrc-workspace-settings-auto-delete,
  .bhrc-workspace-settings-auto-save:disabled,
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  [contenteditable="true"]
) {
  background-color: var(--bhrc-workspace-grunge-control) !important;
  background-image: var(--bhrc-workspace-grunge-surface-control) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-side-panel,
  .bhrc-workspace-search-layer,
  .bhrc-workspace-filter-modal,
  .bhrc-workspace-profile-menu,
  .bhrc-workspace-profile-panel,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-notifications-panel,
  .bhrc-workspace-tasks-panel,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-footer,
  .bhrc-home-footer,
  [role="dialog"],
  [role="menu"],
  [role="listbox"]
) :is(
  button:not(.bhrc-workspace-primary):not(.bhrc-home-login-button):not(.active):not(.is-active):not(.bhrc-workspace-schedule-day):not([aria-selected="true"]):not([aria-pressed="true"]),
  [role="button"]:not(.bhrc-workspace-primary):not(.bhrc-home-login-button):not(.active):not(.is-active):not([aria-selected="true"]):not([aria-pressed="true"])
) {
  background-color: var(--bhrc-workspace-grunge-interactive) !important;
  background-image: var(--bhrc-workspace-grunge-surface-interactive) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="popover"],
  .bhrc-workspace-search-layer,
  .bhrc-workspace-search-history,
  .bhrc-workspace-search-results,
  .bhrc-workspace-wide-menu,
  .bhrc-workspace-apps-menu,
  .bhrc-workspace-list-dropdown-menu,
  .bhrc-workspace-list-filter-menu,
  .bhrc-workspace-list-sort-menu,
  .bhrc-workspace-menu,
  .bhrc-workspace-reader-attachment-menu,
  .bhrc-workspace-reader-reply-menu,
  .bhrc-workspace-reader-more-menu,
  .bhrc-workspace-reader-translate-menu,
  .bhrc-workspace-folder-menu,
  .bhrc-workspace-signature-default-menu,
  .bhrc-workspace-signature-insert-menu,
  .bhrc-workspace-signature-table-menu,
  .bhrc-workspace-signature-more-menu,
  .bhrc-workspace-compose-format-menu,
  .bhrc-workspace-compose-send-menu,
  .bhrc-workspace-confidential-expiry-menu,
  .bhrc-workspace-import-folder-menu,
  .bhrc-workspace-export-menu,
  .bhrc-workspace-category-shortcut-menu,
  .bhrc-workspace-date-preset-menu,
  .bhrc-workspace-settings-date-popover,
  .bhrc-workspace-language-time-menu,
  .bhrc-workspace-settings-account-phone-menu,
  .bhrc-workspace-settings-account-select-menu,
  .bhrc-workspace-settings-mail-layout-account-menu,
  .bhrc-workspace-account-birth-date-popover,
  .bhrc-workspace-contact-card,
  .bhrc-workspace-contact-menu,
  .bhrc-workspace-contact-edit-menu,
  .bhrc-workspace-contact-phone-menu,
  .bhrc-workspace-move-menu,
  .bhrc-workspace-category-menu,
  .bhrc-workspace-flag-menu,
  .bhrc-workspace-snooze-menu,
  .bhrc-workspace-report-menu,
  .bhrc-workspace-file-save-menu,
  .bhrc-workspace-sweep-target-menu
) {
  background-color: var(--bhrc-workspace-grunge-popover) !important;
  background-image: var(--bhrc-workspace-grunge-surface-popover) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="dialog"],
  [role="dialog"],
  .bhrc-workspace-filter-modal,
  .bhrc-workspace-import-dialog,
  .bhrc-workspace-export-dialog,
  .bhrc-workspace-category-edit-dialog,
  .bhrc-workspace-category-delete-dialog,
  .bhrc-workspace-signature-dialog,
  .bhrc-workspace-signature-delete-dialog,
  .bhrc-workspace-signature-table-dialog,
  .bhrc-workspace-signature-link-dialog,
  .bhrc-workspace-account-delete-dialog,
  .bhrc-workspace-rule-dialog,
  .bhrc-workspace-report-dialog,
  .bhrc-workspace-sweep-dialog,
  .bhrc-workspace-contact-modal,
  .bhrc-workspace-contact-edit-modal,
  .bhrc-workspace-qr-transaction-modal,
  .bhrc-workspace-qr-transaction-modal-content
) {
  background-color: var(--bhrc-workspace-grunge-dialog) !important;
  background-image: var(--bhrc-workspace-grunge-surface-dialog) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  [data-bhrc-surface="media"],
  .bhrc-workspace-empty-illustration,
  .bhrc-workspace-no-data-icon,
  .bhrc-workspace-qr-data-collection-icon,
  .bhrc-workspace-settings-import-empty-icon,
  .bhrc-workspace-settings-signature-id-badge,
  .bhrc-workspace-notification-empty-animation,
  .bhrc-workspace-contact-empty-animation,
  .bhrc-workspace-contact-modal-files.is-empty,
  .bhrc-workspace-qr-reader-empty img,
  .bhrc-workspace-notice-blank img,
  [data-bhrc-animated-icon],
  [data-bhrc-no-data-icon],
  img[src$=".gif"],
  img[src*=".gif?"]
) {
  background-color: transparent !important;
  background-image: var(--bhrc-workspace-grunge-surface-media) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-home-footer-inner,
  .bhrc-workspace-profile-menu footer,
  .bhrc-workspace-profile-panel footer,
  .bhrc-workspace-compose footer,
  .bhrc-workspace-signature-dialog-footer,
  .bhrc-workspace-filter-modal footer,
  .bhrc-workspace-settings-auto-actions,
  .bhrc-workspace-settings-signature-settings-actions,
  .bhrc-workspace-confidential-panel footer
) {
  background-color: transparent !important;
  background-image: var(--bhrc-workspace-grunge-surface-footer) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"],
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-shell,
  .bhrc-workspace-main,
  .bhrc-workspace-nav,
  .bhrc-workspace-list-pane,
  .bhrc-workspace-reader,
  .bhrc-workspace-side-panel,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-help-content,
  .bhrc-workspace-support-form,
  .bhrc-workspace-search-layer,
  .bhrc-workspace-filter-panel,
  .bhrc-workspace-contact-modal-content,
  .bhrc-workspace-qr-nav,
  .bhrc-workspace-qr-reader,
  .bhrc-workspace-qr-detail
) {
  scrollbar-color: var(--bhrc-workspace-grunge-scrollbar-thumb) var(--bhrc-workspace-grunge-scrollbar-track) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-track,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-track:hover,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-corner {
  background: var(--bhrc-workspace-grunge-scrollbar-track) !important;
  background-color: var(--bhrc-workspace-grunge-scrollbar-track) !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-thumb,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-thumb:hover,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] *::-webkit-scrollbar-thumb:active {
  background: var(--bhrc-workspace-grunge-scrollbar-thumb) !important;
  background-color: var(--bhrc-workspace-grunge-scrollbar-thumb) !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-topbar,
  .bhrc-workspace-tabs,
  .bhrc-workspace-ribbon,
  .bhrc-workspace-nav,
  .bhrc-workspace-list-pane,
  .bhrc-workspace-reader,
  .bhrc-workspace-side-panel,
  .bhrc-workspace-profile-panel,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-layout,
  .bhrc-workspace-settings-column,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-qr-nav,
  .bhrc-workspace-qr-reader,
  .bhrc-workspace-qr-detail,
  .bhrc-workspace-shell > .bhrc-home-footer
) {
  border-color: var(--bhrc-workspace-grunge-line) !important;
  background-clip: padding-box !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-nav,
  .bhrc-workspace-list-pane,
  .bhrc-workspace-reader,
  .bhrc-workspace-side-panel,
  .bhrc-workspace-settings-layout,
  .bhrc-workspace-settings-column,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-qr-nav,
  .bhrc-workspace-qr-reader,
  .bhrc-workspace-qr-detail,
  .bhrc-workspace-shell > .bhrc-home-footer
) {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-rail,
  .bhrc-workspace-tabs,
  .bhrc-workspace-ribbon
) {
  border-top-color: transparent !important;
  border-bottom-color: var(--bhrc-workspace-grunge-line) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-rail {
  border-bottom-color: transparent !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-search,
  .bhrc-workspace-searchbox,
  .bhrc-workspace-settings-search,
  .bhrc-workspace-help-search,
  .bhrc-workspace-wide-menu,
  .bhrc-workspace-apps-menu,
  .bhrc-workspace-menu,
  .bhrc-workspace-search-layer,
  .bhrc-workspace-filter-panel,
  .bhrc-workspace-filter-modal,
  .bhrc-workspace-profile-menu,
  .bhrc-workspace-profile-panel,
  .bhrc-workspace-help-panel,
  .bhrc-workspace-settings-panel,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-signature-dialog,
  .bhrc-workspace-import-dialog,
  .bhrc-workspace-export-dialog,
  .bhrc-workspace-category-edit-dialog,
  .bhrc-workspace-account-delete-dialog,
  .bhrc-workspace-rule-dialog,
  .bhrc-workspace-report-dialog,
  .bhrc-workspace-contact-modal-content,
  .bhrc-workspace-qr-transaction-modal-content,
  [role="dialog"],
  [role="menu"],
  [role="listbox"]
) {
  border-color: var(--bhrc-workspace-grunge-line) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: var(--bhrc-workspace-grunge-overlay-filter);
  backdrop-filter: var(--bhrc-workspace-grunge-overlay-filter);
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  button:not(.bhrc-workspace-primary):not(.bhrc-home-login-button):not(.active):not(.is-active):not(.bhrc-workspace-schedule-day):not([aria-selected="true"]):not([aria-pressed="true"]),
  [role="button"]:not(.bhrc-workspace-primary):not(.bhrc-home-login-button):not(.active):not(.is-active):not([aria-selected="true"]):not([aria-pressed="true"]),
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  [contenteditable="true"]
):hover {
  background-color: var(--bhrc-workspace-grunge-hover) !important;
  background-image: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-empty-illustration,
  .bhrc-workspace-no-data-icon,
  .bhrc-workspace-qr-data-collection-icon,
  .bhrc-workspace-settings-import-empty-icon,
  .bhrc-workspace-settings-export-empty-icon,
  .bhrc-workspace-settings-signature-id-badge,
  .bhrc-workspace-notification-empty-animation,
  .bhrc-workspace-contact-empty-animation,
  .bhrc-workspace-qr-reader-empty img,
  .bhrc-workspace-notice-blank img,
  [data-bhrc-animated-icon],
  [data-bhrc-no-data-icon],
  img[src$=".gif"],
  img[src*=".gif?"]
) {
  mix-blend-mode: multiply !important;
  filter: saturate(0.96) contrast(1.04) !important;
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-empty-illustration,
  .bhrc-workspace-no-data-icon,
  .bhrc-workspace-qr-data-collection-icon,
  .bhrc-workspace-settings-import-empty-icon,
  .bhrc-workspace-settings-export-empty-icon,
  .bhrc-workspace-settings-signature-id-badge,
  .bhrc-workspace-notification-empty-animation,
  .bhrc-workspace-contact-empty-animation,
  .bhrc-workspace-qr-reader-empty img,
  .bhrc-workspace-notice-blank img,
  [data-bhrc-animated-icon],
  [data-bhrc-no-data-icon],
  img[src$=".gif"],
  img[src*=".gif?"]
) {
  mix-blend-mode: multiply !important;
  opacity: 1 !important;
  filter: saturate(0.9) contrast(1.06) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-notice-blank span {
  background: transparent !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-compose
) {
  background-color: var(--bhrc-workspace-grunge-floating) !important;
  background-image: var(--bhrc-workspace-grunge-surface-panel) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: var(--bhrc-workspace-grunge-overlay-filter) !important;
  backdrop-filter: var(--bhrc-workspace-grunge-overlay-filter) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-confidential-card {
  background-color: var(--bhrc-workspace-grunge-card) !important;
  background-image: var(--bhrc-workspace-grunge-surface-card) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-compose-link-panel,
  .bhrc-workspace-compose-emoji-panel,
  .bhrc-workspace-confidential-panel
) {
  background-color: var(--bhrc-workspace-grunge-overlay) !important;
  background-image: var(--bhrc-workspace-grunge-surface-popover) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-editor {
  background-color: var(--bhrc-workspace-grunge-control) !important;
  background-image: var(--bhrc-workspace-grunge-surface-control) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-formatbar {
  background-color: transparent !important;
  background-image: none !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment, fixed) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-format-menu,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] [data-bhrc-compose-format-menu] {
  background-color: var(--bhrc-workspace-grunge-popover) !important;
  background-image: var(--bhrc-workspace-grunge-surface-popover) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-blend-mode: var(--bhrc-workspace-grunge-projection-blend-mode) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-tools,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-reader-compose-send-group,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send],
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-reader-compose-send] {
  background-color: var(--bhrc-workspace-grunge-overlay-color) !important;
  background-image: var(--bhrc-workspace-grunge-overlay-image) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment, fixed) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-options,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group > .bhrc-workspace-compose-send-options,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group > button.bhrc-workspace-compose-send-options,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-options:not(:disabled),
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-options:hover,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-options:focus-visible,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-options:active {
  background: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-image: none !important;
  background-attachment: initial !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-size: initial !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  color: var(--bhrc-workspace-theme-accent-contrast) !important;
  -webkit-text-fill-color: var(--bhrc-workspace-theme-accent-contrast) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group:hover .bhrc-workspace-compose-send-options,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group:focus-within .bhrc-workspace-compose-send-options {
  background: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-image: none !important;
  background-attachment: initial !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-size: initial !important;
  border-color: var(--bhrc-theme-line-strong) !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool:hover,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool:focus-visible,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool:active,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool.is-active,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool[data-bhrc-compose-tool-active="true"],
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool[aria-pressed="true"],
  .bhrc-workspace-compose-tools .bhrc-workspace-attach-button,
  .bhrc-workspace-compose-tools .bhrc-workspace-attach-button:hover,
  .bhrc-workspace-compose-tools .bhrc-workspace-attach-button:focus-visible,
  .bhrc-workspace-compose-tools .bhrc-workspace-attach-button:active,
  .bhrc-workspace-compose-tools .bhrc-workspace-attach-button[data-bhrc-compose-tool-active="true"],
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool[data-bhrc-compose-format-active="true"],
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool[data-bhrc-compose-format-active="true"]:hover,
  .bhrc-workspace-compose-tools .bhrc-workspace-compose-tool[data-bhrc-compose-format-active="true"]:focus-visible,
  .bhrc-workspace-compose-formatbar button,
  .bhrc-workspace-compose-formatbar button:hover,
  .bhrc-workspace-compose-formatbar button:focus-visible,
  .bhrc-workspace-compose-formatbar button:active
) {
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group:hover,
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-compose-send-group:focus-within {
  background-color: var(--bhrc-workspace-grunge-overlay-color) !important;
  background-image: var(--bhrc-workspace-grunge-overlay-image) !important;
  background-attachment: var(--bhrc-workspace-grunge-projection-attachment, fixed) !important;
  background-position: var(--bhrc-workspace-theme-canvas-position) !important;
  background-repeat: var(--bhrc-workspace-theme-canvas-repeat) !important;
  background-size: var(--bhrc-workspace-theme-canvas-size) !important;
  background-clip: padding-box !important;
  box-shadow: none !important;
  border-color: var(--bhrc-workspace-grunge-line) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-reader-actions .bhrc-workspace-reader-reply-button,
  .bhrc-workspace-compose-tool,
  .bhrc-workspace-compose-discard,
  .bhrc-workspace-compose-recipient-actions button,
  .bhrc-workspace-profile-actions button:disabled,
  .bhrc-workspace-profile-actions button[aria-disabled="true"]
) {
  color: var(--bhrc-theme-text, #172026) !important;
  -webkit-text-fill-color: currentColor !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-message-attachment-count-badge,
  .bhrc-workspace-message-attachment-count-badge *
) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-message-attachment-summary .bhrc-workspace-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  -webkit-text-fill-color: currentColor !important;
  background: currentColor !important;
  background-color: currentColor !important;
  opacity: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-message-attachment-count-badge {
  display: inline-grid !important;
  place-items: center !important;
  min-width: 16px !important;
  width: 16px !important;
  height: 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  background-color: var(--bhrc-workspace-theme-accent, var(--bhrc-accent, #c80b43)) !important;
  box-shadow: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.68rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-message-card.active,
  .bhrc-workspace-message-card[aria-selected="true"]
) :is(
  .bhrc-workspace-message-attachment-count-badge,
  .bhrc-workspace-message-attachment-count-badge *
) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-qr-mempool-empty .bhrc-workspace-qr-data-collection-icon {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  mix-blend-mode: multiply !important;
}

body.bhrc-workspace-body.is-workspace-dark[data-bhrc-theme-canvas^="grunge-"] .bhrc-workspace-qr-mempool-empty .bhrc-workspace-qr-data-collection-icon {
  filter: invert(1) hue-rotate(180deg) contrast(1.08) saturate(0.95) !important;
  mix-blend-mode: screen !important;
}

/* Grunge projection boundary: one viewport-anchored wallpaper repaint per
   semantic layer; nested layout shells reveal their owning projection. */
body.bhrc-workspace-body[data-bhrc-theme-canvas^="grunge-"] :is(
  .bhrc-workspace-top-actions,
  .bhrc-home-footer-inner,
  .bhrc-workspace-list-header,
  .bhrc-workspace-list-tabs,
  .bhrc-workspace-list-tools,
  .bhrc-workspace-message-date-header,
  .bhrc-workspace-message-list,
  .bhrc-workspace-reader-subject,
  .bhrc-workspace-reader-message,
  .bhrc-workspace-reader-card,
  .bhrc-workspace-reader-card > header,
  .bhrc-workspace-reader-body,
  .bhrc-workspace-reader-actions,
  .bhrc-workspace-reader-compose-bar,
  .bhrc-workspace-reader-compose-scroll,
  .bhrc-workspace-reader-compose-row,
  .bhrc-workspace-reader-compose-editor,
  .bhrc-workspace-reader-compose-preview,
  .bhrc-workspace-compose > header,
  .bhrc-workspace-compose > footer,
  .bhrc-workspace-compose-body,
  .bhrc-workspace-compose-recipients,
  .bhrc-workspace-compose-field,
  .bhrc-workspace-compose-attachments,
  .bhrc-workspace-compose-formatbar,
  .bhrc-workspace-compose-tools,
  .bhrc-workspace-profile-hero,
  .bhrc-workspace-profile-contact,
  .bhrc-workspace-profile-identifiers,
  .bhrc-workspace-profile-identity-row,
  .bhrc-workspace-profile-actions,
  .bhrc-workspace-profile-photo-actions,
  .bhrc-workspace-help-scroll,
  .bhrc-workspace-help-content,
  .bhrc-workspace-help-view,
  .bhrc-workspace-tips-view,
  .bhrc-workspace-tips-list,
  .bhrc-workspace-settings-header,
  .bhrc-workspace-settings-layout,
  .bhrc-workspace-settings-column,
  .bhrc-workspace-settings-menu,
  .bhrc-workspace-settings-detail,
  .bhrc-workspace-settings-detail-view,
  .bhrc-workspace-settings-detail-header,
  .bhrc-workspace-settings-detail-body,
  .bhrc-workspace-filter-options,
  .bhrc-workspace-contact-modal-content,
  .bhrc-workspace-qr-block-list,
  .bhrc-workspace-qr-detail-sticky,
  .bhrc-workspace-qr-detail-sticky > .bhrc-workspace-qr-detail-header,
  .bhrc-workspace-qr-detail-heading,
  .bhrc-workspace-qr-transaction,
  .bhrc-workspace-qr-transaction-modal-content
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  background-attachment: initial !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-size: initial !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}








/* /BehindApp grunge workspace surface contract */
