/* Additional tab height fixes */
.sw-pages-menu {
  position: relative;
  height: 46px; /* Slightly larger than tabs to accommodate bottom border */
}

/* Ensure uniform height and vertical alignment */
.sw-pages-menu li {
  display: flex;
  align-items: center;
  height: 45px;
  margin-bottom: 0;
}

/* Fix text alignment in tabs */
.sw-pages-menu li a {
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Fix active tab indicator */
.sw-pages-menu li.acting-sw-link::after {
  bottom: -1px;
  height: 2px;
}

/* Fix tabs on wider screens */
@media (min-width: 768px) {
  .sw-pages-menu ul {
    align-items: stretch;
  }
  
  .sw-pages-menu li {
    margin-right: 2px;
    flex: none;
  }
}

/* Force consistent appearance */
.sw-pages-menu li,
.sw-pages-menu li a {
  box-sizing: border-box !important;
}