/* /CSS/auth.css
 * Stage 2 — login button + user-avatar styling.
 * Matches the CENTUO green palette and the existing nav control sizing.
 */

.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid #2D6A27;
  border-radius: 999px;
  background: #2D6A27;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.05s ease;
}

.auth-btn:hover {
  background: #1A4418;
  border-color: #1A4418;
}

.auth-btn:active {
  transform: translateY(1px);
}

.auth-btn:focus-visible {
  outline: 2px solid #5DB852;
  outline-offset: 2px;
}

/* Container that Clerk mounts the UserButton avatar into. */
.auth-userbtn {
  display: inline-flex;
  align-items: center;
  min-width: 28px;
  min-height: 28px;
}

/* Mobile-menu variant: full-width pill consistent with the menu's other links. */
.mobile-menu .auth-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  margin-top: 8px;
}
