/* Common Navigation Styles */

/* Override gallery navigation to use consistent height */
nav {
  background-color: #0d1117 !important;
  border-bottom: 1px solid #21262d !important;
  height: 40px !important; /* h-10 in Tailwind */
}

/* Navigation button styles */
.nav-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #7d8590;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-btn:hover {
  background: #161b22;
  border-color: #30363d;
  color: #c9d1d9;
}

.nav-btn.active {
  background: #1f6feb !important;
  color: white !important;
}

/* Ensure SVG icons inherit color properly */
.nav-btn svg {
  fill: currentColor;
}

/* Select dropdown styles */
nav select {
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
  font-size: 12px;
  border-radius: 4px;
  padding: 4px 8px;
  height: 28px;
}

nav select:focus {
  outline: none;
  border-color: #1f6feb;
}