/* Documentation specific styles */
.docs-main {
    display: flex;
    padding-top: 4rem;
    min-height: 100vh;
    background: var(--background);
  }
  
  .docs-sidebar {
    width: 280px;
    position: fixed;
    height: 100vh;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
  }
  
  .docs-nav {
    padding: 1rem;
  }
  
  .docs-nav-section {
    margin-bottom: 2rem;
  }
  
  .docs-nav-section h3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  
  .docs-nav-section a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .docs-nav-section a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .docs-nav-section a.active {
    background: var(--primary);
    color: white;
  }
  
  .docs-content {
    margin-left: 280px;
    padding: 2rem 3rem;
    max-width: 900px;
  }
  
  .docs-section {
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease backwards;
  }
  
  .docs-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .docs-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text);
  }
  
  .docs-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
  .info-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .info-card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
  }
  
  .info-card-content {
    padding: 1.5rem;
  }
  
  .info-card-content ul {
    list-style: none;
    padding: 0;
  }
  
  .info-card-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
  }
  
  .info-card-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
  }
  
  .permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .permission-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .permission-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  
  .permission-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  .commands-list {
    display: grid;
    gap: 1.5rem;
  }
  
  .command-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .command-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .command-header code {
    font-family: "Menlo", "Monaco", "Courier New", monospace;
    color: var(--primary);
    font-size: 1.1rem;
  }
  
  .command-badge {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .command-example {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .example-title {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .code-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }
  
  .code-block pre {
    margin: 0;
    font-family: "Menlo", "Monaco", "Courier New", monospace;
    font-size: 0.875rem;
    color: var(--text);
  }
  
  .customization-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  /* Footer Styles */
  footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    color: var(--text);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}
  
  @media (max-width: 768px) {
    .docs-sidebar {
      display: none;
    }
  
    .docs-content {
      margin-left: 0;
      padding: 1rem;
    }
  
    .permission-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Add smooth scrolling for anchor links */
  html {
    scroll-behavior: smooth;
  }
  
  /* Add hover effects for interactive elements */
  .command-card:hover,
  .permission-card:hover,
  .feature-card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
  }
  
  /* Add a subtle glow effect to primary colored elements */
  .command-badge,
  .permission-name,
  .feature-card h3 {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-links {
      flex-direction: column;
      gap: 2rem;
  }

  .footer-column {
      align-items: center;
  }