/* Clerk nav widget styles — shared across all pages */
#clerk-nav-btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#clerk-nav-btn .cl-userButtonBox {
  display: flex;
  align-items: center;
}
#clerk-nav-btn .cl-userButtonAvatarBox {
  width: 28px;
  height: 28px;
}
.clerk-signin-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange, #fb923c);
  text-decoration: none;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--orange, #fb923c);
  border-radius: 8px;
  transition: background 0.14s;
  white-space: nowrap;
}
.clerk-signin-link:hover {
  background: rgba(251, 146, 60, 0.1);
}
[data-theme="light"] .clerk-signin-link {
  color: #ea580c;
  border-color: #ea580c;
}
[data-theme="light"] .clerk-signin-link:hover {
  background: rgba(234, 88, 12, 0.08);
}
