.client-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 14px 18px;
  overflow: visible;
  border-color: rgba(204, 216, 233, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.92));
  box-shadow: 0 10px 26px rgba(27, 48, 98, 0.045);
  backdrop-filter: none;
}
.client-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}
.client-header img {
  width: 150px;
  display: block;
  margin-bottom: 10px;
}
.header-actions {
  position: fixed;
  top: 16px;
  left: max(16px, calc((100vw - 1720px) / 2 + 16px));
  right: max(16px, calc((100vw - 1720px) / 2 + 16px));
  z-index: 120;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  max-height: calc(100vh - 32px);
  padding: 8px;
  border: 1px solid rgba(47, 100, 214, 0.12);
  border-radius: 18px;
  background: rgba(247, 252, 255, 0.92);
  box-shadow: 0 16px 34px rgba(27, 48, 98, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
  overflow: auto;
}
.status-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(49, 88, 201, 0.14);
  border-radius: 999px;
  color: #566176;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.nav-tabs-mobile,
.mobile-nav-section {
  display: none;
}
.nav-tabs a, .mini-form button {
  min-height: 34px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 12px;
}
.nav-tabs a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  border-color: transparent;
}
