body {
  min-height: 100%;
  background-color:#f4f4f4;
  font-family: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
.bbcw2-card {
  /* width: 100%; */
  margin: 0;
  padding: 20px 18px 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--bb-radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.86)
    ),
    var(--bb-surface);
  box-shadow: var(--bb-shadow-soft);
  box-sizing: border-box;
}
.btn-success,
.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.96),
    rgba(30, 41, 59, 0.96)
  );
}
label,
.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
  white-space: normal;
  overflow: visible;
  max-width: none;
}
.bbcw-page-header:before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    transform: translate(-35%, -55%);
    background: rgba(15, 23, 42, 0.05);
}
.bbcw-page-header {
  position: relative;
  margin: 0 0 14px;
  padding: 18px 24px 18px;
  border: 1px solid var(--bb-soft-border);
  border-radius: var(--bb-radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.82)
    ),
    var(--bb-surface);
  box-shadow: var(--bb-shadow-soft);
  overflow: hidden;
  box-sizing: border-box;
}
.bbcw-page-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.56);
}
.bbcw-page-title {
  position: relative;
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--bb-ink);
}

.bbcw-page-lead {
  position: relative;
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.66);
}

.bbcw-detail-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px 16px;
  align-items: start;
}

.bbcw-detail-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

.bbcw-detail-value {
  color: var(--bb-ink);
}

.bbcw-detail-section-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.66);
}

.bbcw-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--bb-ink);
}

.bbcw-detail-strong {
  font-weight: 700;
}

.bbcw-detail-status {
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.bbcw-detail-status-line + .bbcw-detail-status-line {
  margin-top: 6px;
}

.bbcw-detail-signature {
  display: block;
  max-width: 100%;
  margin-top: 10px;
}

.bbcw-detail-status-card.is-done {
  border-left: 4px solid #198754;
}

.bbcw-detail-status-card.is-pending {
  border-left: 4px solid #adb5bd;
  opacity: 0.9;
}

@media (max-width: 767.98px) {
  .bbcw-detail-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
