/* base styles */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
*/

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* ── Navbar: avatar image ────────────────────────────────────────────────── */
.navbar-avatar {
  object-fit: cover;
  border: 2px solid #dee2e6;
}

/* ── Navbar: initials circle (when no avatar) ────────────────────────────── */
.navbar-initials {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Navbar: extra-small badge (unread contributions count) ──────────────── */
.badge-xs {
  font-size: 0.65em;
}

/* ── Contribute page: icon circle in page header ─────────────────────────── */
.contribute-icon-circle {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}