/* Navigation styles for proper centering with many tabs */
.navbar .flex-wrap.justify-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.navbar .overflow-x-auto {
  max-width: 85%;
}

/* Ensure nav links have consistent size and spacing */
.navbar x-nav-link, 
.navbar a.nav-link {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 1023px) {
  .navbar .overflow-x-auto {
    max-width: 100%;
    overflow-y: auto;
    max-height: 80vh;
  }
}

/* Better scrollbar for nav overflow */
.navbar .overflow-x-auto::-webkit-scrollbar {
  height: 4px;
}
.navbar .overflow-x-auto::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
