.content-divider {
  display: flex;
  position: relative;
  background: #000;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Desktop styles - ensure border is visible on larger screens */
@media (min-width: 769px) {
  .content-divider {
    border-bottom: 1px solid #3a3a3a;
  }
}

.tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: color 0.1s ease;
  flex: 1;
  height: 100%;
  margin: 0;
  color: #81858b;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
}

.tab-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.tab-item.active {
  color: #fff;
  font-weight: 600;
}

.tab-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}


.bottom-line-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #fff;
  transition: transform 0.2s cubic-bezier(0.65, 0, 0.35, 1);
  width: calc(100% / var(--tab-count, 2));
  transform-origin: left center;
}

.tab-icon {
  font-size: 24px;
  line-height: 1;
}

.tab-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Mobile styles */
@media (max-width: 768px) {
  .content-divider {
    height: 44px;
  }

  .tab-item {
    font-size: 14px;
  }

  .tab-item svg {
    width: 22px;
    height: 22px;
  }

  .tab-icon {
    font-size: 22px;
  }

  .tab-icon-img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .content-divider {
    height: 42px;
  }

  .tab-item {
    font-size: 13px;
  }

  .tab-item svg {
    width: 20px;
    height: 20px;
  }

  .tab-icon {
    font-size: 20px;
  }

  .tab-icon-img {
    width: 20px;
    height: 20px;
  }
}