/* Basic styles to ensure x-nav-link components display properly */
x-nav-link,
.x-nav-link,
a[href].x-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

x-nav-link:hover,
.x-nav-link:hover,
a[href].x-nav-link:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

x-nav-link.active,
.x-nav-link.active,
a[href].x-nav-link.active {
  color: #4f46e5;
  font-weight: 500;
  border-bottom: 2px solid #4f46e5;
}

/* Fix for flexbox layout */
.navbar .flex-wrap.justify-center {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}

/* Make sure nav-links have appropriate display */
.navbar .flex-wrap.justify-center x-nav-link {
  display: inline-flex;
}
