.tabs___wWCUn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tabList___EKZKQ {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(18, 18, 26, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}
tab {
  position: relative;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
tab:hover {
  color: #94a3b8;
  background: rgba(0, 255, 255, 0.05);
}
tab.active___NM31p {
  color: #e2e8f0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.1));
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
tab.active___NM31p::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
tab:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.tabPanel___dQ4mY {
  animation: fadeIn___fi4bc 0.3s ease-out;
}
.card___CbTWT .tabList___EKZKQ {
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.15);
}
.card___CbTWT tab.active___NM31p {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.15));
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
.underline___Gjear .tabList___EKZKQ {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 0;
  padding: 0;
  gap: 24px;
}
.underline___Gjear tab {
  padding: 16px 0;
  border-radius: 0;
}
.underline___Gjear tab:hover {
  background: transparent;
  color: #94a3b8;
}
.underline___Gjear tab.active___NM31p {
  background: transparent;
  box-shadow: none;
}
.underline___Gjear tab.active___NM31p::after {
  bottom: 0;
  width: 100%;
  height: 2px;
}
.pills___CVv2x .tabList___EKZKQ {
  background: transparent;
  border: none;
  padding: 0;
}
.pills___CVv2x tab {
  border: 1px solid rgba(0, 255, 255, 0.2);
}
.pills___CVv2x tab:hover {
  border-color: rgba(0, 255, 255, 0.4);
}
.pills___CVv2x tab.active___NM31p {
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.pills___CVv2x tab.active___NM31p::after {
  display: none;
}
.vertical___EMeN2 {
  flex-direction: row;
  gap: 32px;
}
.vertical___EMeN2 .tabList___EKZKQ {
  flex-direction: column;
  width: 200px;
  height: fit-content;
}
.vertical___EMeN2 tab {
  text-align: left;
}
.vertical___EMeN2 tab.active___NM31p::after {
  bottom: auto;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
}
.vertical___EMeN2 .tabPanel___dQ4mY {
  flex: 1;
}
@keyframes fadeIn___fi4bc {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

