.mui-tabs-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.5rem;
  background-color: white;
  overflow-x: auto;
  max-width: 100%;
  justify-content: space-between;
}

.mui-tabs-container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  width: max-content;
  scrollbar-width: none;
}

.mui-tabs-container::-webkit-scrollbar {
  display: none;
}

.mui-tab {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  border-radius: 4px 4px 0 0;
}

.mui-tab:hover {
  color: #000;
}

.mui-tab.active {
  color: #1976d2;
  border-bottom: 3px solid #1976d2;
}

/* Scroll Buttons */
.scroll-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0 0.5rem;
  color: #888;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.scroll-btn:hover {
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .mui-tab {
    font-size: 14px;
    padding: 0.8rem 1rem;
  }
}

/* Responsive tweaks */
@media (max-width: 512px) {
  .mui-tab {
    font-size: 14px;
    padding: 0.8rem 0.4rem;
  }
}