/* Tailwind Tabs 플러그인 공통 스타일 */
.tw-tabs-root {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #222b3a;
}
.tw-tabs-panels {
  margin-top: 0.25rem;
}
.tw-tabs-btn {
  background: none;
  border: none;
  border-radius: 0;
  color: #94a3b8;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: color 0.2s;
  cursor: pointer;
  outline: none;
}
.tw-tabs-btn-active {
  color: #6366f1;
}
.tw-tabs-btn-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: #6366f1;
  border-radius: 2px 2px 0 0;
}
.tw-tabs-btn:not(.tw-tabs-btn-active):hover {
  color: #cbd5e1;
}
