
#report-navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  max-width: 1200px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  border-radius: 0 0 8px 8px;
}

#report-navbar .report-nav-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow-x: auto;
  margin: 0;
  padding: 0 1rem;
  list-style: none;
  scroll-behavior: smooth;
}

#report-navbar .report-nav-item {
  flex: 0 0 auto;
  margin: 0 1rem;
}

#report-navbar .report-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

#report-navbar .report-nav-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

#report-navbar .report-nav-label {
  line-height: 1.2;
}

#report-navbar .report-nav-item a:hover,
#report-navbar .report-nav-item a:focus {
  color: #0056b3;
  transform: translateY(-3px);
}

#report-navbar .report-nav-item a:hover .report-nav-icon,
#report-navbar .report-nav-item a:focus .report-nav-icon {
  stroke: #0056b3;
  transform: scale(.9);
}
