/* Combined Menu Component Styles */
.combined-menu {
  display: flex;
  flex-direction: column;
  position: relative;
  user-select: none;
}

.combined-menu a {
  color: var(--white-40);
  text-decoration: none;
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.2s ease, background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  border-radius: 2px;
  padding-right: 17.3px;
}

.combined-menu a.active {
  color: var(--white-90);
  text-transform: lowercase;
  background-color: rgba(255, 255, 255, 0.06);
}

.combined-menu a:hover {
  color: var(--white-90);
  background-color: rgba(255, 255, 255, 0.09);
}

.combined-menu a.active:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.combined-menu a.indented {
  padding-left: 17.3px;
}

.combined-menu span.disabled {
  color: rgba(255, 255, 255, 1);
  opacity: 0.2;
  display: flex;
  justify-content: space-between;
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  font-weight: 200;
  line-height: 24px;
  padding-right: 17.3px;
}

.combined-menu span.disabled.indented {
  padding-left: 17.3px;
}

.combined-menu .year {
  color: var(--white-40);
  transition: color 0.4s ease;
  flex-shrink: 0;
}

.combined-menu a:hover .year {
  color: var(--white-90);
}
.combined-menu a.active .year {
  color: var(--white-90);
}

.combined-menu span.disabled .year {
  color: rgba(255, 255, 255, 1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .combined-menu {
    padding: 0 5vw;
  }

  .combined-menu a,
  .combined-menu span.disabled {
    font-size: 14px;
    line-height: 28px;
  }
}
