.tab-container {
  max-width: 440px;
  width: 100%;
  overflow: hidden;
}

.tab-wrapper {
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  overflow-x: auto;
  width:100%;
}

#top-tab {
  border-bottom: 1px solid #ddd;
  max-width: 440px;
  overflow-x: scroll;
  padding-left: 2rem;
  padding-right: 2rem;
}

#bottom-tab {
  border-bottom: none;
  max-width: 100%;
  overflow-x: scroll;
  display: flex;
  padding-left: 2rem;
}

.tab-container::-webkit-scrollbar {
  display: none;
}
.tab-wrapper::-webkit-scrollbar {
  display: none;
}
#top-tab::-webkit-scrollbar {
  display: none;
}
#bottom-tab::-webkit-scrollbar {
  display: none;
}

/* 탭 리스트 초기화 */
.tab-list {
  display: inline-flex;
  padding: 0;
  list-style: none;
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}

#bottom-tab.tab-list {
  gap: 10px;
}

/* 개별 탭 */
.tab {
  flex: 0 0 auto;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  color: var(--gray);
}

#top-tab .active {
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-weight: bold;
}

#bottom-tab .active {
  color: var(--black);
  font-weight: 700;
} 

#top-tab .tab {
  padding: 10px;
}

#bottom-tab .tab {
  padding: 10px;
}
