: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;
}

* {
  box-sizing: border-box;
}

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-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 */
body.bhrc-home-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #0f1115;
  background: #ffffff !important;
}

body.bhrc-home-body::before {
  display: none;
}

body.bhrc-home-body a {
  color: #566174;
  text-decoration: none;
}

body.bhrc-home-body a:hover {
  text-decoration: none;
}

.bhrc-home-page {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: 698px;
  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: 698px;
  padding: 46px 40px;
  border-right: 1px solid #d8dde3;
  overflow: hidden;
}

.bhrc-home-logo-sketch {
  position: absolute;
  top: 30px;
  left: 37px;
  width: 334px;
  height: auto;
  overflow: visible;
  mix-blend-mode: multiply;
}

.bhrc-home-logo-chevron-border,
.bhrc-home-logo-chevron {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.bhrc-home-logo-chevron-border {
  stroke: rgba(32, 37, 43, 0.48);
  stroke-width: 72;
}

.bhrc-home-logo-chevron {
  stroke-width: 58;
}

.bhrc-home-logo-mark {
  stroke: rgba(36, 42, 49, 0.42);
  stroke-width: 5.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.bhrc-home-logo-edge {
  fill: none;
  stroke: rgba(32, 37, 43, 0.28);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}

.bhrc-home-logo-line {
  fill: none;
  stroke: rgba(32, 37, 43, 0.15);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bhrc-home-sketch {
  position: absolute;
  top: 48px;
  left: 44%;
  width: 590px;
  height: 560px;
  transform: translateX(-38%);
}

.bhrc-home-field {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}

.bhrc-home-field::before,
.bhrc-home-field::after {
  content: "";
  position: absolute;
  border-style: dashed;
  border-color: rgba(116, 125, 136, 0.28);
}

.bhrc-home-field::before {
  top: 52px;
  left: 44px;
  width: 348px;
  height: 314px;
  border-width: 1px;
  border-radius: 46% 54% 47% 53%;
  transform: rotate(-9deg);
}

.bhrc-home-field::after {
  top: 76px;
  left: 96px;
  width: 260px;
  height: 236px;
  border-width: 1px;
  border-radius: 48% 52% 54% 46%;
  opacity: 0.72;
  transform: rotate(13deg);
}

.bhrc-home-chain-line {
  position: absolute;
  z-index: 2;
  height: 4px;
  border-top: 2px solid rgba(37, 43, 50, 0.42);
  border-bottom: 1px dashed rgba(37, 43, 50, 0.18);
  transform-origin: left center;
}

.bhrc-home-chain-line.line-one {
  top: 176px;
  left: 66px;
  width: 136px;
  transform: rotate(-29deg);
}

.bhrc-home-chain-line.line-two {
  top: 148px;
  left: 184px;
  width: 132px;
  transform: rotate(28deg);
}

.bhrc-home-chain-line.line-three {
  top: 230px;
  left: 92px;
  width: 202px;
  transform: rotate(8deg);
}

.bhrc-home-chain-line.line-four {
  top: 246px;
  left: 264px;
  width: 128px;
  transform: rotate(-34deg);
}

.bhrc-home-chain-line.line-five {
  top: 296px;
  left: 162px;
  width: 142px;
  transform: rotate(33deg);
}

.bhrc-home-node {
  position: absolute;
  z-index: 5;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(34, 39, 46, 0.55);
  border-radius: 21px;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.075) 0, rgba(15, 17, 21, 0.075) 1px, transparent 1px, transparent 7px),
    rgba(255, 255, 255, 0.94);
  box-shadow: 3px 4px 0 rgba(15, 17, 21, 0.12), inset 0 0 0 2px rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
}

.bhrc-home-node::before {
  content: "";
  width: 29px;
  height: 29px;
  border: 2px solid rgba(34, 39, 46, 0.2);
  border-radius: 50%;
  transform: rotate(-45deg);
}

.bhrc-home-node.node-alpha {
  top: 154px;
  left: 34px;
}

.bhrc-home-node.node-alpha::before {
  background: rgba(111, 143, 199, 0.82);
}

.bhrc-home-node.node-beta {
  top: 72px;
  left: 178px;
  width: 86px;
  height: 86px;
}

.bhrc-home-node.node-beta::before {
  background: rgba(117, 169, 138, 0.82);
}

.bhrc-home-node.node-gamma {
  top: 202px;
  left: 304px;
}

.bhrc-home-node.node-gamma::before {
  background: rgba(148, 132, 189, 0.82);
}

.bhrc-home-node.node-delta {
  top: 284px;
  left: 140px;
}

.bhrc-home-node.node-delta::before {
  background: rgba(210, 160, 109, 0.82);
}

.bhrc-home-genesis {
  position: absolute;
  top: 164px;
  left: 178px;
  z-index: 7;
  width: 118px;
  height: 118px;
  border: 2px solid rgba(34, 39, 46, 0.6);
  border-radius: 30px;
  background:
    repeating-linear-gradient(-20deg, rgba(15, 17, 21, 0.08) 0, rgba(15, 17, 21, 0.08) 1px, transparent 1px, transparent 8px),
    radial-gradient(circle at 35% 30%, rgba(111, 143, 199, 0.8) 0 18px, transparent 19px),
    radial-gradient(circle at 64% 61%, rgba(117, 169, 138, 0.78) 0 22px, transparent 23px),
    rgba(255, 255, 255, 0.96);
  box-shadow: 5px 7px 0 rgba(15, 17, 21, 0.13), inset 0 0 0 4px rgba(255, 255, 255, 0.84);
  transform: rotate(45deg);
}

.bhrc-home-genesis::before,
.bhrc-home-genesis::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(34, 39, 46, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
}

.bhrc-home-genesis::before {
  top: 40px;
  left: 25px;
  width: 68px;
  height: 12px;
}

.bhrc-home-genesis::after {
  top: 62px;
  left: 34px;
  width: 50px;
  height: 12px;
}

.bhrc-home-hash-slip {
  position: absolute;
  z-index: 6;
  width: 156px;
  min-height: 86px;
  padding: 16px 15px;
  border: 1px solid rgba(154, 163, 173, 0.7);
  border-radius: 8px;
  background:
    repeating-linear-gradient(-10deg, rgba(15, 17, 21, 0.05) 0, rgba(15, 17, 21, 0.05) 1px, transparent 1px, transparent 8px),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(15, 17, 21, 0.11), inset 0 0 0 1px rgba(255, 255, 255, 0.88);
}

.bhrc-home-hash-slip::before,
.bhrc-home-hash-slip::after {
  content: "";
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(154, 163, 173, 0.28);
}

.bhrc-home-hash-slip::before {
  width: 112px;
  margin-bottom: 12px;
  box-shadow: 0 20px 0 rgba(154, 163, 173, 0.18);
}

.bhrc-home-hash-slip::after {
  width: 76px;
  margin-top: 28px;
}

.bhrc-home-hash-slip.slip-one {
  top: 32px;
  left: 62px;
  transform: rotate(-8deg);
}

.bhrc-home-hash-slip.slip-two {
  right: 20px;
  bottom: 52px;
  transform: rotate(7deg);
}

.bhrc-home-token {
  position: absolute;
  z-index: 8;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(34, 39, 46, 0.28);
  border-radius: 50%;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.07) 0, rgba(15, 17, 21, 0.07) 1px, transparent 1px, transparent 7px),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(15, 17, 21, 0.12);
}

.bhrc-home-token::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: rgba(111, 143, 199, 0.78);
  box-shadow: 24px 18px 0 -6px rgba(117, 169, 138, 0.78), -16px 20px 0 -7px rgba(210, 160, 109, 0.78);
}

.bhrc-home-token.token-one {
  top: 52px;
  right: 66px;
}

.bhrc-home-token.token-two {
  top: 18px;
  left: 26px;
  width: 48px;
  height: 48px;
}

.bhrc-home-slogan {
  position: absolute;
  left: 40px;
  bottom: 82px;
  max-width: 380px;
  margin: 0;
  color: #a8afb8;
  font-size: 57px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 820;
}

.bhrc-home-slogan span {
  display: block;
}

.bhrc-home-slogan span:first-child {
  color: #1f2937;
  background:
    repeating-linear-gradient(-18deg, rgba(15, 17, 21, 0.28) 0, rgba(15, 17, 21, 0.28) 2px, transparent 2px, transparent 8px),
    linear-gradient(180deg, rgba(32, 37, 43, 0.9), rgba(32, 37, 43, 0.64));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 0 rgba(15, 17, 21, 0.09);
}

.bhrc-home-right {
  position: relative;
  min-height: 698px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 135px 52px 46px;
  background: rgba(255, 255, 255, 0.88);
}

.bhrc-home-login {
  width: min(100%, 546px);
}

.bhrc-home-profile-settings {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 88px;
  right: 72px;
  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: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;
}

.bhrc-home-remembered {
  width: min(100%, 546px);
  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: 92px;
}

.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;
}

.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;
}

.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;
}

.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-field-group {
  position: relative;
  margin-bottom: 15px;
}

.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: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;
}

.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;
  }
}

.bhrc-home-captcha {
  margin: 2px 0 0;
  padding: 10px 12px 12px;
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  background: #ffffff;
}

.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-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-login-verification[hidden] {
  display: none;
}

.bhrc-home-login-verification h3 {
  margin: 0 0 6px;
  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-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: 740;
  transform: none;
  transition: none;
}

.bhrc-home-login-button {
  margin-top: 11px;
  border: 1px solid rgba(32, 37, 43, 0.48);
  color: #566174;
  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));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
}

.bhrc-home-login-button:hover {
  border-color: rgba(32, 37, 43, 0.48);
  color: #1f2937;
  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));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
  text-decoration: none;
  transform: none;
}

.bhrc-home-login-button:active,
.bhrc-home-login-button:focus {
  border-color: rgba(32, 37, 43, 0.48);
  color: #1f2937;
  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));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
  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: rgba(32, 37, 43, 0.48);
  color: #566174;
  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));
  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-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;
}

.bhrc-home-footer {
  border-top: 1px solid #d8dde3;
  background: #ffffff;
}

.bhrc-home-footer-inner {
  width: min(1070px, calc(100% - 42px));
  margin: 0 auto;
  padding: 31px 0 14px;
  color: #606b7d;
  font-size: 14px;
}

.bhrc-home-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 27px;
  margin-bottom: 15px;
}

.bhrc-home-footer-row [data-bhrc-locale-option][aria-current="true"] {
  color: #111827;
  font-weight: 780;
}

.bhrc-home-footer-copy {
  margin: 3px 0 0;
  color: #4b5563;
  font-size: 14px;
}

.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: 32px;
  height: 32px;
  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: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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

@media (max-width: 680px) {
  .bhrc-home-profile-settings {
    top: 24px;
    right: 24px;
  }

  .bhrc-home-has-remembered-profile .bhrc-home-right {
    padding: 86px 24px 54px;
  }

  .bhrc-home-remembered-avatar {
    width: 136px;
    height: 136px;
    margin-bottom: 22px;
  }

  .bhrc-confirmation-dialog,
  .bhrc-home-dialog {
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .bhrc-confirmation-dialog-actions {
    grid-template-columns: 1fr;
  }

  .bhrc-home-profile-remove-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .bhrc-home-remove-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.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;
}

.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;
}

.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;
  }
}

.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);
}

.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;
}

.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;
}

.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;
}

.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;
}

@media (max-width: 1040px) {
  .bhrc-home-page {
    grid-template-columns: 1fr;
  }

  .bhrc-home-left {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid #d8dde3;
  }

  .bhrc-home-right {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .bhrc-home-sketch {
    left: 50%;
    transform: translateX(-36%);
  }
}

@media (max-width: 680px) {
  .bhrc-home-left {
    min-height: 610px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .bhrc-home-sketch {
    top: 46px;
    left: 50%;
    width: 392px;
    height: 430px;
    transform: translateX(-45%) scale(0.86);
    transform-origin: top center;
  }

  .bhrc-home-slogan {
    left: 24px;
    bottom: 72px;
    max-width: 310px;
    font-size: 45px;
  }

  .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 */

/* 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);
  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;
}

.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;
}

.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-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-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-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-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-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-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-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-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-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-marker {
  -webkit-mask-image: url("/static/icons/behindapp/marker.svg");
  mask-image: url("/static/icons/behindapp/marker.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-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-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-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-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;
}

.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;
}

.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;
}

.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: "";
}

.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;
}

.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;
}

.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-main em {
  font-style: normal;
  white-space: normal;
  line-height: 1.28;
}

.bhrc-workspace-search-empty {
  margin: 34px 8px 0;
}

.bhrc-workspace-filter-panel {
  display: grid;
  gap: 18px;
  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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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-rail button,
.bhrc-workspace-side-close,
.bhrc-workspace-compose header button {
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
}

.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;
}

.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;
}

.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: "";
}

.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;
}

.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-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-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:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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;
}

.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-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;
}

.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-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;
}

.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;
}

.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;
}

.bhrc-workspace-rail button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #3c464d;
  font-weight: 800;
}

[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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.bhrc-workspace-folder {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: #2f3940;
  text-align: left;
}

.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 {
  color: #50606a;
  font-size: 0.82rem;
  font-style: normal;
}

.bhrc-workspace-folder:hover,
.bhrc-workspace-folder:focus-visible,
.bhrc-workspace-folder.active {
  background: #dfe4e7;
  outline: 0;
}

.bhrc-workspace-add-account {
  min-height: 34px;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #172026;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-add-account:hover,
.bhrc-workspace-add-account:focus-visible {
  background: #e9edef;
  outline: 0;
}

.bhrc-workspace-list-pane {
  position: relative;
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  border-right: 1px solid #dce2e7;
  background: #ffffff;
  overflow: hidden;
}

.bhrc-workspace-list-pane.is-deleted-folder {
  grid-template-rows: 38px auto minmax(0, 1fr);
}

.bhrc-workspace-list-tabs {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 28px 28px 28px 28px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-bottom: 1px solid #dce2e7;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tabs {
  grid-template-columns: 18px auto minmax(0, 1fr) 28px 28px 28px 28px;
}

.bhrc-workspace-list-select-all {
  grid-column: 1;
  grid-row: 1;
}

.bhrc-workspace-list-title {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  color: #3d4850;
  font-size: 0.9rem;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-title {
  grid-column: 2;
}

.bhrc-workspace-list-tabs > span {
  grid-column: 2;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tabs > span {
  grid-column: 3;
}

.bhrc-workspace-list-tabs button {
  min-height: 28px;
  border-radius: 0;
  color: #3d4850;
  font-size: 0.9rem;
  transform: none;
}

.bhrc-workspace-list-tabs button.active {
  color: #101820;
  font-weight: 800;
  text-decoration: none;
}

.bhrc-workspace-select-box {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-height: 18px !important;
  padding: 0;
  border: 1.5px solid #7d878e;
  border-radius: 4px;
  background: #ffffff;
  color: #26323a;
  box-shadow: none;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-select-box[hidden] {
  display: none !important;
}

.bhrc-workspace-list-tabs .bhrc-workspace-select-box,
.bhrc-workspace-message-card .bhrc-workspace-select-box {
  border: 1.5px solid #7d878e;
  border-radius: 4px;
  background: #ffffff;
  color: #26323a;
  box-shadow: none;
}

.bhrc-workspace-list-tabs .bhrc-workspace-select-box:hover,
.bhrc-workspace-list-tabs .bhrc-workspace-select-box:focus-visible,
.bhrc-workspace-message-card .bhrc-workspace-select-box:hover,
.bhrc-workspace-message-card .bhrc-workspace-select-box:focus-visible {
  border-color: #6f7c86;
  background: #ffffff;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-select-box::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-select-box.is-checked::after {
  opacity: 1;
}

.bhrc-workspace-list-tool {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-height: 28px !important;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.bhrc-workspace-list-tool-select {
  grid-column: 3;
}

.bhrc-workspace-list-tool-skip {
  grid-column: 4;
}

.bhrc-workspace-list-tool-filter {
  grid-column: 5;
}

.bhrc-workspace-list-tool-sort {
  grid-column: 6;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tool-select {
  grid-column: 4;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tool-skip {
  grid-column: 5;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tool-filter {
  grid-column: 6;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-list-tool-sort {
  grid-column: 7;
}

.bhrc-workspace-list-tool > span {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-list-tool-sort {
  background: transparent;
}

.bhrc-workspace-message-list {
  grid-row: 2;
  grid-column: 1;
  min-height: 0;
  overflow: auto;
}

.bhrc-workspace-list-pane.is-deleted-folder .bhrc-workspace-message-list,
.bhrc-workspace-list-pane.is-deleted-folder .bhrc-workspace-empty {
  grid-row: 3;
}

.bhrc-workspace-deleted-retention-notice {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 9px 12px;
  border-bottom: 1px solid #dce2e7;
  color: #3d4850;
  font-size: 0.84rem;
  line-height: 1.35;
  text-align: left;
}

.bhrc-workspace-deleted-retention-notice[hidden] {
  display: none;
}

.bhrc-workspace-deleted-retention-notice .bhrc-workspace-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #5b6670;
}

.bhrc-workspace-deleted-retention-notice > span:last-child {
  min-width: 0;
}

.bhrc-workspace-deleted-retention-notice strong {
  color: #b42318;
  font-weight: 850;
}

.bhrc-workspace-message-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-height: 74px;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid #edf0f2;
  background: #ffffff;
  color: #172026;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-message-card:hover,
.bhrc-workspace-message-card:focus-visible,
.bhrc-workspace-message-card.active {
  background: #f0f3f4;
  outline: 0;
}

.bhrc-workspace-message-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d5dce1;
  border-radius: 50%;
  background: #f7f8f8;
  color: #5f696f;
  font-weight: 800;
}

.bhrc-workspace-message-card.is-draft .bhrc-workspace-message-icon {
  border-color: #b42318;
  background: #fffafa;
  color: #b42318;
}

.bhrc-workspace-message-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  min-height: 74px;
}

.bhrc-workspace-message-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  min-width: 0;
  min-height: 18px;
  line-height: 1.18;
}

.bhrc-workspace-message-row strong,
.bhrc-workspace-message-row span,
.bhrc-workspace-message-main p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-message-row strong {
  font-size: 0.93rem;
}

.bhrc-workspace-message-row span,
.bhrc-workspace-message-main p {
  color: #5d6870;
  font-size: 0.86rem;
}

.bhrc-workspace-message-row .bhrc-workspace-message-stamp {
  min-width: 72px;
  text-align: right;
  color: #24313a;
  font-variant-numeric: tabular-nums;
}

.bhrc-workspace-message-main p {
  margin: 0;
  line-height: 1.22;
}

.bhrc-workspace-message-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  margin-top: auto;
}

.bhrc-workspace-message-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid #d9dee2;
  border-radius: 999px;
  color: #516069;
  font-size: 0.75rem;
}

.bhrc-workspace-empty {
  grid-row: 2;
  grid-column: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  padding: 30px;
  color: #59646b;
  text-align: center;
}

.bhrc-workspace-empty[hidden] {
  display: none;
}

.bhrc-workspace-empty strong {
  color: #414b52;
}

.bhrc-workspace-empty span {
  max-width: 250px;
  line-height: 1.45;
}

.bhrc-workspace-empty-illustration {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  object-fit: contain;
}

.bhrc-workspace-empty-illustration::before {
  display: none;
  content: none;
}

.bhrc-workspace-empty-illustration::after {
  display: none;
  content: none;
}

.bhrc-workspace-reader {
  min-width: 0;
  min-height: 0;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.80)),
    repeating-linear-gradient(-18deg, rgba(44, 52, 58, 0.018) 0 2px, transparent 2px 7px),
    #f7f8f8;
  overflow: auto;
}

.bhrc-workspace-reader-welcome,
.bhrc-workspace-reader-message {
  max-width: 720px;
}

.bhrc-workspace-reader-welcome {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 100%;
}

.bhrc-workspace-reader-welcome p,
.bhrc-workspace-reader-welcome h1,
.bhrc-workspace-reader-welcome span {
  margin: 0;
}

.bhrc-workspace-reader-welcome p {
  color: #5f696f;
}

.bhrc-workspace-reader-welcome h1 {
  max-width: 560px;
  color: #172026;
  font-size: 2.05rem;
  line-height: 1.12;
}

.bhrc-workspace-reader-welcome span {
  max-width: 620px;
  color: #526069;
  line-height: 1.6;
}

.bhrc-workspace-reader-message {
  display: grid;
  gap: 18px;
}

.bhrc-workspace-reader-message header {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dde3e7;
}

.bhrc-workspace-reader-message h1 {
  margin: 0;
  color: #172026;
  font-size: 1.55rem;
}

.bhrc-workspace-reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #5e6971;
  font-size: 0.92rem;
}

.bhrc-workspace-reader-message p {
  margin: 0;
  color: #2d373e;
  line-height: 1.65;
}

.bhrc-workspace-reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhrc-workspace-menu {
  position: fixed;
  z-index: 120;
  display: grid;
  gap: 2px;
  min-width: 190px;
  max-width: min(440px, calc(100vw - 24px));
  padding: 8px;
  border: 1px solid #d8dee4;
  border-radius: 8px;
  background: #ffffff;
  color: #172026;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.16);
}

.bhrc-workspace-menu[hidden] {
  display: none;
}

.bhrc-workspace-menu strong,
.bhrc-workspace-menu span {
  padding: 7px 10px;
  color: #5a656d;
  font-size: 0.86rem;
}

.bhrc-workspace-menu strong {
  color: #172026;
}

.bhrc-workspace-menu button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  text-align: left;
}

.bhrc-workspace-menu button span {
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.bhrc-workspace-menu .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-menu .bhrc-workspace-menu-caret {
  margin-left: auto;
}

.bhrc-workspace-file-save-menu {
  min-width: 210px;
}

.bhrc-workspace-flag-menu {
  min-width: 236px;
  max-width: min(320px, calc(100vw - 24px));
}

.bhrc-workspace-report-menu {
  min-width: 238px;
  max-width: min(320px, calc(100vw - 24px));
}

.bhrc-workspace-menu button:hover,
.bhrc-workspace-menu button: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-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-open],
.bhrc-workspace-primary[data-bhrc-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-open] .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-primary[data-bhrc-compose-open]:hover,
.bhrc-workspace-primary[data-bhrc-compose-open]:focus-visible,
.bhrc-workspace-primary[data-bhrc-compose-send]:hover,
.bhrc-workspace-primary[data-bhrc-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-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;
  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 span,
.bhrc-compose-close span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.bhrc-compose-minimize span::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 1.5px;
  background: currentColor;
}

.bhrc-compose-close span::before,
.bhrc-compose-close span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 10px;
  height: 1.5px;
  background: currentColor;
}

.bhrc-compose-close span::before {
  transform: rotate(45deg);
}

.bhrc-compose-close span::after {
  transform: rotate(-45deg);
}

.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-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 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: 32px;
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transform: none;
}

.bhrc-workspace-confidential-panel footer button:hover,
.bhrc-workspace-confidential-panel footer button:focus-visible {
  background: transparent;
  color: #172026;
  outline: 0;
  box-shadow: none;
  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 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 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);
}

.bhrc-workspace-compose-send-group .bhrc-workspace-primary[data-bhrc-compose-send] {
  min-width: 82px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  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;
  box-shadow: none !important;
}

.bhrc-workspace-compose-send-group:hover,
.bhrc-workspace-compose-send-group:focus-within {
  color: #1f2937;
}

.bhrc-workspace-compose-send-options > span {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.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 {
  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: 1px solid rgba(34, 43, 49, 0.16);
}

.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;
}

.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;
  gap: 10px;
}

.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 {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #7b8790;
}

.bhrc-workspace-schedule-calendar-nav button:hover,
.bhrc-workspace-schedule-calendar-nav button:focus-visible,
.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 {
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
}

.bhrc-workspace-schedule-day.is-muted {
  color: #a7b0b8;
}

.bhrc-workspace-schedule-day.is-selected {
  border-color: #7d878e;
  background: #eef3f5;
  color: #172026;
  font-weight: 800;
}

.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 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-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: 4px;
}

@media (max-width: 720px) {
  .bhrc-workspace-schedule-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .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;
  }
}

.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;
}

@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 */

/* BehindApp workspace interaction canon */
button:hover,
.btn:hover,
.www-btn:hover,
.panel-link:hover,
.panel-link.active {
  transform: none;
}

.bhrc-workspace-body,
.bhrc-workspace-shell,
.bhrc-workspace-topbar,
.bhrc-workspace-tabs,
.bhrc-workspace-ribbon,
.bhrc-workspace-main,
.bhrc-workspace-rail,
.bhrc-workspace-nav,
.bhrc-workspace-list-pane,
.bhrc-workspace-reader {
  background: #ffffff;
}

.bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-shell {
  grid-template-rows: 48px 36px minmax(0, 1fr) auto;
}

@media (min-width: 901px) {
  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-main {
    grid-template-columns: 372px minmax(0, 1fr);
  }

  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"].is-nav-collapsed .bhrc-workspace-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-main {
    grid-template-columns: 336px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-shell {
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }
}

.bhrc-workspace-body button,
.bhrc-workspace-body a,
.bhrc-workspace-body [role="button"] {
  transition: color 120ms ease, opacity 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.bhrc-workspace-body button:hover,
.bhrc-workspace-body button:focus-visible,
.bhrc-workspace-body a:hover,
.bhrc-workspace-body [role="button"]:hover {
  transform: none;
}

.bhrc-workspace-top-actions {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.bhrc-workspace-search.is-expanded {
  right: clamp(286px, 22vw, 360px);
  left: min(222px, calc(100vw - 720px));
  grid-template-columns: 148px 38px minmax(0, 1fr) 38px 38px;
  min-width: min(520px, calc(100vw - 24px));
}

.bhrc-workspace-scope,
.bhrc-workspace-scope span:first-child {
  min-width: 0;
  white-space: nowrap;
}

.bhrc-workspace-searchbox,
.bhrc-workspace-searchbox input {
  cursor: default;
}

.bhrc-workspace-searchbox input:focus {
  cursor: text;
}

.bhrc-workspace-search-filter::before {
  display: none;
  content: none;
}

.bhrc-workspace-search-filter::after {
  display: 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,
.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,
.bhrc-workspace-folder:hover,
.bhrc-workspace-folder:focus-visible,
.bhrc-workspace-add-account:hover,
.bhrc-workspace-add-account:focus-visible,
.bhrc-workspace-message-card:hover,
.bhrc-workspace-message-card:focus-visible,
.bhrc-workspace-menu button:hover,
.bhrc-workspace-menu button:focus-visible,
.bhrc-workspace-search-history button:hover,
.bhrc-workspace-search-history button:focus-visible,
.bhrc-workspace-search-result:hover,
.bhrc-workspace-search-result:focus-visible,
.bhrc-workspace-side-close:hover,
.bhrc-workspace-side-close:focus-visible,
.bhrc-workspace-secondary:hover,
.bhrc-workspace-secondary:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-folder.active,
.bhrc-workspace-message-card.active {
  background: #ffffff;
}

.bhrc-workspace-folder.active strong,
.bhrc-workspace-message-card.active strong {
  color: #101820;
  font-weight: 850;
}

.bhrc-workspace-tabs button.active::after,
.bhrc-workspace-search-tabs button.active::after {
  display: none;
}

.bhrc-workspace-list-tabs button.active {
  text-decoration: none;
}

.bhrc-workspace-search-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 0;
  text-align: center;
}

.bhrc-workspace-search-result:hover .bhrc-workspace-search-history-main strong,
.bhrc-workspace-search-result:focus-visible .bhrc-workspace-search-history-main strong {
  font-weight: 850;
}

.bhrc-workspace-account-chip {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.bhrc-workspace-account-chip:hover,
.bhrc-workspace-account-chip:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-reader {
  display: grid;
  place-items: center;
  background: #ffffff;
}

.bhrc-workspace-reader-welcome {
  width: min(680px, 100%);
  min-height: auto;
  align-content: center;
  justify-self: center;
  align-self: center;
}

.bhrc-workspace-reader-welcome .bhrc-workspace-empty-illustration {
  width: 132px;
  height: 132px;
}

@media (max-width: 1100px) {
  .bhrc-workspace-search.is-expanded {
    right: 12px;
    left: 12px;
  }
}

@media (max-width: 560px) {
  .bhrc-workspace-search.is-expanded {
    min-width: 0;
  }
}
/* /BehindApp workspace interaction canon */

/* BehindApp workspace search and welcome repair */
.bhrc-workspace-topbar {
  grid-template-columns: 184px minmax(320px, 560px) minmax(380px, 1fr);
}

.bhrc-workspace-topbar:has(.bhrc-workspace-search.is-expanded) {
  grid-template-columns: 184px minmax(520px, 720px) minmax(380px, 1fr);
}

.bhrc-workspace-search,
.bhrc-workspace-search.is-expanded {
  width: 100%;
  max-width: 720px;
}

.bhrc-workspace-search.is-expanded {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  grid-template-columns: 132px 36px minmax(0, 1fr) 38px 38px;
  min-width: 0;
  border-color: #7a858c;
  box-shadow: 0 8px 22px rgba(23, 32, 38, 0.12);
}

.bhrc-workspace-search-filter::before {
  display: none;
  content: none;
}

.bhrc-workspace-reader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bhrc-workspace-reader-welcome {
  width: min(640px, 100%);
  margin: auto;
  justify-items: center;
  text-align: center;
}

.bhrc-workspace-reader-welcome h1,
.bhrc-workspace-reader-welcome span {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .bhrc-workspace-topbar,
  .bhrc-workspace-topbar:has(.bhrc-workspace-search.is-expanded) {
    grid-template-columns: 176px minmax(260px, 1fr) auto;
  }

  .bhrc-workspace-search.is-expanded {
    position: relative;
    right: auto;
    left: auto;
  }
}
/* /BehindApp workspace search and welcome repair */

/* BehindApp workspace navigation refinements */
.bhrc-workspace-search.is-expanded {
  grid-template-columns: 148px 42px minmax(0, 1fr) 38px 38px;
}

.bhrc-workspace-scope {
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
}

.bhrc-workspace-scope span:first-child {
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bhrc-workspace-scope span:last-child {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 1;
  transform: none;
}

.bhrc-workspace-filter-row button span[aria-hidden="true"] {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 1;
}

.bhrc-workspace-scope span:last-child::before,
.bhrc-workspace-filter-row button span[aria-hidden="true"]::before {
  width: 9px;
  height: 9px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.bhrc-workspace-search-back {
  align-items: center;
  justify-content: center;
}

.bhrc-workspace-search-back::before {
  transform: rotate(45deg);
}

.bhrc-workspace-search-filter::before {
  display: none;
  content: none;
}

.bhrc-workspace-rail {
  gap: 12px;
}

.bhrc-workspace-rail button {
  width: 38px;
  height: 38px;
  font-size: 1.12rem;
}

.bhrc-workspace-nav-heading-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  min-width: 0;
}

.bhrc-workspace-nav-heading {
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 34px;
  padding: 0 8px;
}

.bhrc-workspace-section-chevron {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
  transform-origin: center;
}

.bhrc-workspace-nav-heading[aria-expanded="false"] .bhrc-workspace-section-chevron {
  transform: rotate(-90deg);
}

.bhrc-workspace-nav-more {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #5e6870;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-nav-heading-row:hover .bhrc-workspace-nav-more,
.bhrc-workspace-nav-heading-row:focus-within .bhrc-workspace-nav-more {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-section-collapsed > .bhrc-workspace-folder {
  display: none;
}

.bhrc-workspace-folder-menu {
  min-width: 210px;
}

.bhrc-workspace-folder-menu button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  min-height: 40px;
}

.bhrc-workspace-folder-menu button > span:first-child {
  display: inline-grid;
  place-items: center;
  color: #53606a;
}

.bhrc-workspace-nav-more:hover,
.bhrc-workspace-nav-more:focus-visible,
.bhrc-workspace-nav-heading:hover,
.bhrc-workspace-nav-heading:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

@media (max-width: 560px) {
  .bhrc-workspace-search.is-expanded {
    grid-template-columns: 126px 38px minmax(0, 1fr) 34px 34px;
  }
}
/* /BehindApp workspace navigation refinements */

/* BehindApp workspace rail and folder polish */
.bhrc-workspace-main {
  border-bottom: 1px solid #dce2e7;
}

.bhrc-workspace-rail {
  gap: 0;
  width: 56px;
  padding: 8px 4px;
}

.bhrc-workspace-rail button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 1.58rem;
  line-height: 1;
}

.bhrc-workspace-nav {
  padding: 6px 6px 10px;
}

.bhrc-workspace-nav-group,
.bhrc-workspace-account-block {
  gap: 0;
  margin-top: 4px;
}

.bhrc-workspace-account-block {
  margin-top: 2px;
}

.bhrc-workspace-nav-heading-row {
  grid-template-columns: minmax(0, 1fr) 30px;
}

.bhrc-workspace-nav-heading {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 3px;
  min-height: 30px;
  padding: 0 1px 0 0;
}

.bhrc-workspace-section-chevron {
  position: relative;
  width: 18px;
  height: 18px;
  color: transparent;
  transform: none;
}

.bhrc-workspace-section-chevron::before {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.45px solid #46525b;
  border-bottom: 1.45px solid #46525b;
  transform: rotate(45deg);
  content: "";
}

.bhrc-workspace-nav-heading[aria-expanded="false"] .bhrc-workspace-section-chevron {
  transform: none;
}

.bhrc-workspace-nav-heading[aria-expanded="false"] .bhrc-workspace-section-chevron::before {
  transform: rotate(-45deg);
}

.bhrc-workspace-nav-more {
  width: 30px;
  height: 30px;
}

.bhrc-workspace-nav-heading-row:focus-within .bhrc-workspace-nav-more {
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-nav-heading-row:hover .bhrc-workspace-nav-more {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-list-pane,
.bhrc-workspace-reader,
.bhrc-workspace-nav {
  min-height: 100%;
}
/* /BehindApp workspace rail and folder polish */

/* BehindApp workspace unread and line alignment */
.bhrc-workspace-main {
  border-bottom: 0;
}

.bhrc-workspace-rail {
  padding: 2px;
}

.bhrc-workspace-rail button {
  width: 52px;
  height: 52px;
  font-size: 2.05rem;
}

.bhrc-workspace-folder em {
  min-width: 1ch;
  text-align: right;
}

.bhrc-workspace-folder em.has-unread {
  color: #101820;
  font-weight: 850;
}

.bhrc-workspace-message-card .bhrc-workspace-message-row strong {
  font-weight: 650;
}

.bhrc-workspace-message-card.is-unread .bhrc-workspace-message-row strong {
  color: #101820;
  font-weight: 850;
}

.bhrc-workspace-message-card.is-unread .bhrc-workspace-message-row span {
  color: #2f3940;
  font-weight: 760;
}

.bhrc-workspace-message-card.is-unread .bhrc-workspace-message-main p {
  color: #5d6870;
  font-weight: 400;
}
/* /BehindApp workspace unread and line alignment */

/* BehindApp workspace reader and message actions */
.bhrc-workspace-rail {
  padding: 0;
}

.bhrc-workspace-rail button {
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  line-height: 1;
}

.bhrc-workspace-message-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  min-height: 96px;
  padding: 10px 44px 10px 12px;
  column-gap: 10px;
}

.bhrc-workspace-list-pane.is-selection-mode .bhrc-workspace-message-card {
  grid-template-columns: 18px minmax(0, 1fr);
  padding-left: 10px;
}

.bhrc-workspace-message-select-box {
  align-self: start;
  margin-top: 0;
}

.bhrc-workspace-message-quick-actions {
  position: absolute;
  right: 44px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.bhrc-workspace-message-delete-action {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -12px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.bhrc-workspace-message-card:hover .bhrc-workspace-message-quick-actions,
.bhrc-workspace-message-card.is-flagged .bhrc-workspace-message-quick-actions,
.bhrc-workspace-message-card.is-pinned .bhrc-workspace-message-quick-actions,
.bhrc-workspace-message-card:hover .bhrc-workspace-message-delete-action {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-message-card.is-flagged:not(:hover) .bhrc-workspace-message-quick-actions button:not(.bhrc-workspace-message-flag-action) {
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-message-card.is-pinned:not(:hover) .bhrc-workspace-message-quick-actions button:not(.bhrc-workspace-message-pin-action) {
  opacity: 0;
  pointer-events: none;
}

.bhrc-workspace-message-card.is-flagged.is-pinned:not(:hover) .bhrc-workspace-message-quick-actions .bhrc-workspace-message-flag-action,
.bhrc-workspace-message-card.is-flagged.is-pinned:not(:hover) .bhrc-workspace-message-quick-actions .bhrc-workspace-message-pin-action {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-message-quick-actions button,
.bhrc-workspace-message-delete-action,
.bhrc-workspace-reader-toolbar button {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 4px;
  color: #24313a;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-message-quick-actions button:hover,
.bhrc-workspace-message-quick-actions button:focus-visible,
.bhrc-workspace-message-delete-action:hover,
.bhrc-workspace-message-delete-action:focus-visible,
.bhrc-workspace-reader-toolbar button:hover,
.bhrc-workspace-reader-toolbar button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-envelope-action {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: #24313a;
  font-size: 0;
}

.bhrc-workspace-envelope-action::before {
  content: "";
  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;
  pointer-events: none;
}

.bhrc-workspace-envelope-closed::before {
  -webkit-mask-image: url("/static/icons/behindapp/mail-closed.svg");
  mask-image: url("/static/icons/behindapp/mail-closed.svg");
}

.bhrc-workspace-envelope-open::before {
  -webkit-mask-image: url("/static/icons/behindapp/mail-open.svg");
  mask-image: url("/static/icons/behindapp/mail-open.svg");
}

.bhrc-workspace-reader.has-message {
  display: block;
  align-items: initial;
  justify-content: initial;
  padding: 12px 14px;
}

.bhrc-workspace-reader-message {
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
  max-width: none;
}

.bhrc-workspace-reader-subject {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #dce2e7;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(18, 27, 34, 0.08);
}

.bhrc-workspace-reader-subject h1 {
  margin: 0;
  color: #101820;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.bhrc-workspace-reader-card {
  display: grid;
  gap: 18px;
  min-height: 164px;
  padding: 18px 12px 20px;
  border: 1px solid #dce2e7;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(18, 27, 34, 0.1);
}

.bhrc-workspace-reader-card header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  grid-template-rows: 24px 18px;
  column-gap: 10px;
  row-gap: 2px;
  align-items: stretch;
  padding: 0;
  border-bottom: 0;
}

.bhrc-workspace-reader-action-stack {
  display: grid;
  grid-column: 3;
  grid-row: 1 / 3;
  grid-template-rows: 24px 18px;
  justify-items: end;
  align-self: stretch;
  gap: 2px;
}

.bhrc-workspace-reader-avatar {
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #c6ced6;
  border-radius: 50%;
  color: #25313a;
  background: #eef2f4;
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-reader-avatar:hover,
.bhrc-workspace-reader-avatar:focus-visible {
  color: #25313a;
  background: #eef2f4;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-reader-meta {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-rows: 24px 18px;
  gap: 2px;
  align-self: stretch;
  align-items: center;
  color: #2d373e;
  font-size: 0.86rem;
}

.bhrc-workspace-reader-meta > span {
  align-self: center;
  line-height: 1.2;
}

.bhrc-workspace-reader-meta strong {
  color: #101820;
  font-weight: 700;
}

.bhrc-workspace-reader-sender {
  justify-self: start;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #101820;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  align-self: center;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-reader-sender:hover,
.bhrc-workspace-reader-sender:focus-visible {
  color: #101820;
  background: transparent;
  box-shadow: none;
  outline: 0;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-reader-toolbar {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 24px;
  align-self: center;
}

.bhrc-workspace-reader-time {
  justify-self: end;
  align-self: center;
  color: #526069;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: right;
}

.bhrc-workspace-reader-body {
  margin: 2px 0 8px;
  color: #101820;
  font-size: 1rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.bhrc-workspace-reader-body.has-html {
  white-space: normal;
  overflow-wrap: anywhere;
}

.bhrc-workspace-reader-body.has-html > :first-child {
  margin-top: 0 !important;
}

.bhrc-workspace-reader-body.has-html table {
  max-width: 100%;
  border-collapse: collapse;
}

.bhrc-workspace-reader-body.has-html td,
.bhrc-workspace-reader-body.has-html th {
  vertical-align: top;
}

.bhrc-workspace-reader-body.has-html img {
  max-width: 100%;
  height: auto;
}

.bhrc-workspace-junk-restore {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #dce2e7;
  border-radius: 6px;
  background: #f8fafb;
  color: #4d5962;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bhrc-workspace-junk-restore button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #172026;
  box-shadow: none;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-junk-restore button:hover,
.bhrc-workspace-junk-restore button:focus-visible {
  color: #172026;
  background: transparent;
  box-shadow: none;
  outline: 0;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-reader-message.is-junk-quarantine .bhrc-workspace-reader-body {
  color: #26323b;
}

.bhrc-workspace-reader-body.is-quarantined a {
  color: inherit;
  pointer-events: none;
  text-decoration: none;
}

.bhrc-workspace-quarantine-link {
  display: inline;
  color: #65717b;
  cursor: default;
  text-decoration: none;
}

.bhrc-workspace-reader-body.has-document {
  white-space: normal;
}

.bhrc-workspace-reader-document {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 10px;
  background: #f0f1f5;
  overflow: hidden;
}

.bhrc-workspace-reader-body blockquote {
  margin: 8px 0 8px 18px;
  padding-left: 12px;
  border-left: 3px solid #cfd7dd;
  color: #303b43;
}

.bhrc-workspace-reader-body ul,
.bhrc-workspace-reader-body ol {
  margin: 8px 0 8px 22px;
  padding: 0;
}

.bhrc-workspace-reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhrc-workspace-reader-actions .bhrc-workspace-secondary {
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 4px;
  background: #ffffff;
}

.bhrc-workspace-reader-more-menu {
  width: max-content;
  min-width: 264px;
  max-width: min(340px, calc(100vw - 24px));
  height: auto;
  max-height: none !important;
  overflow: visible !important;
}

.bhrc-workspace-reader-more-menu button {
  white-space: nowrap;
}

.bhrc-workspace-reader-translate-menu {
  width: max-content;
  min-width: 184px;
  max-width: min(280px, calc(100vw - 24px));
  height: auto;
  max-height: none !important;
  overflow: visible !important;
}

.bhrc-workspace-reader-translation-note {
  margin: -2px 0 10px;
  padding: 7px 10px;
  border: 1px solid #dce2e7;
  border-radius: 4px;
  color: #53616b;
  background: #f8fafb;
  font-size: 0.82rem;
  font-weight: 760;
}

.bhrc-workspace-reader-fullscreen-layer {
  position: fixed;
  inset: 0;
  z-index: 15000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #f7f9fa;
  color: #101820;
}

.bhrc-workspace-reader-fullscreen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 10px clamp(18px, 3vw, 38px);
  border-bottom: 1px solid #d8dee4;
  background: #ffffff;
}

.bhrc-workspace-reader-fullscreen-title {
  min-width: 0;
  overflow: hidden;
  color: #101820;
  font-size: 1rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-reader-fullscreen-close {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid #cfd7dd;
  border-radius: 4px;
  background: #ffffff;
  color: #172026;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.bhrc-workspace-reader-fullscreen-close:hover,
.bhrc-workspace-reader-fullscreen-close:focus-visible {
  background: #eef1f2;
  outline: 0;
}

.bhrc-workspace-reader-fullscreen-scroll {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: clamp(18px, 3vw, 42px);
}

.bhrc-workspace-reader-fullscreen-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bhrc-workspace-reader-fullscreen-content .bhrc-workspace-reader-message {
  max-width: none;
}

.bhrc-workspace-reader-fullscreen-content .bhrc-workspace-reader-document {
  min-height: min(860px, calc(100vh - 180px));
}

.bhrc-workspace-contact-card {
  position: fixed;
  z-index: 9000;
  display: grid;
  grid-template-rows: auto;
  width: min(344px, calc(100vw - 28px));
  max-height: min(540px, calc(100vh - 28px));
  border: 1px solid #cfd7dd;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.18);
  color: #101820;
  overflow: visible;
}

.bhrc-workspace-contact-card.is-expanded {
  grid-template-rows: auto minmax(0, 1fr);
  height: min(540px, calc(100vh - 28px));
}

.bhrc-workspace-contact-card:not(.is-expanded) .bhrc-workspace-contact-card-scroll {
  display: none;
}

.bhrc-workspace-contact-card-fixed {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #e4e8ec;
  background: #ffffff;
}

.bhrc-workspace-contact-identity {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.bhrc-workspace-contact-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid #b8c2ca;
  border-radius: 50%;
  color: #25313a;
  background: #eef2f4;
  font-size: 1.38rem;
  font-weight: 850;
  line-height: 1;
}

.bhrc-workspace-contact-avatar.is-large {
  width: 102px;
  height: 102px;
  font-size: 2rem;
}

.bhrc-workspace-contact-avatar.is-mini {
  width: 34px;
  height: 34px;
  font-size: 0.74rem;
  font-weight: 850;
}

.bhrc-workspace-contact-identity strong {
  min-width: 0;
  color: #101820;
  font-size: 1.08rem;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.bhrc-workspace-contact-call,
.bhrc-workspace-contact-icon-button,
.bhrc-workspace-contact-more,
.bhrc-workspace-contact-modal-close,
.bhrc-workspace-contact-tabs button {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-contact-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 18px;
  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;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    2px 3px 0 rgba(15, 17, 21, 0.08);
}

.bhrc-workspace-contact-call:hover,
.bhrc-workspace-contact-call:focus-visible {
  color: #1f2937;
  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));
  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-contact-icon-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #25313a;
}

.bhrc-workspace-contact-icon-button:hover,
.bhrc-workspace-contact-icon-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-contact-icon-button .bhrc-workspace-icon {
  width: 20px;
  height: 20px;
}

.bhrc-workspace-contact-icon-button .bhrc-workspace-icon.is-comment-alt {
  width: 22px;
  height: 22px;
}

.bhrc-workspace-contact-call .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.bhrc-workspace-contact-menu-wrap {
  position: relative;
  z-index: 4;
  display: inline-grid;
  place-items: center;
}

.bhrc-workspace-contact-menu[hidden] {
  display: none;
}

.bhrc-workspace-contact-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 252px;
  padding: 8px 0;
  border: 1px solid #d7dee4;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.14);
}

.bhrc-workspace-contact-menu button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #101820;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-contact-menu button:hover,
.bhrc-workspace-contact-menu button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-contact-card-scroll {
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 14px 18px;
  overflow-y: auto;
  background: #ffffff;
}

.bhrc-workspace-contact-section-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  justify-self: start;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #05080c;
  font-weight: 900;
  cursor: pointer;
}

.bhrc-workspace-contact-section-button .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
  color: #05080c;
}

.bhrc-workspace-contact-section-button span:not(.bhrc-workspace-icon) {
  color: #05080c;
  font-weight: 900;
}

.bhrc-workspace-contact-section-button:hover,
.bhrc-workspace-contact-section-button:focus-visible,
.bhrc-workspace-contact-inline-more:hover,
.bhrc-workspace-contact-inline-more:focus-visible,
.bhrc-workspace-contact-plain-button:hover,
.bhrc-workspace-contact-plain-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-contact-card-scroll section,
.bhrc-workspace-contact-modal-content section {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f3;
}

.bhrc-workspace-contact-card-scroll h3,
.bhrc-workspace-contact-modal-content h3 {
  margin: 0;
  color: #101820;
  font-size: 0.92rem;
  font-weight: 850;
}

.bhrc-workspace-contact-card-scroll p,
.bhrc-workspace-contact-modal-content p {
  margin: 0;
  color: #526069;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bhrc-workspace-contact-inline-more,
.bhrc-workspace-contact-plain-button {
  justify-self: start;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101820;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-contact-email-button {
  display: inline-grid;
  grid-template-columns: 16px minmax(0, auto) 16px;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-height: 26px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101820;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transform: none;
}

.bhrc-workspace-contact-email-button:hover,
.bhrc-workspace-contact-email-button:focus-visible {
  background: transparent;
  color: #101820;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-contact-email-button .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  color: #101820;
}

.bhrc-workspace-contact-email-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-contact-email-button .is-copy-alt {
  opacity: 0;
  cursor: pointer;
  transition: opacity 120ms ease;
}

.bhrc-workspace-contact-email-button:hover .is-copy-alt,
.bhrc-workspace-contact-email-button:focus-visible .is-copy-alt {
  opacity: 1;
}

.bhrc-workspace-contact-plain-button {
  font-size: 0.86rem;
}

.bhrc-workspace-contact-modal-content .bhrc-workspace-contact-plain-button {
  min-height: 18px;
  color: #05080c;
  font-size: 0.66rem;
  font-weight: 900;
}

.bhrc-workspace-contact-card .bhrc-workspace-contact-inline-more {
  min-height: 18px;
  color: #05080c;
  font-size: 0.66rem;
  font-weight: 900;
}

.bhrc-workspace-contact-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  padding: 8px 0;
}

.bhrc-workspace-contact-message strong {
  min-width: 0;
  overflow: hidden;
  color: #101820;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-contact-message span {
  color: #526069;
  font-size: 0.75rem;
}

.bhrc-workspace-contact-message p {
  grid-column: 1 / -1;
}

.bhrc-workspace-contact-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: center;
  margin: 0 18px 16px;
  padding: 0;
  color: #101820;
  font-weight: 850;
  text-align: center;
}

.bhrc-workspace-contact-more .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-contact-card-scroll .bhrc-workspace-contact-more {
  margin: 4px 0 0;
}

.bhrc-workspace-contact-more:hover,
.bhrc-workspace-contact-more:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-reader-sender {
  cursor: pointer;
}

.bhrc-workspace-contact-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 24, 32, 0.42);
}

.bhrc-workspace-contact-modal {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(860px, calc(100vw - 48px));
  height: min(640px, calc(100vh - 48px));
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(16, 24, 32, 0.26);
  overflow: hidden;
}

.bhrc-workspace-contact-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #25313a;
  font-size: 0;
  line-height: 1;
}

.bhrc-workspace-contact-modal-close .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-contact-modal-close:hover,
.bhrc-workspace-contact-modal-close:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-contact-modal-header {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 28px 18px;
}

.bhrc-workspace-contact-modal-header h2 {
  margin: 0 0 12px;
  color: #101820;
  font-size: 1.5rem;
  font-weight: 850;
}

.bhrc-workspace-contact-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  border-bottom: 1px solid #e4e8ec;
}

.bhrc-workspace-contact-tabs button {
  min-height: 42px;
  padding: 0;
  color: #2d373e;
  font-weight: 700;
}

.bhrc-workspace-contact-tabs button.active {
  color: #101820;
}

.bhrc-workspace-contact-tabs button:hover,
.bhrc-workspace-contact-tabs button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-contact-modal-content {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 20px 28px 28px;
  overflow-y: auto;
}

.bhrc-workspace-contact-detail-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.bhrc-workspace-contact-detail-row .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-contact-detail-row span {
  display: block;
  color: #526069;
  font-size: 0.76rem;
}

.bhrc-workspace-contact-detail-row strong {
  display: block;
  color: #101820;
  font-size: 0.9rem;
  font-weight: 800;
}

.bhrc-workspace-contact-edit-row {
  display: grid;
  justify-content: center;
  padding-top: 26px;
}

.bhrc-workspace-contact-edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid #9aa6b2;
  border-radius: 999px;
  background:
    repeating-linear-gradient(-14deg, rgba(86, 97, 112, 0.14) 0 1px, transparent 1px 5px),
    #fff;
  color: #566174;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-contact-edit-button .bhrc-workspace-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.bhrc-workspace-contact-edit-button:hover,
.bhrc-workspace-contact-edit-button:focus-visible {
  background:
    repeating-linear-gradient(-14deg, rgba(86, 97, 112, 0.14) 0 1px, transparent 1px 5px),
    #fff;
  color: #566174;
  box-shadow: none;
  transform: none;
  outline: 0;
}

.bhrc-workspace-contact-edit-layer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 24, 32, 0.32);
}

.bhrc-workspace-contact-edit-modal {
  width: min(800px, calc(100vw - 36px));
  height: min(690px, calc(100vh - 36px));
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  background: #fff;
  color: #101820;
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.18);
}

.bhrc-workspace-contact-edit-title {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 24px 14px;
  font-size: 1.25rem;
  font-weight: 750;
}

.bhrc-workspace-contact-edit-nav {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px 16px 20px 22px;
}

.bhrc-workspace-contact-edit-nav button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 8px 7px 14px;
  border: 0;
  background: transparent;
  color: #4d5965;
  font: inherit;
  font-size: 0.87rem;
  cursor: pointer;
  transform: none;
  box-shadow: none;
}

.bhrc-workspace-contact-edit-nav button .bhrc-workspace-icon {
  width: 17px;
  height: 17px;
}

.bhrc-workspace-contact-edit-nav button:hover,
.bhrc-workspace-contact-edit-nav button:focus-visible {
  background: transparent;
  color: #101820;
  transform: none;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-contact-edit-nav button.is-active {
  color: #101820;
  font-weight: 700;
}

.bhrc-workspace-contact-edit-nav button.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: #566ea6;
}

.bhrc-workspace-contact-edit-body {
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  overflow-y: auto;
  padding: 10px 30px 24px;
}

.bhrc-workspace-contact-edit-footer {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 26px 20px;
  background: #fff;
}

.bhrc-workspace-contact-edit-secondary,
.bhrc-workspace-contact-edit-save {
  min-width: 96px;
  min-height: 34px;
  border: 1px solid #c8d0da;
  border-radius: 5px;
  background: #fff;
  color: #101820;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transform: none;
  box-shadow: none;
}

.bhrc-workspace-contact-edit-secondary:hover,
.bhrc-workspace-contact-edit-secondary:focus-visible,
.bhrc-workspace-contact-edit-save:hover,
.bhrc-workspace-contact-edit-save:focus-visible {
  background: #fff;
  transform: none;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-contact-edit-save,
.bhrc-workspace-contact-edit-save:disabled {
  border-color: transparent;
  background: #e9edf2;
  color: #9aa6b2;
  cursor: default;
}

.bhrc-workspace-contact-edit-save:not(:disabled) {
  background: #566ea6;
  color: #fff;
  cursor: pointer;
}

.bhrc-workspace-contact-edit-save:not(:disabled):hover,
.bhrc-workspace-contact-edit-save:not(:disabled):focus-visible {
  background: #566ea6;
  color: #fff;
}

.bhrc-workspace-contact-edit-section {
  display: grid;
  gap: 16px;
  padding: 0 0 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e2e7ed;
}

.bhrc-workspace-contact-edit-section h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 760;
}

.bhrc-workspace-contact-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.bhrc-workspace-contact-edit-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bhrc-workspace-contact-edit-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bhrc-workspace-contact-edit-field.is-wide {
  grid-column: 1 / -1;
}

.bhrc-workspace-contact-edit-field span {
  font-size: 0.82rem;
  color: #26313d;
}

.bhrc-workspace-contact-edit-field input,
.bhrc-workspace-contact-edit-field select,
.bhrc-workspace-contact-edit-field textarea,
.bhrc-workspace-contact-edit-category-panel input {
  width: 100%;
  min-height: 32px;
  border: 1px solid #b7c0ca;
  border-radius: 4px;
  background: #fff;
  color: #101820;
  font: inherit;
  font-size: 0.88rem;
  padding: 6px 10px;
  box-sizing: border-box;
}

.bhrc-workspace-contact-edit-field textarea {
  min-height: 154px;
  resize: vertical;
}

.bhrc-workspace-contact-edit-field input:focus,
.bhrc-workspace-contact-edit-field select:focus,
.bhrc-workspace-contact-edit-field textarea:focus,
.bhrc-workspace-contact-edit-category-panel input:focus {
  border-color: #566ea6;
  outline: 1px solid #566ea6;
  outline-offset: 0;
}

.bhrc-workspace-contact-edit-photo {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #8a7a90;
  color: #fff;
  cursor: pointer;
  overflow: visible;
}

.bhrc-workspace-contact-edit-photo > .bhrc-workspace-contact-avatar {
  width: 96px;
  height: 96px;
}

.bhrc-workspace-contact-edit-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.bhrc-workspace-contact-edit-camera {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(16, 24, 32, 0.18);
  display: grid;
  place-items: center;
}

.bhrc-workspace-contact-edit-camera .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  background: #fff;
}

.bhrc-workspace-contact-edit-add,
.bhrc-workspace-contact-edit-category-wrap {
  position: relative;
  width: max-content;
}

.bhrc-workspace-contact-edit-add > button,
.bhrc-workspace-contact-edit-add-button,
.bhrc-workspace-contact-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #4d5965;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 4px 0;
  transform: none;
  box-shadow: none;
}

.bhrc-workspace-contact-edit-add > button:hover,
.bhrc-workspace-contact-edit-add > button:focus-visible,
.bhrc-workspace-contact-edit-add-button:hover,
.bhrc-workspace-contact-edit-add-button:focus-visible,
.bhrc-workspace-contact-edit-link:hover,
.bhrc-workspace-contact-edit-link:focus-visible {
  background: transparent;
  color: #101820;
  transform: none;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-contact-edit-menu,
.bhrc-workspace-contact-edit-category-panel {
  position: absolute;
  z-index: 4;
  top: calc(100% + 8px);
  left: 0;
  min-width: 170px;
  padding: 8px;
  border: 1px solid #dce2e8;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.12);
}

.bhrc-workspace-contact-edit-menu button {
  width: 100%;
  min-height: 32px;
  text-align: left;
  border: 0;
  background: transparent;
  color: #4d5965;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.bhrc-workspace-contact-edit-menu button:hover,
.bhrc-workspace-contact-edit-menu button:focus-visible {
  background: transparent;
  color: #101820;
  outline: 0;
}

.bhrc-workspace-contact-edit-category-panel {
  min-width: 330px;
}

.bhrc-workspace-contact-edit-category-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.bhrc-workspace-contact-edit-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhrc-workspace-contact-edit-categories span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid #d8dee6;
  border-radius: 999px;
  font-size: 0.82rem;
}

.bhrc-workspace-contact-edit-color-grid {
  display: grid;
  grid-template-columns: repeat(10, 18px);
  gap: 6px;
  margin: 10px 0;
}

.bhrc-workspace-contact-edit-color-grid button {
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

.bhrc-workspace-contact-edit-address {
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.bhrc-workspace-contact-edit-address + .bhrc-workspace-contact-edit-address {
  border-top: 1px solid #e2e7ed;
}

.bhrc-workspace-contact-edit-address-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.bhrc-workspace-contact-edit-address-head .bhrc-workspace-contact-edit-field {
  flex: 1 1 auto;
}

.bhrc-workspace-contact-edit-remove {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}

.bhrc-workspace-contact-edit-remove:hover,
.bhrc-workspace-contact-edit-remove:focus-visible {
  background: transparent;
  outline: 0;
}

.bhrc-workspace-contact-edit-remove .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
}

.bhrc-workspace-contact-edit-date-group {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.bhrc-workspace-contact-edit-modal.is-photo-mode {
  grid-template-columns: 1fr;
}

.bhrc-workspace-contact-edit-modal.is-photo-mode .bhrc-workspace-contact-edit-nav,
.bhrc-workspace-contact-edit-modal.is-photo-mode .bhrc-workspace-contact-edit-title {
  display: none;
}

.bhrc-workspace-contact-edit-modal.is-photo-mode .bhrc-workspace-contact-edit-body {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 28px 36px 24px;
}

.bhrc-workspace-contact-photo-editor {
  display: grid;
  gap: 22px;
}

.bhrc-workspace-contact-photo-drop {
  width: min(480px, 100%);
  min-height: 440px;
  justify-self: center;
  border: 2px dashed #c8d0da;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #4d5965;
  padding: 24px;
}

.bhrc-workspace-contact-photo-drop strong {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #d1a0d8;
  color: #4c1454;
  font-size: 3.8rem;
}

.bhrc-workspace-contact-photo-drop button,
.bhrc-workspace-contact-photo-editor button:not(.bhrc-workspace-contact-edit-secondary):not(.bhrc-workspace-contact-edit-save) {
  border: 0;
  background: transparent;
  color: #566ea6;
  font: inherit;
  cursor: pointer;
}

.bhrc-workspace-contact-photo-crop {
  width: min(480px, 100%);
  justify-self: center;
  display: grid;
  gap: 18px;
}

.bhrc-workspace-contact-photo-crop-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  background: #f6f7f9;
}

.bhrc-workspace-contact-photo-crop-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--photo-zoom, 1));
}

.bhrc-workspace-contact-photo-crop-frame::after {
  content: "";
  position: absolute;
  inset: 6%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 999px rgba(16, 24, 32, 0.14);
  pointer-events: none;
}

.bhrc-workspace-contact-photo-crop input[type="range"] {
  width: 100%;
}

@media (max-width: 760px) {
  .bhrc-workspace-contact-edit-modal {
    grid-template-columns: 1fr;
    height: calc(100vh - 28px);
  }

  .bhrc-workspace-contact-edit-nav {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    overflow-x: auto;
    padding: 8px 18px;
  }

  .bhrc-workspace-contact-edit-body {
    grid-column: 1;
    grid-row: 3;
    padding: 12px 18px 22px;
  }

  .bhrc-workspace-contact-edit-footer {
    grid-row: 4;
  }

  .bhrc-workspace-contact-edit-grid,
  .bhrc-workspace-contact-edit-grid.is-three {
    grid-template-columns: 1fr;
  }
}

.bhrc-workspace-contact-message-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bhrc-workspace-contact-message-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 118px;
  padding: 14px;
  border: 1px solid #e1e6ea;
  border-radius: 4px;
  background: #ffffff;
  color: #101820;
  text-align: left;
  cursor: pointer;
}

button.bhrc-workspace-contact-message-card {
  width: 100%;
  font: inherit;
  appearance: none;
}

.bhrc-workspace-contact-message-card:hover,
.bhrc-workspace-contact-message-card:focus-visible {
  background: #ffffff;
  box-shadow: none;
  outline: 1px solid #cfd7de;
  outline-offset: -1px;
  transform: none;
}

.bhrc-workspace-contact-message-card .bhrc-workspace-contact-avatar.is-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  overflow: hidden;
  font-size: 0.74rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.bhrc-workspace-contact-message-card-body {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.bhrc-workspace-contact-message-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: baseline;
}

.bhrc-workspace-contact-message-card strong,
.bhrc-workspace-contact-message-card-body span,
.bhrc-workspace-contact-message-card p {
  min-width: 0;
}

.bhrc-workspace-contact-message-card strong {
  display: block;
  color: #101820;
  font-size: 0.96rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-contact-message-card span {
  display: block;
  color: #526069;
  font-size: 0.78rem;
}

.bhrc-workspace-contact-message-card-heading > span {
  color: #526069;
  text-align: right;
  white-space: nowrap;
}

.bhrc-workspace-contact-message-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2d373e;
  overflow: hidden;
  white-space: nowrap;
}

.bhrc-workspace-contact-message-card-meta .bhrc-workspace-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.bhrc-workspace-contact-message-card-meta span {
  display: inline;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bhrc-workspace-contact-message-card p {
  margin: 0;
  color: #526069;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bhrc-workspace-contact-modal-files.is-empty {
  min-height: 320px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.bhrc-workspace-contact-modal-files.is-empty h3 {
  display: none;
}

.bhrc-workspace-contact-modal-files.is-empty p {
  max-width: 560px;
  color: #526069;
  font-size: 1rem;
}

.bhrc-workspace-contact-empty-animation {
  display: block;
  width: 132px;
  max-width: 34vw;
  height: auto;
  object-fit: contain;
}
/* /BehindApp workspace reader and message actions */

/* BehindApp dynamic favourites alignment */
.bhrc-workspace-nav-heading {
  align-items: center;
}

.bhrc-workspace-nav-heading strong {
  align-self: center;
  line-height: 1.1;
}

.bhrc-workspace-section-chevron {
  align-self: center;
  display: grid;
  place-items: center;
}

.bhrc-workspace-section-chevron::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.bhrc-workspace-nav-heading[aria-expanded="false"] .bhrc-workspace-section-chevron::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* /BehindApp dynamic favourites alignment */

/* BehindApp folder icon polish */
.bhrc-workspace-folder > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #25313a;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1;
}

.bhrc-workspace-folder[data-bhrc-workspace-folder="sent"] > span:first-child,
.bhrc-workspace-folder[data-bhrc-workspace-folder="junk"] > span:first-child,
.bhrc-workspace-folder[data-bhrc-workspace-folder="deleted"] > span:first-child,
.bhrc-workspace-folder[data-bhrc-workspace-folder="notes"] > span:first-child,
.bhrc-workspace-folder[data-bhrc-workspace-folder="tasks"] > span:first-child {
  font-size: 1.02rem;
}

.bhrc-workspace-folder > .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  justify-self: center;
}

.bhrc-workspace-rail .bhrc-workspace-icon {
  width: 27px;
  height: 27px;
}

.bhrc-workspace-top-actions .bhrc-workspace-icon {
  width: 20px;
  height: 20px;
}

.bhrc-workspace-list-tool .bhrc-workspace-icon,
.bhrc-workspace-search-filter .bhrc-workspace-icon,
.bhrc-workspace-search-submit .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}
/* /BehindApp folder icon polish */

@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;
  }
}

/* BehindApp profile and top action canon */
.bhrc-workspace-list-tool-select > span::before {
  display: none;
  content: none;
}

.bhrc-workspace-list-tool-select > span::after {
  display: none;
  content: none;
}

.bhrc-workspace-top-actions {
  gap: 6px;
  align-self: stretch;
  height: 100%;
  padding-right: 8px;
  background: transparent;
}

.bhrc-workspace-icon-button {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #26323a;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-icon-button:hover,
.bhrc-workspace-icon-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-icon-button > span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  color: inherit;
}

.bhrc-workspace-scope .bhrc-workspace-icon::before,
.bhrc-workspace-filter-row button .bhrc-workspace-icon::before,
.bhrc-workspace-section-chevron::before {
  display: none;
  content: none;
}

.bhrc-workspace-scope .bhrc-workspace-icon,
.bhrc-workspace-filter-row button .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.bhrc-workspace-search-back::before {
  width: 18px;
  height: 18px;
  border: 0;
  background: currentColor;
  -webkit-mask-image: url("/static/icons/behindapp/angle-left.svg");
  mask-image: url("/static/icons/behindapp/angle-left.svg");
  -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-section-chevron {
  color: #46525b;
  background: currentColor;
  transform: none;
}

.bhrc-workspace-nav-heading[aria-expanded="false"] .bhrc-workspace-section-chevron {
  transform: rotate(-90deg);
}

.bhrc-workspace-account-chip {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  min-height: 42px;
  max-width: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-account-chip:hover,
.bhrc-workspace-account-chip:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-account-chip .bhrc-workspace-avatar {
  width: 34px;
  height: 34px;
  border: 1px solid #d2d9de;
  background: #e8edf0;
  color: #24313a;
  font-size: 0.92rem;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.bhrc-workspace-profile-menu {
  width: var(--bhrc-workspace-side-panel-width, min(500px, calc(100vw - 24px)));
  max-width: calc(100vw - 24px);
  gap: 12px;
  padding: 18px 16px 16px;
  border-color: #d8dee4;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(23, 32, 38, 0.18);
}

.bhrc-workspace-profile-menu .bhrc-workspace-profile-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  color: #26323a;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.bhrc-workspace-profile-menu .bhrc-workspace-profile-close:hover,
.bhrc-workspace-profile-menu .bhrc-workspace-profile-close:focus-visible {
  background: transparent;
  outline: 0;
}

.bhrc-workspace-profile-contact {
  display: block;
  padding: 0 42px 0 8px !important;
  color: #172026 !important;
  text-align: center;
  font-size: 0.9rem !important;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-profile-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 12px 4px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(-18deg, rgba(23, 32, 38, 0.045) 0 1px, transparent 1px 8px);
}

.bhrc-workspace-profile-menu span {
  padding: 0;
}

.bhrc-workspace-profile-menu .bhrc-workspace-profile-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 2px solid #9ea8ae;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #657078 0 15%, transparent 16%),
    radial-gradient(circle at 50% 78%, #657078 0 29%, transparent 30%),
    #eef2f4;
  color: transparent;
  font-size: 0;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.bhrc-workspace-profile-menu .bhrc-workspace-profile-camera {
  position: absolute;
  top: 62px;
  left: calc(50% + 22px);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #26323a;
  color: #ffffff;
}

.bhrc-workspace-profile-camera::before {
  content: "";
  width: 12px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 -3px 0 -1px currentColor;
}

.bhrc-workspace-profile-camera::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.bhrc-workspace-profile-hero h2 {
  margin: 4px 0 0;
  color: #172026;
  font-size: 1.35rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
}

.bhrc-workspace-profile-hero h2 span {
  color: inherit;
  font: inherit;
}

.bhrc-workspace-profile-hero small {
  max-width: 100%;
  color: #5c6870;
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-profile-manage {
  justify-content: center !important;
  min-height: 38px !important;
  border: 1px solid #9aa5ac !important;
  border-radius: 999px !important;
  color: #26323a !important;
  font-weight: 800;
}

.bhrc-workspace-profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #e0e5e8;
  border-radius: 22px;
  background: #ffffff;
}

.bhrc-workspace-profile-actions button {
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 10px !important;
  border-radius: 0 !important;
  font-weight: 760;
}

.bhrc-workspace-profile-actions button + button {
  border-left: 1px solid #e0e5e8;
}

.bhrc-workspace-profile-actions button span:first-child {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1.4px solid #77838b;
  border-radius: 50%;
  color: #26323a;
  font-weight: 700;
}

.bhrc-workspace-profile-actions button:hover,
.bhrc-workspace-profile-actions button:focus-visible,
.bhrc-workspace-profile-manage:hover,
.bhrc-workspace-profile-manage:focus-visible {
  background: transparent !important;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-profile-menu footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #5c6870;
  font-size: 0.78rem;
}

.bhrc-workspace-profile-menu footer a {
  color: inherit;
  text-decoration: none;
}
/* /BehindApp profile and top action canon */

/* BehindApp profile side panel canon */
.bhrc-workspace-profile-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  width: var(--bhrc-workspace-side-panel-width);
  padding: 22px 18px;
  background: #ffffff;
}

.bhrc-workspace-profile-panel[hidden] {
  display: none;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-contact {
  padding: 3px 42px 2px 0 !important;
  text-align: left;
}

.bhrc-workspace-profile-panel span {
  padding: 0;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-hero {
  margin-top: 2px;
  padding: 10px 10px 8px;
  border: 1px solid #e0e5e8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
    repeating-linear-gradient(-18deg, rgba(23, 32, 38, 0.04) 0 1px, transparent 1px 8px);
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-avatar {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid #9ea8ae;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #657078 0 15%, transparent 16%),
    radial-gradient(circle at 50% 78%, #657078 0 29%, transparent 30%),
    #eef2f4;
  color: transparent;
  font-size: 0;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera {
  position: absolute;
  top: 66px;
  left: calc(50% + 24px);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #26323a;
  color: #ffffff;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-manage {
  width: 100%;
  background: transparent;
}

.bhrc-workspace-profile-panel footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #5c6870;
  font-size: 0.78rem;
}

.bhrc-workspace-profile-panel footer a {
  color: inherit;
  text-decoration: none;
}
/* /BehindApp profile side panel canon */

/* BehindApp help side panel canon */
.bhrc-workspace-help-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  width: var(--bhrc-workspace-side-panel-width);
  padding: 30px 28px 24px;
  overflow: hidden;
  background: #ffffff;
}

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

.bhrc-workspace-help-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 34px);
  width: 100%;
}

.bhrc-workspace-help-tabs button {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #4e5a62;
  background: transparent;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.bhrc-workspace-help-tabs button:hover,
.bhrc-workspace-help-tabs button:focus-visible {
  color: #111820;
  background: transparent;
  outline: 0;
}

.bhrc-workspace-help-tabs button.is-active,
.bhrc-workspace-help-tabs button[aria-selected="true"] {
  color: #111820;
  background: transparent;
  font-weight: 800;
  text-shadow: 0 0 0 currentColor;
}

.bhrc-workspace-help-scroll {
  min-height: 0;
  margin-top: 28px;
  padding-right: 28px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.bhrc-workspace-help-content {
  margin-top: 0;
}

.bhrc-workspace-help-content[hidden] {
  display: none;
}

.bhrc-workspace-help-view {
  --bhrc-workspace-help-search-stick-height: 58px;
}

.bhrc-workspace-help-view[hidden] {
  display: none;
}

.bhrc-workspace-help-article-tools {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  background: #ffffff;
}

.bhrc-workspace-help-back {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #172026;
  background: transparent;
  cursor: pointer;
}

.bhrc-workspace-help-back:hover,
.bhrc-workspace-help-back:focus-visible {
  color: #000000;
  background: transparent;
  outline: 0;
}

.bhrc-workspace-help-back .bhrc-workspace-icon {
  width: 22px;
  height: 22px;
}

.bhrc-workspace-help-search {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  color: #4e5a62;
  background: #ffffff;
}

.bhrc-workspace-help-view > .bhrc-workspace-help-search {
  margin-bottom: 12px;
  box-shadow: 0 12px 0 #ffffff;
}

.bhrc-workspace-help-article-tools .bhrc-workspace-help-search {
  position: static;
  top: auto;
  z-index: auto;
}

.bhrc-workspace-help-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  color: #172026;
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  outline: 0;
}

.bhrc-workspace-help-search input::placeholder {
  color: #4f5d69;
}

.bhrc-workspace-help-search-results {
  position: sticky;
  top: var(--bhrc-workspace-help-search-stick-height);
  z-index: 11;
  display: grid;
  gap: 6px;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 6px;
  border: 1px solid #d6dde3;
  border-radius: 8px;
  background: #ffffff;
}

.bhrc-workspace-help-search-results[hidden] {
  display: none;
}

.bhrc-workspace-help-search-results button,
.bhrc-workspace-help-search-results p {
  width: 100%;
  margin: 0;
  padding: 8px 9px;
  border: 0;
  border-radius: 6px;
  color: #172026;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
}

.bhrc-workspace-help-search-results button {
  cursor: pointer;
}

.bhrc-workspace-help-search-results button:hover,
.bhrc-workspace-help-search-results button:focus-visible {
  color: #000000;
  background: #eef2f4;
  outline: 0;
}

.bhrc-workspace-help-search-target {
  border-color: #111820;
  box-shadow: 0 0 0 2px rgba(17, 24, 32, 0.12);
}

.bhrc-workspace-help-article {
  display: grid;
  gap: 22px;
  width: 100%;
  margin-top: 18px;
  padding: 18px 16px 22px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  color: #172026;
  background: #ffffff;
}

.bhrc-workspace-help-article h2,
.bhrc-workspace-help-article h3,
.bhrc-workspace-help-article p {
  margin: 0;
}

.bhrc-workspace-help-article h2 {
  color: #111820;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 850;
}

.bhrc-workspace-help-article h3 {
  color: #111820;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 850;
}

.bhrc-workspace-help-article section {
  display: grid;
  gap: 12px;
  scroll-margin-top: 14px;
}

.bhrc-workspace-help-article p {
  font-size: 0.93rem;
  line-height: 1.48;
}

.bhrc-workspace-help-article a {
  color: #111820;
  font-weight: 800;
  text-decoration: none;
}

.bhrc-workspace-help-article a:hover,
.bhrc-workspace-help-article a:focus-visible {
  color: #000000;
  text-decoration: none;
  outline: 0;
}

.bhrc-workspace-help-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #172026;
  font-size: 0.93rem;
  line-height: 1.48;
}

.bhrc-workspace-help-steps li {
  padding-left: 2px;
}

.bhrc-workspace-help-steps .bhrc-workspace-icon {
  width: 16px;
  height: 16px;
  margin: 0 2px -3px;
  color: #172026;
}

.bhrc-workspace-help-card {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 18px 16px 16px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  color: #172026;
  background: #ffffff;
}

.bhrc-workspace-help-info-card {
  gap: 12px;
}

.bhrc-workspace-help-card h3 {
  margin: 0 0 10px;
  color: #111820;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 800;
}

.bhrc-workspace-help-info-card h3 {
  margin-bottom: 0;
}

.bhrc-workspace-help-info-card p {
  margin: 0;
  color: #172026;
  font-size: 0.95rem;
  line-height: 1.45;
}

.bhrc-workspace-help-info-card a {
  justify-self: start;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.bhrc-workspace-help-info-card a:hover,
.bhrc-workspace-help-info-card a:focus-visible {
  color: #000000;
  text-decoration: none;
  outline: 0;
}

.bhrc-workspace-help-topic {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  padding: 7px 2px;
  border: 0;
  border-radius: 0;
  color: #172026;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.bhrc-workspace-help-topic:hover,
.bhrc-workspace-help-topic:focus-visible {
  color: #000000;
  background: transparent;
  outline: 0;
  text-shadow: 0 0 0 currentColor;
}

.bhrc-workspace-help-topic .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.bhrc-workspace-tips-view {
  display: grid;
  gap: 0;
}

.bhrc-workspace-tips-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}

.bhrc-workspace-tip-card {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 14px 14px 15px;
  border: 1px solid #c6ced6;
  border-radius: 8px;
  color: #172026;
  background: #ffffff;
}

.bhrc-workspace-tip-category {
  justify-self: start;
  display: inline-grid;
  grid-template-columns: 16px auto;
  align-items: center;
  gap: 7px;
  min-height: 22px;
  color: #111820;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 800;
}

.bhrc-workspace-tip-category .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
}

.bhrc-workspace-tip-card h3 {
  margin: 0;
  color: #172026;
  font-size: 0.94rem;
  line-height: 1.32;
  font-weight: 850;
}

.bhrc-workspace-tip-card p {
  margin: 0;
  color: #34424d;
  font-size: 0.86rem;
  line-height: 1.42;
}

.bhrc-workspace-tip-action {
  justify-self: start;
  width: auto;
  min-width: 0;
  min-height: 32px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1.2;
}

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

.bhrc-workspace-support-message {
  position: relative;
  display: block;
}

.bhrc-workspace-support-message textarea {
  display: block;
  width: 100%;
  min-height: 250px;
  resize: vertical;
  border: 1px solid #c6ced6;
  border-radius: 4px;
  padding: 12px 12px 58px;
  color: #172026;
  background: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhrc-workspace-support-message textarea::placeholder {
  color: #717c84;
}

.bhrc-workspace-support-message textarea:focus {
  border-color: #8a949c;
  outline: 2px solid rgba(32, 37, 43, 0.12);
  outline-offset: 2px;
}

.bhrc-workspace-support-file-row {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.bhrc-workspace-support-file-name {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  margin-right: auto;
  max-width: min(260px, calc(100% - 112px));
  min-height: 34px;
  padding: 4px 3px 4px 9px;
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  overflow: hidden;
  color: #4a5660;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.bhrc-workspace-support-file-name a {
  min-width: 0;
  overflow: hidden;
  color: #172026;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-support-file-name a:hover,
.bhrc-workspace-support-file-name a:focus-visible {
  color: #000000;
  text-decoration: none;
  outline: 0;
}

.bhrc-workspace-support-file-name[hidden] {
  display: none;
}

.bhrc-workspace-support-file-remove {
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.bhrc-workspace-support-file-name:hover .bhrc-workspace-support-file-remove,
.bhrc-workspace-support-file-name:focus-within .bhrc-workspace-support-file-remove {
  opacity: 1;
  pointer-events: auto;
}

.bhrc-workspace-support-file-button,
.bhrc-workspace-support-send,
.bhrc-workspace-support-cancel {
  width: auto;
  min-width: 0;
  min-height: 38px;
  margin: 0;
  padding: 0 18px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.bhrc-workspace-support-file-button {
  background: #ffffff;
}

.bhrc-workspace-support-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}
/* /BehindApp help side panel canon */

/* BehindApp profile panel cropper */
.bhrc-workspace-profile-panel {
  width: var(--bhrc-workspace-side-panel-width, min(500px, 96vw));
  gap: 16px;
  padding: 30px 28px 24px;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-hero {
  gap: 10px;
  margin-top: 0;
  padding: 4px 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bhrc-workspace-profile-identifiers {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 100%;
  margin: 0 0 2px;
  color: #26323a;
}

.bhrc-workspace-profile-identity-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
  min-height: 24px;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}

.bhrc-workspace-profile-identity-row strong {
  font: inherit;
  font-weight: 780;
  color: #172026;
}

.bhrc-workspace-profile-identity-row code {
  min-width: 92px;
  padding: 0;
  color: #566174;
  background: transparent;
  border: 0;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: left;
}

.bhrc-workspace-profile-secret-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  min-height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #26323a;
  cursor: pointer;
  transform: none;
  box-shadow: none;
}

.bhrc-workspace-profile-secret-toggle:hover,
.bhrc-workspace-profile-secret-toggle:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-profile-secret-toggle span {
  position: relative;
  display: block;
  width: 17px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-radius: 50% / 58%;
}

.bhrc-workspace-profile-secret-toggle span::before {
  content: "";
  position: absolute;
  inset: 3px 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
}

.bhrc-workspace-profile-secret-toggle span::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 5px;
  width: 21px;
  height: 1.6px;
  background: currentColor;
  transform: rotate(-34deg) scaleX(0);
  transform-origin: center;
}

.bhrc-workspace-profile-secret-toggle.is-revealed span::after {
  transform: rotate(-34deg) scaleX(1);
}

.bhrc-workspace-profile-secret-toggle .bhrc-workspace-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: currentColor;
}

.bhrc-workspace-profile-secret-toggle .bhrc-workspace-icon::before,
.bhrc-workspace-profile-secret-toggle .bhrc-workspace-icon::after {
  content: none;
  display: none;
}

.bhrc-workspace-profile-avatar-stage {
  position: relative;
  width: 172px;
  height: 170px;
  margin: 0 auto 2px;
  color: #26323a;
  overflow: visible;
}

.bhrc-workspace-profile-photo {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 141px;
  height: 141px;
  border: 2px solid #7d878e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #657078 0 15%, transparent 16%),
    radial-gradient(circle at 50% 78%, #657078 0 29%, transparent 30%),
    #eef2f4;
  background-position: center;
  background-size: cover;
  color: transparent;
  font-size: 0;
  box-shadow: inset 0 0 0 4px #ffffff;
  pointer-events: none;
}

.bhrc-workspace-profile-camera-button {
  position: absolute;
  top: 98px;
  left: 124px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #26323a;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-profile-camera-button:hover,
.bhrc-workspace-profile-camera-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-profile-camera-icon {
  display: block;
  width: 39px;
  height: auto;
  overflow: visible;
}

.bhrc-workspace-profile-camera-icon path,
.bhrc-workspace-profile-camera-icon circle {
  fill: #ffffff;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bhrc-workspace-profile-camera-icon path:last-child {
  fill: none;
  stroke-width: 3.2;
}

.bhrc-workspace-profile-avatar-control {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 0 auto 2px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #26323a;
  cursor: default;
  overflow: visible;
}

.bhrc-workspace-profile-avatar-control:hover,
.bhrc-workspace-profile-avatar-control:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-avatar,
.bhrc-workspace-profile-avatar-control .bhrc-workspace-profile-avatar {
  width: 141px;
  height: 141px;
  border: 2px solid #7d878e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #657078 0 15%, transparent 16%),
    radial-gradient(circle at 50% 78%, #657078 0 29%, transparent 30%),
    #eef2f4;
  background-position: center;
  background-size: cover;
  color: transparent;
  font-size: 0;
  box-shadow: inset 0 0 0 4px #ffffff;
  pointer-events: none;
}

[data-bhrc-profile-avatar-display].has-photo {
  background-position: center !important;
  background-size: cover !important;
  color: transparent !important;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera,
.bhrc-workspace-profile-avatar-control .bhrc-workspace-profile-camera {
  position: absolute;
  right: -12px;
  top: 62px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #26323a;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera::before {
  width: 22px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 54%, transparent 0 4px, currentColor 4.5px 5.8px, transparent 6.2px),
    linear-gradient(currentColor 0 0) 50% -4px / 9px 5px no-repeat,
    #ffffff;
  box-shadow: 0 0 0 3px #ffffff;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera::after {
  display: none;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera:hover,
.bhrc-workspace-profile-panel .bhrc-workspace-profile-camera:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-profile-photo-trigger {
  position: absolute;
  top: 61px;
  right: -16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #26323a;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.bhrc-workspace-profile-photo-trigger:hover,
.bhrc-workspace-profile-photo-trigger:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.bhrc-workspace-profile-camera-glyph {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
  border: 2px solid #7d878e;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 0 0 3px #ffffff;
}

.bhrc-workspace-profile-camera-glyph::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 8px;
  width: 10px;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background: #7d878e;
}

.bhrc-workspace-profile-camera-glyph::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 6px;
  border: 2px solid #26323a;
  border-radius: 50%;
  background: #ffffff;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-hero h2 {
  margin-top: 2px;
  font-size: 1.42rem;
}

.bhrc-workspace-profile-panel .bhrc-workspace-profile-hero small {
  color: #566174;
}

.bhrc-workspace-profile-manage,
.bhrc-workspace-profile-actions button,
.bhrc-profile-editor-save,
.bhrc-profile-editor-cancel {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  font-weight: 740;
  transform: none;
  transition: none;
}

.bhrc-workspace-profile-manage,
.bhrc-profile-editor-save {
  margin-top: 2px;
  border: 1px solid rgba(32, 37, 43, 0.48) !important;
  color: #566174 !important;
  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)) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
}

.bhrc-workspace-profile-manage:hover,
.bhrc-workspace-profile-manage:focus,
.bhrc-profile-editor-save:hover,
.bhrc-profile-editor-save:focus {
  color: #1f2937 !important;
  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)) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.74), 2px 3px 0 rgba(15, 17, 21, 0.08);
  outline: none;
  transform: none;
}

.bhrc-workspace-profile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bhrc-workspace-profile-actions button,
.bhrc-profile-editor-cancel {
  min-height: 44px !important;
  padding: 0 16px !important;
  border: 1px solid #9aa3ad !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #566174 !important;
  font-weight: 620;
  box-shadow: none;
}

.bhrc-workspace-profile-actions button + button {
  border-left: 1px solid #9aa3ad;
}

.bhrc-workspace-profile-actions button span:first-child {
  display: none;
}

.bhrc-workspace-profile-actions button:hover,
.bhrc-workspace-profile-actions button:active,
.bhrc-workspace-profile-actions button:focus,
.bhrc-profile-editor-cancel:hover,
.bhrc-profile-editor-cancel:focus {
  border-color: #7f8894 !important;
  background: #ffffff !important;
  color: #1f2937 !important;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transform: none;
}

.bhrc-workspace-profile-actions button[data-bhrc-workspace-logout]:hover,
.bhrc-workspace-profile-actions button[data-bhrc-workspace-logout]:focus-visible {
  color: #b42318 !important;
}

.bhrc-workspace-profile-panel footer {
  margin-top: 4px;
}

.bhrc-profile-editor-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 17, 21, 0.44);
}

.bhrc-profile-editor-layer[hidden] {
  display: none;
}

.bhrc-profile-editor {
  display: grid;
  gap: 16px;
  width: min(430px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(15, 17, 21, 0.18);
}

.bhrc-profile-editor h2 {
  margin: 0;
  color: #0f1115;
  font-size: 1.28rem;
}

.bhrc-profile-editor-crop {
  display: grid;
  place-items: center;
  padding: 10px;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 48%, rgba(0, 0, 0, 0.025) 0 1px, transparent 1.5px),
    #ffffff;
}

.bhrc-profile-editor-crop canvas {
  width: 280px;
  height: 280px;
  max-width: 100%;
  border: 2px solid #7d878e;
  border-radius: 50%;
  cursor: grab;
}

.bhrc-profile-editor-crop canvas:active {
  cursor: grabbing;
}

.bhrc-profile-editor-zoom {
  display: grid;
  gap: 8px;
  color: #3d4850;
  font-weight: 720;
}

.bhrc-profile-editor-zoom input {
  width: 100%;
  accent-color: #737d83;
}

.bhrc-profile-editor footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* /BehindApp profile panel cropper */

/* BehindApp QR block list and footer alignment refinements */
.bhrc-workspace-body {
  --bhrc-workspace-footer-height: 124px;
  --bhrc-workspace-footer-content-start: 70px;
  --bhrc-workspace-footer-line-offset: 18px;
  --bhrc-workspace-footer-row-space: 14px;
  --bhrc-workspace-qr-data-row-height: 38px;
  --bhrc-workspace-qr-head-row-height: 25px;
  --bhrc-workspace-qr-panel-inset-x: 8px;
  --bhrc-workspace-qr-panel-inset-y: 14px;
  --bhrc-workspace-qr-rule-after-title: 4px;
  --bhrc-workspace-qr-rule-before-head: 7px;
  --bhrc-workspace-qr-title-line-height: 24px;
  --bhrc-workspace-qr-nav-width: 372px;
  --bhrc-workspace-qr-reader-inset: clamp(28px, 4vw, 56px);
  --bhrc-workspace-qr-reader-min-width: 900px;
  --bhrc-workspace-qr-page-min-width: calc(56px + var(--bhrc-workspace-qr-nav-width) + var(--bhrc-workspace-qr-reader-min-width));
}

.bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] {
  min-width: var(--bhrc-workspace-qr-page-min-width);
  overflow-x: auto;
  overflow-y: hidden;
}

.bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-shell {
  width: 100%;
  min-width: var(--bhrc-workspace-qr-page-min-width);
}

@media (min-width: 901px) {
  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"] .bhrc-workspace-main {
    grid-template-columns: var(--bhrc-workspace-qr-nav-width) minmax(var(--bhrc-workspace-qr-reader-min-width), 1fr);
    min-width: calc(var(--bhrc-workspace-qr-nav-width) + var(--bhrc-workspace-qr-reader-min-width));
  }

  .bhrc-workspace-body[data-bhrc-active-workspace-app="qr-scan"].is-nav-collapsed .bhrc-workspace-main {
    grid-template-columns: minmax(var(--bhrc-workspace-qr-reader-min-width), 1fr);
    min-width: var(--bhrc-workspace-qr-reader-min-width);
  }
}

.bhrc-workspace-rail {
  bottom: 0;
}

.bhrc-workspace-main {
  height: 100%;
  overflow: hidden;
}

.bhrc-workspace-nav,
.bhrc-workspace-list-pane,
.bhrc-workspace-reader {
  align-self: stretch;
  height: 100%;
  max-height: 100%;
  min-height: 0;
}

.bhrc-workspace-message-list,
.bhrc-workspace-reader {
  overflow-x: hidden !important;
  overflow-y: auto;
}

.bhrc-workspace-reader-body.has-html {
  overflow-x: auto;
}

.bhrc-workspace-nav {
  padding-bottom: 0;
  overflow-x: hidden !important;
  overflow-y: auto;
}

.bhrc-workspace-nav::-webkit-scrollbar:horizontal,
.bhrc-workspace-message-list::-webkit-scrollbar:horizontal,
.bhrc-workspace-reader::-webkit-scrollbar:horizontal {
  width: 0;
  height: 0;
  display: none;
}

.bhrc-workspace-nav::-webkit-scrollbar-corner,
.bhrc-workspace-message-list::-webkit-scrollbar-corner,
.bhrc-workspace-reader::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
  background: transparent;
}

.bhrc-workspace-qr-nav {
  display: block;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 0 0 0 6px;
  background: #ffffff;
  overflow-x: hidden !important;
  overflow-y: auto;
}

.bhrc-workspace-qr-blocks {
  display: block;
  min-height: 100%;
  padding: 0;
  overflow: visible;
}

.bhrc-workspace-qr-sticky-head {
  position: sticky;
  top: 0;
  z-index: 3;
  padding-top: var(--bhrc-workspace-qr-panel-inset-y);
  background: #ffffff;
}

.bhrc-workspace-qr-blocks h2 {
  min-height: var(--bhrc-workspace-qr-title-line-height);
  padding: 3px var(--bhrc-workspace-qr-panel-inset-x) 0;
  line-height: 1.15;
}

.bhrc-workspace-qr-divider {
  margin: var(--bhrc-workspace-qr-rule-after-title) var(--bhrc-workspace-qr-panel-inset-x) var(--bhrc-workspace-qr-rule-before-head);
}

.bhrc-workspace-qr-block-head {
  min-height: var(--bhrc-workspace-qr-head-row-height);
  padding-right: var(--bhrc-workspace-qr-panel-inset-x);
  padding-left: var(--bhrc-workspace-qr-panel-inset-x);
}

.bhrc-workspace-qr-block-list {
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.bhrc-workspace-qr-nav.is-mempool-passive .bhrc-workspace-qr-sticky-head,
.bhrc-workspace-qr-nav.is-mempool-passive .bhrc-workspace-qr-block-list {
  opacity: 0.56;
}

.bhrc-workspace-qr-nav.is-mempool-passive .bhrc-workspace-qr-block-row {
  cursor: default;
}

.bhrc-workspace-qr-block-row span:first-child,
.bhrc-workspace-qr-block-row span:last-child {
  color: #40505b;
  font-weight: 560;
}

.bhrc-workspace-qr-block-row:hover,
.bhrc-workspace-qr-block-row:focus-visible {
  background: transparent;
}

.bhrc-workspace-qr-block-row.is-active {
  background: transparent;
}

.bhrc-workspace-qr-block-row.is-active span:first-child,
.bhrc-workspace-qr-block-row.is-active span:last-child {
  color: #101820;
  font-weight: 850;
}

.bhrc-workspace-qr-reader {
  display: block;
  min-height: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: auto;
}

.bhrc-workspace-qr-nav::-webkit-scrollbar:horizontal,
.bhrc-workspace-qr-reader::-webkit-scrollbar:horizontal {
  width: 0;
  height: 0;
  display: none;
}

.bhrc-workspace-qr-nav::-webkit-scrollbar-corner,
.bhrc-workspace-qr-reader::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
  background: transparent;
}

.bhrc-workspace-qr-reader-empty {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--bhrc-workspace-qr-reader-inset);
}

.bhrc-workspace-qr-reader-empty {
  display: grid;
  min-height: 100%;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.bhrc-workspace-qr-tracking-icon {
  width: clamp(94px, 10vw, 126px);
  height: clamp(94px, 10vw, 126px);
  object-fit: contain;
  cursor: pointer;
}

.bhrc-workspace-qr-detail {
  align-content: start;
  box-sizing: border-box;
  gap: 0;
  width: min(100%, 900px);
  min-width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto var(--bhrc-workspace-qr-reader-inset);
  overflow-x: visible;
  overflow-y: visible;
}

.bhrc-workspace-qr-detail.has-centered-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.bhrc-workspace-qr-detail-sticky {
  position: sticky;
  top: 0;
  z-index: 5;
  display: block;
  padding-top: var(--bhrc-workspace-qr-panel-inset-y);
  background: #ffffff;
}

.bhrc-workspace-qr-detail header {
  min-height: calc(var(--bhrc-workspace-qr-title-line-height) + var(--bhrc-workspace-qr-rule-after-title) + 1px);
  padding-bottom: 0;
  border-bottom: 1px solid #dce2e7;
  background: #ffffff;
}

.bhrc-workspace-qr-detail header.bhrc-workspace-qr-transaction-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 18px;
}

.bhrc-workspace-qr-detail h1 {
  min-height: var(--bhrc-workspace-qr-title-line-height);
  padding: 3px 0 0;
  color: #172026;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
}

.bhrc-workspace-qr-detail .bhrc-workspace-qr-detail-heading {
  min-height: var(--bhrc-workspace-qr-head-row-height);
  display: flex;
  align-items: center;
  margin: var(--bhrc-workspace-qr-rule-before-head) 0 0;
  background: #ffffff;
  color: #5e6971;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.bhrc-workspace-qr-detail-grid {
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(150px, 0.38fr) max-content;
  margin: 0;
  grid-auto-rows: minmax(var(--bhrc-workspace-qr-data-row-height), max-content);
  border-top: 0;
  overflow-x: auto;
  overflow-y: visible;
}

.bhrc-workspace-qr-detail-grid dt,
.bhrc-workspace-qr-detail-grid dd {
  min-height: var(--bhrc-workspace-qr-data-row-height);
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
  overflow: visible;
}

.bhrc-workspace-qr-detail-grid dd {
  white-space: nowrap;
}

.bhrc-workspace-qr-transaction-empty {
  min-height: var(--bhrc-workspace-qr-data-row-height);
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid #e8ecef;
  color: #5e6971;
  line-height: 1.2;
}

.bhrc-workspace-qr-mempool-notice {
  min-height: var(--bhrc-workspace-qr-data-row-height);
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid #e8ecef;
  color: #172026;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-count {
  min-height: var(--bhrc-workspace-qr-head-row-height);
  display: flex;
  align-items: center;
  gap: 4px;
  margin: var(--bhrc-workspace-qr-rule-before-head) 0 0;
  padding: 0;
  border-bottom: 0;
  color: #5e6971;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-count strong {
  color: #172026;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.bhrc-workspace-qr-mempool-empty {
  flex: 1;
  min-height: 240px;
  display: grid;
  align-content: center;
  justify-items: center;
  row-gap: 12px;
  padding: var(--bhrc-workspace-qr-reader-inset) 0;
  color: #5e6971;
  text-align: center;
}

.bhrc-workspace-qr-mempool-empty p {
  max-width: 520px;
  margin: 0;
  border: 0;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.bhrc-workspace-qr-mempool-empty.is-notice p {
  color: #172026;
  font-weight: 850;
}

.bhrc-workspace-qr-data-collection-icon {
  width: clamp(94px, 10vw, 126px);
  height: clamp(94px, 10vw, 126px);
  object-fit: contain;
  cursor: pointer;
}

.bhrc-workspace-qr-transaction-index {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 18px;
  width: 100%;
  min-width: 0;
}

.bhrc-workspace-qr-transaction-index::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e8ecef;
  transform: translateX(-0.5px);
  pointer-events: none;
}

.bhrc-workspace-qr-transaction-index-column {
  min-width: 0;
  display: grid;
  align-content: start;
}

.bhrc-workspace-qr-transaction-index-item {
  width: 100%;
  min-height: var(--bhrc-workspace-qr-data-row-height);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e8ecef;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.bhrc-workspace-qr-transaction-index-item:hover,
.bhrc-workspace-qr-transaction-index-item:focus-visible {
  background: transparent;
  outline: 0;
}

.bhrc-workspace-qr-transaction-index-item.is-active {
  background: transparent;
}

.bhrc-workspace-qr-transaction-index-item strong {
  color: #172026;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-index-item.is-active strong {
  color: #101820;
  font-size: 0.9rem;
  font-weight: 900;
}

.bhrc-workspace-qr-transaction-index-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5e6971;
  font-size: 0.84rem;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-index-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhrc-workspace-qr-transaction-index-meta .bhrc-workspace-qr-validation-badge {
  flex: 0 0 auto;
  min-width: max-content;
  max-width: 9.5rem;
  padding: 1px 5px;
  border: 1px solid #d6dde2;
  border-radius: 3px;
  background: #f6f8f9;
  color: #4f5b63;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bhrc-workspace-qr-validation-badge.is-mineable {
  border-color: #c9ddd2;
  background: #f1f8f4;
  color: #315744;
}

.bhrc-workspace-qr-validation-badge.is-domain_invalid {
  border-color: #e4cbc7;
  background: #fbf3f2;
  color: #7a3d34;
}

.bhrc-workspace-qr-validation-badge.is-unchecked {
  border-color: #d8dee3;
  background: #f6f7f8;
  color: #5d6870;
}

.bhrc-workspace-qr-transaction-index-hash {
  color: #172026;
  font-variant-numeric: tabular-nums;
}

.bhrc-workspace-qr-transaction-index-item small {
  color: #5e6971;
  font-size: 0.8rem;
  line-height: 1.2;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.bhrc-workspace-qr-transaction-index-item.is-active .bhrc-workspace-qr-transaction-index-meta,
.bhrc-workspace-qr-transaction-index-item.is-active small {
  color: #101820;
  font-weight: 850;
}

.bhrc-workspace-qr-transaction-index-item.is-active .bhrc-workspace-qr-transaction-index-meta {
  font-size: 0.86rem;
}

.bhrc-workspace-qr-transaction-index-item.is-active small {
  font-size: 0.84rem;
}

.bhrc-workspace-qr-transaction-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: start;
  gap: 16px;
  min-height: var(--bhrc-workspace-qr-title-line-height);
  padding: 3px 0 0;
  white-space: nowrap;
}

.bhrc-workspace-qr-transaction-pager-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: var(--bhrc-workspace-qr-title-line-height);
  border: 0;
  background: transparent;
  color: #172026;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  padding: 0;
  text-decoration: none;
}

.bhrc-workspace-qr-transaction-pager-button.is-disabled,
.bhrc-workspace-qr-transaction-pager-button:disabled {
  color: #a3adb4;
  cursor: default;
  opacity: 0.52;
}

.bhrc-workspace-qr-transaction-pager-button .bhrc-workspace-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
}

.bhrc-workspace-qr-transaction-pager-button:hover,
.bhrc-workspace-qr-transaction-pager-button:focus-visible {
  color: #40505b;
  outline: 0;
  text-decoration: none;
}

.bhrc-workspace-qr-transaction-pager-button.is-disabled:hover,
.bhrc-workspace-qr-transaction-pager-button:disabled:hover,
.bhrc-workspace-qr-transaction-pager-button.is-disabled:focus-visible,
.bhrc-workspace-qr-transaction-pager-button:disabled:focus-visible {
  color: #a3adb4;
}

.bhrc-workspace-qr-transaction-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 24, 32, 0.42);
}

.bhrc-workspace-qr-transaction-modal-layer[hidden] {
  display: none;
}

.bhrc-workspace-qr-transaction-modal {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(860px, calc(100vw - 48px));
  height: min(640px, calc(100vh - 48px));
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(16, 24, 32, 0.26);
  overflow: hidden;
}

.bhrc-workspace-qr-transaction-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #25313a;
  cursor: pointer;
  font-size: 0;
}

.bhrc-workspace-qr-transaction-modal-close .bhrc-workspace-icon {
  width: 18px;
  height: 18px;
}

.bhrc-workspace-qr-transaction-modal-close:hover,
.bhrc-workspace-qr-transaction-modal-close:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.bhrc-workspace-qr-transaction-modal header {
  padding: 26px 60px 18px 28px;
  border-bottom: 1px solid #e4e8ec;
}

.bhrc-workspace-qr-transaction-modal h2 {
  margin: 0 0 8px;
  color: #101820;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-modal p {
  margin: 0;
  color: #5e6971;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.3;
}

.bhrc-workspace-qr-transaction-modal-content {
  min-height: 0;
  overflow: auto;
  padding: 0 28px 24px;
}

.bhrc-workspace-qr-transaction-modal-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) max-content;
  width: max-content;
  min-width: 100%;
  margin: 0;
}

.bhrc-workspace-qr-transaction-modal-grid dt,
.bhrc-workspace-qr-transaction-modal-grid dd {
  min-height: var(--bhrc-workspace-qr-data-row-height);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e8ecef;
  line-height: 1.2;
}

.bhrc-workspace-qr-transaction-modal-grid dt {
  color: #5e6971;
  font-size: 0.84rem;
  font-weight: 850;
}

.bhrc-workspace-qr-transaction-modal-grid dd {
  color: #172026;
  font-size: 0.9rem;
  white-space: nowrap;
}

.bhrc-workspace-shell > .bhrc-home-footer {
  position: relative;
  border-top: 0;
}

.bhrc-workspace-shell > .bhrc-home-footer::before {
  position: absolute;
  top: calc(-1 * var(--bhrc-workspace-footer-line-offset));
  bottom: 0;
  left: 56px;
  width: 1px;
  background: #d8dde3;
  content: "";
}

.bhrc-workspace-shell > .bhrc-home-footer::after {
  position: absolute;
  top: calc(-1 * var(--bhrc-workspace-footer-line-offset));
  left: 56px;
  right: 0;
  height: 1px;
  background: #d8dde3;
  content: "";
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-inner {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: var(--bhrc-workspace-footer-row-space);
  width: auto;
  margin: 0 56px 0 var(--bhrc-workspace-footer-content-start);
  padding: var(--bhrc-workspace-footer-row-space) 0;
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-row {
  justify-content: flex-start;
  gap: 10px 27px;
  line-height: 1.2;
  margin: 0;
}

.bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-copy {
  justify-self: center;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 900px) {
  .bhrc-workspace-rail {
    bottom: auto;
  }

  .bhrc-workspace-shell > .bhrc-home-footer .bhrc-home-footer-inner {
    width: min(100% - 32px, 1070px);
    margin: 0 auto;
  }
}
/* /BehindApp QR block list and footer alignment refinements */
