/* Documentation specific styles */

/* Main layout */
.docs-page {
    background-color: #ffffff;
}

.docs-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Three-column layout for command reference */
.docs-container.three-column {
    max-width: 1800px;
}

/* Sidebar styles */
.docs-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 5.5rem;
    height: calc(100vh - 7rem);
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    border-right: 1px solid var(--border-color);
}

.docs-sidebar::-webkit-scrollbar {
    width: 4px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: #6b7280;
    font-weight: 600;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.75rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.sidebar-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.05);
}

.sidebar-nav a.active {
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.1);
    font-weight: 500;
}

.sidebar-nav a i {
    color: #6b7280;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.sidebar-nav a:hover i,
.sidebar-nav a.active i {
    color: var(--primary-color);
}

/* Search input */
.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
    background-color: white;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.9rem;
}

/* Main content styles */
.docs-content {
    flex: 1;
    max-width: 900px;
}

.docs-title {
    font-size: 2.75rem;
    color: var(--heading-color);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.docs-intro {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Right sidebar for command list */
.commands-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 5.5rem;
    height: calc(100vh - 7rem);
    overflow-y: auto;
    padding-left: 1rem;
    scrollbar-width: thin;
    border-left: 1px solid var(--border-color);
    display: none; /* Hidden by default, shown only on command reference pages */
}

.commands-sidebar::-webkit-scrollbar {
    width: 4px;
}

.commands-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.commands-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

.commands-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.commands-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.commands-search {
    position: relative;
    margin-bottom: 1.5rem;
}

.commands-search input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.commands-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
    background-color: white;
}

.commands-search i {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.875rem;
}

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

.command-link {
    display: block;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1.3;
    position: relative;
}

.command-link:hover {
    background-color: rgba(79, 70, 229, 0.05);
    color: var(--primary-color);
    transform: translateX(2px);
}

.command-link.active {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.command-name {
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 500;
}

.command-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.125rem;
    line-height: 1.2;
}

.command-badge-mini {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    font-size: 0;
}

.command-badge-mini.basic {
    background: #10b981;
}

.command-badge-mini.advanced {
    background: #f59e0b;
}

.command-badge-mini.ai-powered {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: pulse 2s ease-in-out infinite;
}

.command-badge-mini.configuration {
    background: #06b6d4;
}

.command-badge-mini.system {
    background: #8b5cf6;
}

.command-badge-mini.development {
    background: #ef4444;
}

.command-badge-mini.utility {
    background: #6b7280;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.commands-count {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: auto;
    background: rgba(107, 114, 128, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 0.75rem;
    font-weight: 500;
}

.command-category-divider {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.no-commands-found {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 2rem 1rem;
    font-size: 0.875rem;
}

.docs-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.docs-section:last-child {
    border-bottom: none;
}

.docs-section h2 {
    font-size: 1.75rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.docs-section h2 i {
    color: var(--primary-color);
}

.docs-section h3 {
    font-size: 1.35rem;
    color: var(--heading-color);
    margin: 2rem 0 1rem;
}

.docs-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Alert boxes */
.alert {
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.alert-info {
    background-color: rgba(79, 70, 229, 0.1);
    border-left: 4px solid var(--primary-color);
}

.alert-info i {
    color: var(--primary-color);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
}

.alert-warning i {
    color: #f59e0b;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.alert-success i {
    color: #10b981;
}

/* Images */
.image-container {
    margin: 2rem 0;
    text-align: center;
}

.docs-image {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Lists */
.docs-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.docs-list li {
    margin-bottom: 0.75rem;
}

/* Document organization */
.doc-organization {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.organization-item {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.organization-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.organization-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.organization-item h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.organization-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.organization-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.organization-item a:hover {
    text-decoration: underline;
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-card-icon {
    color: white;
    background: var(--primary-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

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

/* Help section */
.help-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.help-links {
    list-style: none;
    margin-top: 1.25rem;
}

.help-links li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.help-links i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.help-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-links a:hover {
    text-decoration: underline;
}

/* Code highlighting */
pre {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow-x: auto;
}

code {
    font-family: 'Fira Code', Menlo, Monaco, Consolas, 'Courier New', monospace;
    font-size: 0.9rem;
    /* color: #24292e; */
}

.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

th {
    background-color: var(--light-bg);
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border-color);
}

td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* Heading anchors */
.heading-anchor {
    opacity: 0;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--border-color);
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

h2:hover .heading-anchor,
h3:hover .heading-anchor {
    opacity: 1;
    color: var(--primary-color);
}

/* Highlight text */
.highlight {
    background: linear-gradient(transparent 70%, rgba(79, 70, 229, 0.2) 0);
    padding: 0 0.25rem;
}

/* Command content container styles */
.command-content-container {
    margin-top: 2rem;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-categories {
    margin-bottom: 2rem;
}

.back-btn {
    padding: 0.75rem 1.5rem;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
}

.back-btn:hover {
    background: #3730a3;
}

.error-message {
    text-align: center;
    padding: 3rem;
    background: #fee2e2;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin: 2rem 0;
}

.error-message h1 {
    color: #b91c1c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-message p {
    color: #7f1d1d;
    margin-bottom: 1.5rem;
}

.search-results-header {
    margin-bottom: 2rem;
}

.search-results-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.search-results-header p {
    color: #6b7280;
}

.search-results-category {
    margin-bottom: 3rem;
}

.search-results-category h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.search-results-empty {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.search-results-empty h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Command documentation styles */
.command-list {
    margin: 2rem 0;
}

.command-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.command-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.command-header h3 {
    margin: 0;
    font-family: 'Monaco', 'Menlo', monospace;
    color: #4f46e5;
    font-size: 1.5rem;
}

.command-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.command-item:has(.command-badge:contains("Basic")) .command-badge {
    background: #10b981;
}

.command-item:has(.command-badge:contains("Advanced")) .command-badge {
    background: #f59e0b;
}

.command-item:has(.command-badge:contains("Configuration")) .command-badge {
    background: #06b6d4;
}

.command-item:has(.command-badge:contains("System")) .command-badge {
    background: #8b5cf6;
}

.command-item:has(.command-badge:contains("Development")) .command-badge {
    background: #ef4444;
}

.command-item:has(.command-badge:contains("Utility")) .command-badge {
    background: #6b7280;
}

.command-item:has(.command-badge:contains("AI-Powered")) .command-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    }
}

.command-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.command-syntax h4,
.command-params h4,
.command-examples h4,
.command-notes h4 {
    margin: 1.5rem 0 0.75rem 0;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.command-syntax h4:before {
    content: "⌨️";
}

.command-params h4:before {
    content: "⚙️";
}

.command-examples h4:before {
    content: "💡";
}

.command-notes h4:before {
    content: "📝";
}

.command-syntax code {
    background: #2d3748;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    display: block;
    margin: 0.5rem 0;
}

.param {
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #4f46e5;
}

.param strong {
    color: #4f46e5;
}

.example {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.example-code {
    margin-bottom: 0.5rem;
}

.example-code code {
    background: #2d3748;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    display: block;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.example-desc {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.command-notes ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.command-notes li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.4;
}

.command-notes li code {
    background: #e2e8f0;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

/* Responsive design for docs page */
@media (max-width: 1400px) {
    .docs-container.three-column {
        max-width: 1200px;
    }
    
    .commands-sidebar {
        width: 280px;
    }
}

@media (max-width: 1200px) {
    .docs-container.three-column {
        flex-direction: column;
    }
    
    .commands-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        max-height: 300px;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 2rem;
        order: 3;
    }
}

@media (max-width: 1024px) {
    .docs-container {
        margin: 1.5rem auto;
        padding: 0 1.5rem;
    }
    
    .docs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        max-height: 400px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .docs-content {
        order: 2;
    }
    
    .doc-organization,
    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .docs-container {
        flex-direction: column;
        margin: 1rem auto;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .docs-sidebar {
        max-height: 300px;
        margin-bottom: 1.5rem;
        padding-right: 0;
    }
    
    .search-input {
        font-size: 1rem;
    }
    
    .sidebar-nav a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .docs-title {
        font-size: 2.25rem;
        text-align: center;
    }
    
    .docs-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .docs-section {
        margin-bottom: 3rem;
    }
    
    .docs-section h2 {
        font-size: 1.5rem;
    }
    
    .docs-section h3 {
        font-size: 1.2rem;
    }
    
    .alert {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .alert i {
        margin-bottom: 0.5rem;
    }
    
    .organization-item,
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .doc-organization,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .help-section {
        padding: 1.5rem;
    }
    
    pre {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .docs-container {
        padding: 0 0.75rem;
        margin: 0.75rem auto;
    }
    
    .docs-sidebar {
        max-height: 250px;
        margin-bottom: 1rem;
    }
    
    .search-input {
        padding: 0.6rem 1rem 0.6rem 2.25rem;
        font-size: 0.95rem;
    }
    
    .sidebar-nav a {
        padding: 0.6rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .docs-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .docs-intro {
        font-size: 1rem;
    }
    
    .docs-section {
        margin-bottom: 2.5rem;
    }
    
    .docs-section h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .docs-section h3 {
        font-size: 1.2rem;
    }
    
    .organization-item,
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .help-section {
        padding: 1.25rem;
    }
    
    .alert {
        padding: 0.875rem;
    }
    
    pre {
        padding: 0.875rem;
        font-size: 0.8rem;
    }
    
    code {
        font-size: 0.85rem;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.4rem 0.6rem;
    }
}
