/* QCode.cc Documentation Styles */
/* Primary color: rgb(217, 119, 87) */

/* Docs page - fixed navbar */
body.docs-page > nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

/* Hide global footer on docs pages - docs have their own footer in sidebar */
body.docs-page > footer {
    display: none;
}

/* Layout */
.docs-layout {
    display: flex;
    min-height: 100vh;
    background-color: #f9fafb;
    padding-top: 64px; /* Space for fixed navbar */
}

/* Sidebar */
.docs-sidebar {
    position: fixed;
    top: 64px; /* Start below navbar */
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    z-index: 40;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

@media (max-width: 1023px) {
    .docs-sidebar {
        top: 0; /* Full height on mobile for overlay */
        z-index: 50;
        transform: translateX(-100%);
    }
}

.docs-sidebar-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.docs-sidebar-footer {
    margin-top: auto;
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    background-color: #f9fafb;
}

.docs-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.docs-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.docs-sidebar-link:hover {
    color: rgb(217, 119, 87);
}

.docs-sidebar-link svg {
    flex-shrink: 0;
}

.docs-sidebar-copyright {
    font-size: 0.75rem;
    color: #9ca3af;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Navigation */
.docs-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.docs-nav-section {
    margin-bottom: 0.5rem;
}

.docs-nav-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-align: left;
    transition: color 0.2s;
}

.docs-nav-section-header:hover {
    color: rgb(217, 119, 87);
}

.docs-nav-section-header svg {
    color: #9ca3af;
}

.docs-nav-items {
    padding-left: 1rem;
}

.docs-nav-item {
    display: block;
    padding: 0.375rem 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.docs-nav-item:hover {
    color: rgb(217, 119, 87);
    background-color: #fef2ef;
}

.docs-nav-item.active {
    color: rgb(217, 119, 87);
    background-color: #fef2ef;
    border-left-color: rgb(217, 119, 87);
    font-weight: 500;
}

/* Main content */
.docs-main {
    flex: 1;
    margin-left: 0;
}

@media (min-width: 1024px) {
    .docs-main {
        margin-left: 280px;
    }
}

@media (min-width: 1280px) {
    .docs-main {
        margin-right: 240px;
    }
}

.docs-content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
    .docs-content-wrapper {
        padding: 2rem 2rem;
    }
}

/* Breadcrumbs */
.docs-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.docs-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.docs-breadcrumbs a:hover {
    color: rgb(217, 119, 87);
}

.docs-breadcrumbs a:last-child {
    color: #111827;
    font-weight: 500;
}

/* Article content */
.docs-article {
    color: #374151;
    line-height: 1.75;
}

.docs-article h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.docs-article h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.docs-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.docs-article h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.docs-article p {
    margin-bottom: 1rem;
}

.docs-article .lead {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.docs-article a {
    color: rgb(217, 119, 87);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.docs-article a:hover {
    border-bottom-color: rgb(217, 119, 87);
}

.docs-article ul,
.docs-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.docs-article li {
    margin-bottom: 0.5rem;
}

.docs-article ul li {
    list-style-type: disc;
}

.docs-article ol li {
    list-style-type: decimal;
}

.docs-article blockquote {
    border-left: 4px solid rgb(217, 119, 87);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
}

.docs-article code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: rgb(195, 100, 70);
}

.docs-article pre {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.docs-article pre code {
    background-color: transparent;
    padding: 0;
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.6;
}

.docs-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.docs-article th,
.docs-article td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.docs-article th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.docs-article img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

/* Anchor links */
.docs-article .anchor-link {
    margin-left: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.docs-article h2:hover .anchor-link,
.docs-article h3:hover .anchor-link,
.docs-article h4:hover .anchor-link {
    opacity: 1;
}

.docs-article .anchor-link:hover {
    color: rgb(217, 119, 87);
}

/* Prev/Next navigation */
.docs-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.docs-prev,
.docs-next {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-prev:hover,
.docs-next:hover {
    border-color: rgb(217, 119, 87);
    box-shadow: 0 2px 4px rgba(217, 119, 87, 0.1);
}

.docs-prev svg,
.docs-next svg {
    flex-shrink: 0;
    color: #9ca3af;
}

.docs-prev span,
.docs-next span {
    display: block;
    color: #374151;
}

.docs-next {
    justify-content: flex-end;
}

/* Table of Contents */
.docs-toc {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: 220px;
    background-color: white;
    border-left: 1px solid #e5e7eb;
    overflow-y: auto;
    z-index: 30;
}

/* Show TOC on xl screens (1280px+) */
@media (min-width: 1280px) {
    .docs-toc {
        display: block;
    }

    /* Adjust main content to not overlap with TOC */
    .docs-main {
        margin-right: 220px;
    }

    /* Hide mobile TOC elements on large screens */
    .mobile-toc-toggle,
    .mobile-toc-overlay,
    .mobile-toc-panel {
        display: none !important;
    }
}

.docs-toc-inner {
    padding: 1.5rem 1rem;
    position: sticky;
    top: 0;
}

.docs-toc-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 1rem;
}

.docs-toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-toc-nav li {
    margin-bottom: 0.25rem;
}

.docs-toc-nav a {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    text-decoration: none;
    padding: 0.375rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: all 0.2s;
    line-height: 1.4;
}

.docs-toc-nav a:hover {
    color: rgb(217, 119, 87);
    border-left-color: rgba(217, 119, 87, 0.3);
}

/* Active TOC link */
.docs-toc-nav a.active {
    color: rgb(217, 119, 87);
    border-left-color: rgb(217, 119, 87);
    font-weight: 500;
}

.docs-toc-nav ul ul {
    margin-left: 0.5rem;
}

.docs-toc-nav ul ul a {
    font-size: 0.75rem;
    padding: 0.25rem 0;
}

/* Welcome section (index page) */
.docs-welcome {
    text-align: center;
    padding: 2rem 0 3rem;
}

.docs-welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.docs-welcome-desc {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

/* Quick links */
.docs-quick-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .docs-quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.docs-quick-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-decoration: none;
    text-align: left;
    transition: all 0.2s;
}

.docs-quick-link:hover {
    border-color: rgb(217, 119, 87);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.docs-quick-link-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.docs-quick-link h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.docs-quick-link p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Sections grid */
.docs-sections {
    margin-top: 3rem;
}

.docs-sections-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.docs-sections-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .docs-sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .docs-sections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.docs-section-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-section-card:hover {
    border-color: rgb(217, 119, 87);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.docs-section-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.docs-section-card-header svg {
    color: rgb(217, 119, 87);
}

.docs-section-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.docs-section-card-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-section-card-items li {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0.25rem 0;
}

/* CTA section */
.docs-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef2ef 0%, #fff7ed 100%);
    border-radius: 1rem;
    text-align: center;
}

.docs-cta h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.docs-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.docs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.docs-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: rgb(217, 119, 87);
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.docs-cta-primary:hover {
    background-color: rgb(195, 100, 70);
}

.docs-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #374151;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-cta-secondary:hover {
    border-color: rgb(217, 119, 87);
    color: rgb(217, 119, 87);
}

/* Code highlighting overrides */
.highlight {
    background-color: #1f2937 !important;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

.highlight pre {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .docs-welcome-title {
        font-size: 1.875rem;
    }

    .docs-prev-next {
        grid-template-columns: 1fr;
    }

    .docs-prev,
    .docs-next {
        justify-content: flex-start;
    }
}

/* OS Selector */
.os-selector {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.os-selector.hidden {
    display: none;
}

.os-selector-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0369a1;
    margin-bottom: 0.75rem;
}

.os-selector-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.os-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.os-btn:hover {
    border-color: rgb(217, 119, 87);
    color: rgb(217, 119, 87);
}

.os-btn.active {
    border-color: rgb(217, 119, 87);
    background: rgb(217, 119, 87);
    color: white;
}

.os-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* OS-specific content visibility - only hide content blocks, not buttons */
.docs-article [data-os] {
    display: none;
}

.docs-article [data-os].os-visible {
    display: block;
}

/* OS section headers */
.os-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    color: #374151;
}

.os-section-header svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===========================================
   NEW DOCS HOMEPAGE STYLES
   =========================================== */

/* Hero Section */
.docs-hero {
    text-align: center;
    padding: 1.5rem 0 2rem;
}

.docs-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.docs-hero-desc {
    font-size: 1rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .docs-hero-title {
        font-size: 2.25rem;
    }
}

/* Getting Started Section */
.docs-getting-started {
    background: linear-gradient(135deg, #fef2ef 0%, #fff7ed 100%);
    border: 1px solid rgba(217, 119, 87, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.docs-getting-started-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.docs-getting-started-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
}

.docs-getting-started-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgb(217, 119, 87);
    background: rgba(217, 119, 87, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.docs-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .docs-steps {
        flex-direction: row;
    }
}

.docs-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-step:hover {
    border-color: rgb(217, 119, 87);
    box-shadow: 0 4px 6px -1px rgba(217, 119, 87, 0.1);
}

.docs-step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(217, 119, 87);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50%;
}

.docs-step-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.125rem 0;
}

.docs-step-content p {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

.docs-step-arrow {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    margin-left: auto;
}

/* Section Title */
.docs-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* Popular Docs */
.docs-popular {
    margin-bottom: 2.5rem;
}

.docs-popular-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .docs-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .docs-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.docs-popular-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-popular-card:hover {
    border-color: rgb(217, 119, 87);
    box-shadow: 0 2px 8px rgba(217, 119, 87, 0.1);
    transform: translateY(-1px);
}

.docs-popular-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.docs-popular-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.125rem 0;
}

.docs-popular-card p {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

/* All Categories */
.docs-categories {
    margin-bottom: 2.5rem;
}

.docs-categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .docs-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .docs-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.docs-category-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.docs-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.docs-category-icon {
    flex-shrink: 0;
    color: rgb(217, 119, 87);
}

.docs-category-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.docs-category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-category-items li {
    margin-bottom: 0.375rem;
}

.docs-category-items a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.docs-category-items a:hover {
    color: rgb(217, 119, 87);
}

.docs-category-items a svg {
    flex-shrink: 0;
}

/* Inline CTA */
.docs-cta-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .docs-cta-inline {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.docs-cta-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.docs-cta-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.docs-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: rgb(217, 119, 87);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.docs-cta-button:hover {
    background: rgb(195, 100, 70);
}

/* Print styles */
@media print {
    .docs-sidebar,
    .docs-toc,
    .docs-prev-next,
    .docs-cta,
    .docs-cta-inline,
    .os-selector {
        display: none !important;
    }

    .docs-main {
        margin: 0 !important;
    }

    .docs-content-wrapper {
        max-width: none;
        padding: 0;
    }

    .docs-article [data-os] {
        display: block !important;
    }
}
