/* SK2463 shared chrome — header pills only. Page layouts stay local. */
.header-font { font-family: Poppins, system-ui, sans-serif; font-weight: 600; }

.sk-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.sk-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pill-on {
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}

.pill-off {
  color: #64748b;
  font-size: 14px;
  padding: 8px 4px;
  font-weight: 500;
  background: none;
  border: none;
  text-decoration: none;
}

.pill-admin {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  color: #475569;
  background: #fff;
}

.pill-logout {
  height: 36px;
  width: 36px;
  border-radius: 999px;
  color: #64748b;
  background: none;
  border: none;
}

.pill-logout:hover,
.pill-off:hover { color: #0f172a; }
