.nav-tabs {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  padding: 0 24px;
  border-bottom: 2px solid var(--border-color);
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--bg-secondary);
}

.tab-button {
  padding: 12px 28px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #4b6bfb;
}

.tab-button.active {
  color: #4b6bfb;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4b6bfb;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-content.card {
  box-shadow: none;
  border: none;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
