@font-face {
  font-family: "Inter";
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter@5.1.0/files/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

:root {
  --font-family: "Inter", sans-serif;
  --primary-color: #4f46e5;
}

.sc-tab-container {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.sc-tab-nav {
  display: flex;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 16px;
}

.sc-tab-link {
  font-family: var(--font-family);
  flex: 1;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  position: relative;
}

.sc-tab-link:hover {
  color: #374151;
}

.sc-tab-link:not(.sc-active):hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
}

.sc-tab-link.sc-active {
  color: var(--primary-color);
  font-weight: 500;
}

.sc-tab-link.sc-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}
