/* Complete Parameter List table styles */
.complete-parameter-table { margin: 1rem 0 2rem 0; }
.table-responsive { width: 100%; overflow-x: auto; }
.param-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.95rem; }
.param-table thead th { position: sticky; top: 0; background: #f8f9fa; z-index: 1; text-align: left; padding: 0.75rem; border-bottom: 2px solid #e9ecef; }
.param-table tbody td { padding: 0.75rem; border-bottom: 1px solid #f1f3f5; vertical-align: top; }
.param-table tbody tr:hover { background: #fcfcfd; }
.param-table tbody tr { background: #fff; }
.param-table th:nth-child(1), .param-table td:nth-child(1) { width: 48px; text-align: right; color: #6c757d; }
.param-table th:nth-child(2) { min-width: 220px; }
.param-table th:nth-child(5) { min-width: 360px; }
/* GitHub-style Documentation CSS */
:root {
    --primary-color: #0969da;
    --primary-hover: #0860ca;
    --text-primary: #24292f;
    --text-secondary: #656d76;
    --text-muted: #8b949e;
    --border-color: #d1d9e0;
    --border-hover: #d1d9e0;
    --background-primary: #ffffff;
    --background-secondary: #f6f8fa;
    --background-tertiary: #f1f8ff;
    --sidebar-bg: #f6f8fa;
    --sidebar-border: #d1d9e0;
    --code-bg: #f6f8fa;
    --code-border: #d1d9e0;
    --alert-info-bg: #dbeafe;
    --alert-info-border: #3b82f6;
    --alert-warning-bg: #fef3c7;
    --alert-warning-border: #f59e0b;
    --alert-danger-bg: #fee2e2;
    --alert-danger-border: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #58a6ff;
        --primary-hover: #79c0ff;
        --text-primary: #f0f6fc;
        --text-secondary: #8b949e;
        --text-muted: #6e7681;
        --border-color: #30363d;
        --border-hover: #484f58;
        --background-primary: #0d1117;
        --background-secondary: #161b22;
        --background-tertiary: #21262d;
        --sidebar-bg: #161b22;
        --sidebar-border: #30363d;
        --code-bg: #161b22;
        --code-border: #30363d;
        --alert-info-bg: #1e3a8a;
        --alert-info-border: #3b82f6;
        --alert-warning-bg: #92400e;
        --alert-warning-border: #f59e0b;
        --alert-danger-bg: #991b1b;
        --alert-danger-border: #ef4444;
    }
}

/* Fix for anchor links with fixed header */
html {
    scroll-padding-top: 80px; /* Header height + some padding */
}

/* OS-specific content filtering */
.windows-only,
.linux-only,
.windows-specific,
.linux-specific,
.os-specific {
    transition: opacity 0.3s ease, display 0.3s ease;
}

/* Command examples styling */
.command-example {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    color: var(--text-primary);
    display: inline-block;
    margin: 4px 0;
}

/* Path examples styling */
.path-example {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 13px;
    color: var(--text-primary);
    display: inline-block;
    margin: 4px 0;
}

/* Parameters search UI */
.search-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.search-box input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 14px;
}

.search-clear {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.search-results {
    display: none; /* hidden by default to avoid empty box */
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    max-height: 340px;
    overflow: auto;
    padding: 8px;
}

.search-results.has-results {
    display: block;
}

.search-result-item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.search-result-item + .search-result-item {
    margin-top: 8px;
}

.search-result-item:hover {
    background: var(--background-secondary);
    border-color: var(--border-color);
}

.result-title {
    font-weight: 600;
    color: var(--text-primary);
}

.result-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

.result-badge {
    font-size: 12px;
    color: var(--primary-color);
    background: var(--background-tertiary);
    border: 1px solid var(--alert-info-border);
    border-radius: 999px;
    padding: 2px 8px;
    height: fit-content;
}

/* Parameter details popup */
.param-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Enhanced parameter list below search */
.parameter-category {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 16px 0;
}

.parameter-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.parameter-category h3 i {
    color: var(--primary-color);
}

.parameter-category h4 {
    font-size: 16px;
    margin: 14px 0 8px 0;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--border-color);
}

.parameter-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px 16px;
}

.parameter-list li {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.parameter-list li:hover {
    border-color: var(--primary-color);
}

/* Parameter cards (below search/manual sections) */
.parameter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.parameter-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.parameter-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.parameter-card .category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    background: var(--background-tertiary);
    border: 1px solid var(--alert-info-border);
    border-radius: 999px;
    padding: 2px 8px;
    margin-bottom: 8px;
}

.parameter-card h4 {
    font-size: 16px;
    margin: 6px 0 6px 0;
}

.parameter-card .description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.parameter-card .registry-path {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 8px 0;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    overflow-wrap: anywhere;
}

.parameter-card .registry-path::before {
    content: "\f07c  ";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--text-muted);
}

.parameter-card .manual-setup {
    background: var(--background-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 13px;
}

.parameter-card .manual-setup strong {
    color: var(--text-primary);
}

.param-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.param-modal {
    position: relative;
    width: min(900px, 92vw);
    max-height: 80vh;
    overflow: auto;
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.param-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.param-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.param-modal-meta {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 13px;
}

.param-modal-body {
    padding: 16px;
}

.param-modal-body .parameter-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
}

/* Step-wise manual setup in popup */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--background-secondary);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.step-content h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.param-modal-body .code-block {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.param-modal-body .code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-bottom: 1px solid var(--code-border);
    font-size: 12px;
}

.param-modal-body pre {
    margin: 0;
    padding: 10px 12px;
    overflow: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 13px;
}

/* OS instruction styling */
.os-instruction {
    background: var(--background-tertiary);
    border-left: 4px solid var(--primary-color);
    padding: 12px 16px;
    margin: 12px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-size: 16px;
}

/* Header Styles */
.docs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--background-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.vertical-separator {
    border-left: 1px solid #d0d7de; /* Adjust width, style, and color as needed */
    height: 30px; /* Set the desired height of the separator */
    margin: 0 20px;
    margin-top: 2px; /* Optional: Add spacing around the separator */
  }
  .vertical-separator-secondary {
    border-left: 2px solid var(--sidebar-border);
    height: 20px;
    margin-top: 2px;
    margin-left: 10px;
  }



.header-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.header-logo-icon {
    width: 40px;
    margin-right: 10px;
    padding-top: 2px;
    flex-shrink: 0;
    fill: var(--text-primary);
    transition: opacity 0.3s ease;
}

/* Ensure logo is visible during theme changes */
#docs-header-logo {
    opacity: 1;
}

/* Smooth transition for logo changes */
#docs-header-logo[src*="app_logo_white.png"],
#docs-header-logo[src*="app_logo_black.png"] {
    transition: all 0.3s ease;
}

/* CSS-based dark mode logo switching as fallback */
@media (prefers-color-scheme: dark) {
    #docs-header-logo {
        content: url('../Assets/Images/app_logo_white.png');
    }
}

@media (prefers-color-scheme: light) {
    #docs-header-logo {
        content: url('../Assets/Images/app_logo_black.png');
    }
}

.header-title {
    color: var(--text-primary);
}

.header-search {
    flex: 1;
    max-width: 800px;
    margin: 0 20px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-os-selector {
    display: flex;
    align-items: center;
}

.os-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.os-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.os-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.os-dropdown-toggle:hover {
    border-color: var(--border-hover);
    background-color: var(--background-secondary);
}

.os-current {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.os-current i {
    font-size: 16px;
}

.os-dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.os-dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
}

.os-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 4px;
}

.os-dropdown.open .os-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.os-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.2s ease;
}

.os-option:hover {
    background-color: var(--background-secondary);
    border-radius: var(--radius-sm);
}

.os-option.active {
    background-color: var(--background-tertiary);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
}

.os-option i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

/* Documentation Container */
.docs-container {
    display: flex;
    min-height: 100vh;
    margin-top: 60px;
}

/* Sidebar Navigation */
.docs-sidebar {
    width: 280px;
    border-right: 1px solid var(--sidebar-border);
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--sidebar-border);
    background-color: var(--background-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.logo i {
    margin-right: 8px;
    color: var(--primary-color);
}

.version {
    font-size: 12px;
    color: var(--text-muted);
    background-color: var(--background-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
}


/* Sidebar Home Button */
.sidebar-home {
    padding: 0 20px;
    margin-top: 8px;
}

.home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    box-shadow: none;
}

.home-link:hover {
    color: var(--primary-color);
}

.home-link:focus,
.home-link:active,
.home-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.home-link i {
    font-size: 12px;
}

.home-link:hover i {
    transform: translateX(-2px);
}
.docs-nav-link-about {
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-top: 2px;
    padding-left: 10px;
}
.docs-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-section {
    margin-bottom: 8px;
}

.nav-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
    margin: 0 8px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    box-shadow: none;
}

.nav-section-header:focus,
.nav-section-header:active,
.nav-section-header:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.nav-section-header:hover {
    background-color: var(--background-tertiary);
}

.nav-section-header:active {
    background-color: var(--background-secondary);
}

.nav-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.nav-toggle {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.nav-toggle:hover {
    color: var(--text-primary);
    background-color: var(--background-secondary);
}

.nav-section.collapsed .nav-toggle {
    transform: rotate(-90deg);
}

.nav-list {
    list-style: none;
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.nav-section.collapsed .nav-list {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-list li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 8px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    box-shadow: none;
}

.nav-link:focus,
.nav-link:active,
.nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--background-tertiary);
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-color);
    background-color: var(--background-tertiary);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Main Content */
.docs-main {
    flex: 1;
    margin-left: 280px;
    padding: 0;
}

.docs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* Sections */
.docs-section {
    margin-bottom: 48px;
}

.docs-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
    scroll-margin-top: 80px; /* Account for fixed header */
}

.docs-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
    line-height: 1.25;
    scroll-margin-top: 80px; /* Account for fixed header */
}

.docs-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
    line-height: 1.25;
    scroll-margin-top: 80px; /* Account for fixed header */
}

.docs-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 16px 0 8px;
    line-height: 1.25;
}

.docs-section p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.docs-section .lead {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.docs-section ul, .docs-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.docs-section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* Code Blocks */
.code-block {
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: var(--radius-md);
    margin: 16px 0;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--background-secondary);
    border-bottom: 1px solid var(--code-border);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: var(--background-tertiary);
    color: var(--text-primary);
}

.code-block pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-primary);
}

.code-block code {
    font-family: inherit;
    font-size: inherit;
}

/* Inline Code */
code:not(pre code) {
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    color: var(--text-primary);
}

/* Alerts */
.alert-info-text {
    margin-right: 5px;
}
.alert {
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
}

.alert i {
    margin-right: 8px;
    margin-top: 5.5px;
}

.alert-info {
    background-color: var(--alert-info-bg);
    border-left-color: var(--alert-info-border);
    color: var(--text-primary);
}

.alert-warning {
    background-color: var(--alert-warning-bg);
    border-left-color: var(--alert-warning-border);
    color: var(--text-primary);
}

.alert-danger {
    background-color: var(--alert-danger-bg);
    border-left-color: var(--alert-danger-border);
    color: var(--text-primary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.feature-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
    font-size: 20px;
}

.feature-card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.download-card {
    background: var(--background-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-card:hover {
    border-color: var(--primary-color);
}

.download-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-tertiary) 100%);
}

.download-card.featured::before {
    transform: scaleX(1);
}

.download-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(9, 105, 218, 0.3);
}

.download-card h4 {
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.download-card p {
    margin: 0 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.file-size, .file-format {
    background: var(--background-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.file-size {
    background: var(--background-tertiary);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.download-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.download-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border: none;
    color: white;
}

.download-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #5a67d8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(9, 105, 218, 0.4);
}

.download-card .btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.download-card .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--background-tertiary);
}

.download-features {
    margin: 1.5rem 0;
    text-align: left;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.download-features .feature-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 1rem;
    text-align: center;
}

.download-card .btn i {
    margin-right: 0.5rem;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.support-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.support-card h4 {
    margin: 0 0 0.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.support-card p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.support-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.support-links li {
    margin-bottom: 0.5rem;
}

.support-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.support-links a:hover {
    color: var(--primary-color);
}

/* Bug Report Steps */
.bug-report-steps {
    margin: 1rem 0;
}

.bug-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bug-number {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feature Request Info */
.feature-request-info {
    margin: 1rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 1rem;
    text-align: center;
}

/* Community Info */
.community-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.community-card {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.community-card h4 {
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.community-card h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.community-card p {
    margin: 0 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Version Info */
.version-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.version-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.version-card h4 {
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.version-number, .license-info, .maintainer-info {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.version-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* File Structure */
.file-structure {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.structure-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.structure-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.structure-content h4 {
    margin: 0 0 0.25rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.structure-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.structure-tree {
    margin-left: 1rem;
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
}

.tree-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.tree-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--background-tertiary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.tree-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.file-name {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.file-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Directory Structure */
.directory-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.dir-item {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.dir-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.dir-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.dir-content h4 {
    margin: 0 0 0.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.dir-content p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.sub-dirs {
    margin-left: 1rem;
}

.sub-dir {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.sub-dir i {
    color: var(--text-muted);
    font-size: 0.75rem;
    width: 1rem;
    text-align: center;
}

.sub-dir span:first-of-type {
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
    font-weight: 500;
    min-width: 120px;
}

.sub-desc {
    color: var(--text-secondary);
    font-style: italic;
}

/* File Explanations */
.file-explanations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.explanation-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.explanation-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.explanation-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.explanation-content h4 {
    margin: 0 0 0.75rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.explanation-content p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.file-usage {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-size: 0.8rem;
}

.file-usage strong {
    color: var(--text-primary);
}

.file-usage code {
    background: var(--code-bg);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

/* Generated Files */
.generated-files {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.generated-item {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.generated-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.generated-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.generated-content h4 {
    margin: 0 0 0.75rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.generated-content p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.file-pattern {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-size: 0.8rem;
}

.file-pattern strong {
    color: var(--text-primary);
}

.file-pattern code {
    background: var(--code-bg);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

/* Manual Installation Styles */
.installation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.install-option {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.install-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.install-option h5 {
    margin: 0 0 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.install-option h5 i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.install-option p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.file-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-links li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.file-links li:hover {
    border-color: var(--primary-color);
    background: var(--background-tertiary);
}

.file-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.file-links a:hover {
    color: var(--primary-color);
}

/* Setup Options */
.setup-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.setup-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.setup-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.setup-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.setup-content h4 {
    margin: 0 0 0.75rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.setup-content p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Steps */
.steps {
    margin: 24px 0;
}

.step {
    display: flex;
    margin-bottom: 24px;
    align-items: baseline;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 16px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.requirement-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.requirement-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 18px;
}

.requirement-card ul {
    margin: 0;
    padding-left: 20px;
}

.requirement-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--background-secondary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

td {
    color: var(--text-secondary);
    font-size: 14px;
}

tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-os-selector {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .header-logo {
        font-size: 18px;
    }
    
    .header-logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .docs-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        top: 60px;
    }
    
    .docs-sidebar.open {
        transform: translateX(0);
    }
    
    .docs-main {
        margin-left: 0;
    }
    
    .docs-content {
        padding: 20px;
    }
    
    .docs-section h1 {
        font-size: 28px;
    }
    
    .docs-section h2 {
        font-size: 22px;
    }
    
    .feature-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Scrollbar Styling */
.docs-sidebar::-webkit-scrollbar {
    width: 6px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: var(--background-secondary);
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
.copy-btn:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.category-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 20px;
}

.category-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 18px;
}

.category-card p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.category-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-details ul {
    margin: 0;
    padding-left: 16px;
}

.category-details li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* Header Search Styles */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
}

.search-box i {
    color: var(--text-muted);
    margin-right: 8px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    color: var(--text-primary);
    font-size: 14px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.search-clear:hover {
    color: var(--text-primary);
}

#header-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-height: 320px;
    overflow-y: auto;
    display: none;
}

.header-suggestion { padding: 8px 12px; cursor: pointer; border-top: 1px solid #f1f3f5; }
.header-suggestion:hover, .header-suggestion.focused { background: #f8f9fa; }
.header-suggestion div:first-child { font-weight: 600; }
.header-suggestion div:last-child { font-size: 12px; color: #6c757d; }

/* Search Examples */
.search-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.example-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.example-card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 16px;
}

.example-card p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Popular Parameters */
.popular-parameters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.parameter-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all 0.2s ease;
}

.parameter-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.parameter-card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.parameter-card p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

.parameter-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.parameter-meta span {
    background-color: var(--background-tertiary);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
}

/* Setup Methods */
.setup-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.method-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.method-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 20px;
}

.method-card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.method-card p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.method-steps ol {
    margin: 0;
    padding-left: 20px;
}

.method-steps li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Interface Components */
.interface-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.component-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.component-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.component-icon {
    width: 40px;
    height: 40px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-color);
    font-size: 18px;
}

.component-card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.component-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

/* Menu Structure */
.menu-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.menu-section {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.menu-section h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.menu-section ul {
    margin: 0;
    padding-left: 16px;
}

.menu-section li {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.menu-section li strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Check Types */
.check-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.check-type-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.check-type-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.check-type-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 20px;
}

.check-type-card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.check-type-card p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Report Formats */
.report-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.format-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.format-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.format-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 20px;
}

.format-card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.format-card p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.format-card ul {
    margin: 0;
    padding-left: 16px;
}

.format-card li {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Settings Sections */
.settings-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.settings-section {
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.settings-section h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.settings-section ul {
    margin: 0;
    padding-left: 16px;
}

.settings-section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.settings-section li strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 24px;
    padding: 20px;
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Changelog Entries */
.changelog-entry {
    margin-bottom: 24px;
    padding: 20px;
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.changelog-entry h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.changelog-entry ul {
    margin: 0;
    padding-left: 20px;
}

.changelog-entry li {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Print Styles */
@media print {
    .docs-sidebar {
        display: none;
    }
    
    .docs-main {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}
