* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #fafafa;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navigation {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
}
.navigation .nav-brand h2 {
  margin: 0;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
.navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
.navigation .nav-menu .nav-link {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}
.navigation .nav-menu .nav-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}
.navigation .nav-menu .nav-link.active {
  background: #2563eb;
  color: white;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}

.main-content {
  max-width: 1610px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.component-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.component-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.01) 0%, rgba(37, 99, 235, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.component-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(37, 99, 235, 0.2);
  text-decoration: none;
  color: inherit;
}
.component-card:hover::before {
  opacity: 1;
}
.component-card .component-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}
.component-card h3 {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: -0.025em;
}
.component-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.component-status {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: auto;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.component-status.status-ready {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.component-status.status-coming {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.usage-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3498db;
}
.usage-info h2 {
  margin: 0 0 1rem 0;
  color: #2c3e50;
}
.usage-info ol {
  margin: 0;
  padding-left: 1.5rem;
}
.usage-info ol li {
  margin-bottom: 0.5rem;
  color: #666;
}
.usage-info code {
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #e74c3c;
}

.button-code {
  background: #2c3e50;
  color: white;
  padding: 0.75rem;
  text-align: center;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.button-code::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff'%3E%3Cpath d='M16 1H4a2 2 0 0 0-2 2v14h2V3h12V1z'/%3E%3Cpath d='M20 5H8a2 2 0 0 0-2 2v16h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 16H8V7h12v14z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.button-code:hover {
  background: #34495e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}
.button-code:hover::after {
  opacity: 1;
}
.button-code:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.3);
}
.button-code.copied {
  background: #27ae60;
}
.button-code.copied::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  animation: copied-bounce 0.5s ease;
}
@charset "UTF-8";
.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn--extra-large {
  padding: 20px 40px;
  font-size: 20px;
}

.btn-hover-scale:hover {
  transform: scale(1.1);
}

.btn-hover-rotate:hover {
  transform: rotate(5deg);
}

.btn-hover-skew:hover {
  transform: skewX(-10deg);
}

.btn-hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.btn-hover-pulse:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.btn-hover-bounce:hover {
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.btn-hover-shadow-shift:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transform: translate(-2px, -2px);
}

.btn-hover-flip:hover {
  transform: rotateY(180deg);
}

.btn-hover-flip-x:hover {
  transform: rotateX(180deg);
}

.btn-hover-swing:hover {
  animation: swing 0.6s ease-in-out;
}

@keyframes swing {
  15% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(6deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  90% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn-hover-wobble:hover {
  animation: wobble 0.8s ease-in-out;
}

@keyframes wobble {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(4deg);
  }
  45% {
    transform: rotate(-3deg);
  }
  60% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn-hover-squeeze:hover {
  transform: scaleX(0.8) scaleY(1.2);
}

.btn-hover-stretch:hover {
  transform: scaleX(1.2) scaleY(0.8);
}

.btn-hover-jello:hover {
  animation: jello 0.8s ease-in-out;
}

@keyframes jello {
  11.1% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  22.2% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  33.3% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  44.4% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  55.5% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  66.6% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  77.7% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  88.8% {
    transform: skewX(0.09765625deg) skewY(0.09765625deg);
  }
  100% {
    transform: skewX(0deg) skewY(0deg);
  }
}
.btn-hover-buzz:hover {
  animation: buzz 0.15s linear infinite;
}

@keyframes buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.btn-click-ripple {
  position: relative;
  overflow: hidden;
}

.btn-click-ripple:active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}
.btn-hover-bob:hover {
  animation: bob 1s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.btn-hover-shadow-expand:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.btn-hover-blur-focus:hover {
  filter: blur(1px);
  transition: filter 0.3s ease;
}

.btn-hover-blur-focus:hover:focus {
  filter: blur(0);
}

.ready-buttons-section {
  margin: 0 0 2rem 0;
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.button-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.button-card h3 {
  margin: 0 0 1rem 0;
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
}
.button-card .button-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  padding: 2rem;
}
.button-card .button-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.button-card .button-icon-code {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.button-card .button-icon-code:hover {
  background: #e5e7eb;
  color: #374151;
}
.button-card .button-icon-code.copied {
  background: #d1fae5;
  border-color: #10b981;
  color: #047857;
}

.btn-icon-right svg,
.btn-icon-right i {
  order: 2;
}

.btn-icon-down {
  display: flex;
  flex-direction: column;
}
.btn-icon-down svg,
.btn-icon-down i {
  order: 2;
}

.btn-icon-up {
  display: flex;
  flex-direction: column;
}

.btn-neon-gradient {
  background: linear-gradient(45deg, #00d4ff, #5b86e5, #36d1dc, #5b86e5);
  background-size: 400% 400%;
  color: white;
  border: none;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: neonGradientShift 3s ease-in-out infinite;
}
.btn-neon-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}
.btn-neon-gradient:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.3), 0 10px 25px rgba(0, 0, 0, 0.2);
  animation-duration: 1.5s;
}
.btn-neon-gradient:hover::before {
  left: 100%;
}
.btn-neon-gradient svg {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes neonGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.btn-holographic {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 300%;
  color: white;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  animation: holographicShimmer 4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-holographic::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: holographicRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  pointer-events: none;
}
.btn-holographic::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.btn-holographic:hover {
  transform: translateY(-3px) rotateX(10deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.2);
}
.btn-holographic:hover::before {
  opacity: 1;
}
.btn-holographic svg {
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
.btn-holographic span {
  z-index: 2;
  position: relative;
}

@keyframes holographicShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes holographicRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-plasma {
  background: radial-gradient(circle at 20% 50%, #ff0080, #ff8c00, #00ff80, #0080ff, #8000ff);
  background-size: 200% 200%;
  color: white;
  font-weight: 600;
  position: relative;
  animation: plasmaFlow 3s ease-in-out infinite;
}
.btn-plasma:hover {
  transform: scale(1.05) rotate(1deg);
  animation-duration: 1s;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.4), 0 0 50px rgba(255, 140, 0, 0.3), 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: plasmaFlow 2s ease-in-out infinite;
}
.btn-plasma:active {
  transform: scale(0.98);
}
.btn-plasma svg {
  animation: plasmaIcon 2s ease-in-out infinite;
}

@keyframes plasmaFlow {
  0%, 100% {
    background-position: 1% 50%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 99% 50%;
    filter: hue-rotate(90deg);
  }
}
@keyframes plasmaIcon {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
  }
}
.btn-cosmic-wave {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.btn-cosmic-wave::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.btn-cosmic-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.btn-cosmic-wave:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-cosmic-wave:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}
.btn-cosmic-wave:hover::after {
  transform: translateX(100%);
}
.btn-cosmic-wave svg {
  animation: cosmicFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}
.btn-cosmic-wave span {
  position: relative;
  z-index: 2;
}

@keyframes cosmicFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-2px) rotate(1deg);
  }
  66% {
    transform: translateY(1px) rotate(-1deg);
  }
}
.premium-buttons-section {
  margin: 0 0 3rem 0;
}
.premium-buttons-section .section-header {
  position: relative;
}
.premium-buttons-section .section-header h2 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.premium-buttons-section .section-header h2::after {
  content: "✨";
  position: absolute;
  right: -30px;
  top: 0;
  font-size: 20px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
}
.btn--outline {
  background-color: transparent;
  border-color: var(--accent-color, #0b4f6c);
  color: var(--accent-color, #0b4f6c);
}
.btn--outline:hover {
  background-color: var(--accent-color, #0b4f6c);
  color: white;
}

/* .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    position: relative;
    overflow: hidden;
    user-select: none;
    background-color: #0b4f6c;
    color: white;
    width: fit-content;

    &.btn--center {
        margin-top: 20px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    &:hover {
        background: darken($primary-color, 10%);
        border-color: darken($primary-color, 10%);
    }
} */
.page-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.sidebar-nav {
  width: 220px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 24px 0;
  position: sticky;
  top: 65px;
  height: 100vh;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}
.sidebar-nav .sidebar-header {
  padding: 0 24px 16px;
}
.sidebar-nav .sidebar-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}
.sidebar-nav .category-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.sidebar-nav .category-item {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.sidebar-nav .category-item:hover {
  background: #f8fafc;
}
.sidebar-nav .category-item.active {
  background: #eff6ff;
  border-left-color: #3498db;
}
.sidebar-nav .category-item.active .category-name {
  color: #3498db;
  font-weight: 600;
}
.sidebar-nav .category-item .category-icon {
  font-size: 16px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}
.sidebar-nav .category-item .category-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.sidebar-nav .sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}
.sidebar-nav .sidebar-section {
  padding: 0 24px;
  margin-bottom: 16px;
}
.sidebar-nav .sidebar-section h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-nav .filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-nav .filter-item {
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sidebar-nav .filter-item:hover .filter-name {
  color: #3498db;
}
.sidebar-nav .filter-item.active .filter-name {
  color: #3498db;
  font-weight: 600;
}
.sidebar-nav .filter-item .filter-name {
  font-size: 13px;
  color: #6b7280;
  transition: all 0.2s ease;
}

.main-content {
  flex: 1;
  padding: 24px;
  overflow-x: hidden;
}

.section-header {
  margin-bottom: 24px;
}
.section-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
}

.premium-buttons-section,
.ready-buttons-section,
.effects-section {
  display: block;
}
.premium-buttons-section.hidden,
.ready-buttons-section.hidden,
.effects-section.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .page-container {
    flex-direction: column;
  }
  .sidebar-nav {
    width: 100%;
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
  }
  .sidebar-nav .category-list {
    display: flex;
    overflow-x: auto;
    padding: 0 16px;
    gap: 8px;
  }
  .sidebar-nav .category-item {
    white-space: nowrap;
    min-width: auto;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .sidebar-nav .category-item.active {
    border-left: none;
    border-bottom-color: #3498db;
  }
  .sidebar-nav .sidebar-section {
    display: none;
  }
  .sidebar-nav .sidebar-divider {
    display: none;
  }
  .main-content {
    padding: 16px;
  }
}
.page-container {
  display: flex;
  min-height: calc(100vh - 65px);
}

.sidebar-controls {
  width: 460px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 24px;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
}
.sidebar-controls .sidebar-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.sidebar-controls .controls-section {
  margin-bottom: 20px;
}
.sidebar-controls .controls-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-controls .controls-section.two-columns .controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sidebar-controls .control-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.sidebar-controls .control-group label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 500;
}
.sidebar-controls .control-group input[type=number],
.sidebar-controls .control-group input[type=color],
.sidebar-controls .control-group select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.875rem;
  width: 100%;
  transition: all 0.2s ease;
  background: #fff;
}
.sidebar-controls .control-group input[type=number]:focus,
.sidebar-controls .control-group input[type=color]:focus,
.sidebar-controls .control-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}
.sidebar-controls .control-group input[type=number]:hover,
.sidebar-controls .control-group input[type=color]:hover,
.sidebar-controls .control-group select:hover {
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.sidebar-controls .control-group input[type=color] {
  padding: 4px;
  height: 40px;
  cursor: pointer;
  border-radius: 8px;
}
.sidebar-controls .control-group input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.sidebar-controls .control-group input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}
.sidebar-controls .control-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.sidebar-controls .control-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
.sidebar-controls .control-group.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sidebar-controls .control-group.checkbox-group label {
  margin-bottom: 0;
  order: 2;
}
.sidebar-controls .control-group.checkbox-group input[type=checkbox] {
  order: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2563eb;
}
.sidebar-controls .sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0;
}
.sidebar-controls .column-control-group {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.sidebar-controls .column-control-group .column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sidebar-controls .column-control-group .column-header h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.sidebar-controls .column-control-group .column-header .toggle-btn {
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sidebar-controls .column-control-group .column-header .toggle-btn:hover {
  background: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.sidebar-controls .column-control-group .column-header .toggle-btn.collapsed {
  background: #6b7280;
}
.sidebar-controls .column-control-group .column-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sidebar-controls .column-control-group .column-controls.collapsed {
  display: none;
}
.sidebar-controls .control-group.checkbox-group {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.sidebar-controls .control-group.checkbox-group:hover {
  background: #f3f4f6;
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.sidebar-controls .control-group.checkbox-group input[type=checkbox]:checked + label,
.sidebar-controls .control-group.checkbox-group input[type=radio]:checked + label {
  color: #2563eb;
  font-weight: 500;
}

.main-content {
  flex: 1;
  padding: 32px;
  background: #f9fafb;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.preview-section {
  margin-bottom: 32px;
}

.table-preview-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  min-height: 200px;
  overflow-x: auto;
}

.code-output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.code-box {
  background: #1e293b;
  border-radius: 8px;
  overflow: hidden;
}
.code-box .code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #334155;
  padding: 8px 16px;
}
.code-box .code-header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
}
.code-box .code-header .copy-btn {
  background: #475569;
  color: #f1f5f9;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.code-box .code-header .copy-btn:hover {
  background: #64748b;
}
.code-box pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
}
.code-box code {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  color: #e2e8f0;
  white-space: pre-wrap;
}

@media (max-width: 1200px) {
  .code-output {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .page-container {
    flex-direction: column;
  }
  .sidebar-controls {
    width: 100%;
    position: static;
    height: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .main-content {
    padding: 24px;
  }
}
/*# sourceMappingURL=builder-style.css.map */
