:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1d4ed8;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --border-color: #e2e8f0;
    --success-green: #059669;
    --warning-orange: #d97706;
    --danger-red: #dc2626;
    --sidebar-bg: #ffffff;
    --sidebar-border: #e2e8f0;
    --content-bg: #f8fafc;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-speed: 0.3s;
}

/* Dark mode variables - Deep black theme with light cards and correct blue accents */
[data-bs-theme="dark"] {
    --primary-blue: #2563eb;        /* Correct blue from albright.link */
    --secondary-blue: #1d4ed8;      /* Matching secondary blue */
    --light-gray: #1e1e1e;          /* Much lighter gray for cards - similar to albright.link */
    --medium-gray: #8b8b8b;         /* Medium gray for text */
    --dark-gray: #ffffff;           /* Pure white for primary text */
    --border-color: #555555;        /* Much lighter borders for better visibility */
    --sidebar-bg: #1e1e1e;          /* Same as cards for consistency */
    --sidebar-border: #555555;      /* Much lighter sidebar border */
    --content-bg: #000000;          /* Pure black background */
    --text-primary: #ffffff;        /* Pure white text */
    --text-secondary: #b3b3b3;      /* Light gray secondary text */
    --text-muted: #666666;          /* Muted gray text */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
}

/* Override Bootstrap dark theme variables to use deep black with light cards */
[data-bs-theme="dark"] {
    --bs-body-bg: #000000;
    --bs-body-color: #ffffff;
    --bs-secondary-bg: #1e1e1e;     /* Much lighter for cards */
    --bs-tertiary-bg: #1e1e1e;      /* Same as cards */
    --bs-border-color: #555555;     /* Much lighter borders */
    --bs-secondary-color: #b3b3b3;
    --bs-primary: #2563eb;          /* Correct blue from albright.link */
    --bs-primary-rgb: 37, 99, 235;  /* Correct blue RGB */
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--content-bg);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.sidebar {
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    width: 320px;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
}

.main-content {
    margin-left: 320px;
    min-height: 100vh;
    background-color: var(--content-bg);
    transition: all var(--transition-speed) ease;
    flex: 1;
}

.company-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--sidebar-border);
    background: var(--sidebar-bg);
    transition: all var(--transition-speed) ease;
}

.company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.company-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    color: var(--primary-blue);
    transition: color var(--transition-speed) ease;
}

.company-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    transition: color var(--transition-speed) ease;
}

.search-section {
    position: sticky;
    top: 0;
    background: var(--sidebar-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--sidebar-border);
    z-index: 10;
    transition: all var(--transition-speed) ease;
}

.search-input {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    width: 100%;
    background: var(--content-bg);
    color: var(--text-primary);
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

[data-bs-theme="dark"] .search-input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-blue);
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section h6 {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-speed) ease;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0.125rem 1rem;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    transform: translateX(2px);
    border-color: var(--border-color);
    text-decoration: none;
}

.nav-link.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.nav-link i {
    width: 18px;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
}

.setup-notice {
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    margin: 1rem;
    color: var(--warning-orange);
    font-size: 0.85rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.content-wrapper {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-header {
    padding: 1rem 0;
    transition: border-color var(--transition-speed) ease;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    transition: color var(--transition-speed) ease;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    transition: color var(--transition-speed) ease;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.plugin-card {
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

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

.plugin-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.plugin-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color var(--transition-speed) ease;
}

.plugin-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: color var(--transition-speed) ease;
}

.plugin-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.version-badge {
    background: var(--light-gray);
    color: var(--text-secondary);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

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

.feature-card {
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.feature-icon.info {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}
.feature-icon.warning {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}
.feature-icon.danger {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Dark mode: Keep some color for better contrast on feature icons */
[data-bs-theme="dark"] .feature-icon.info {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}
[data-bs-theme="dark"] .feature-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
[data-bs-theme="dark"] .feature-icon.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
    flex: 1;
}

.setup-instructions {
    max-width: 800px;
    margin: 0 auto;
}

.alert {
    padding: 1.5rem;
    border: 1px solid;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.alert-info {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--primary-blue);
}

.setup-steps {
    margin-bottom: 2rem;
}

.setup-steps h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color var(--transition-speed) ease;
}

.setup-steps ol {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.setup-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.setup-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-blue);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.setup-steps strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.setup-help {
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
}

.setup-help h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-speed) ease;
}

.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    transition: color var(--transition-speed) ease;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger-red);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
}

.markdown-content {
    line-height: 1.7;
    color: var(--text-primary);
    transition: color var(--transition-speed) ease;
    background: var(--sidebar-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-speed) ease;
}

.markdown-content h1 { font-size: 2rem; }
.markdown-content h2 { font-size: 1.5rem; }
.markdown-content h3 { font-size: 1.25rem; }

.markdown-content h1:first-child,
.markdown-content h2:first-child {
    margin-top: 0;
}

.markdown-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.markdown-content table th,
.markdown-content table td {
    padding: 0.875rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    transition: border-color var(--transition-speed) ease;
}

.markdown-content table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

.markdown-content table tr:last-child td {
    border-bottom: none;
}

.markdown-content blockquote {
    border-left: 4px solid var(--primary-blue);
    background: var(--light-gray);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

.markdown-content pre {
    background: #1e293b;
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

[data-bs-theme="dark"] .markdown-content pre {
    background: #1e1e1e;         /* Match card colors */
    border-color: var(--border-color);
}

.markdown-content code {
    background: var(--light-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--primary-blue);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.markdown-content pre code {
    background: transparent;
    padding: 0;
    color: #f8fafc;
    font-weight: normal;
    border: none;
}

.search-results {
    margin-top: 1rem;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.search-result {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background: var(--light-gray);
}

.search-result-header {
    margin-bottom: 0.5rem;
}

.search-result-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: color var(--transition-speed) ease;
}

.search-result-plugin {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.search-result-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
}

.mobile-toggle:hover {
    background: var(--secondary-blue);
    transform: scale(1.05);
}

/* Copyright Footer Styles */
.copyright-footer {
    margin-top: 3rem;
    padding: 2rem 0 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.copyright-footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
    transition: color var(--transition-speed) ease;
}

[data-bs-theme="dark"] .copyright-footer p {
    color: var(--text-muted);
}

/* Modern Theme Toggle Switch - Updated to use custom variables */
.theme-toggle-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

[data-bs-theme="dark"] .theme-toggle-label {
    color: #b3b3b3;              /* Consistent with secondary text */
}

.theme-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 2px;
}

.theme-switch:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

[data-bs-theme="dark"] .theme-switch:hover {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.theme-switch-handle {
    width: 24px;
    height: 24px;
    background: var(--sidebar-bg);
    border-radius: 50%;
    position: absolute;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.theme-switch-handle i {
    font-size: 12px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Dark mode active state */
[data-bs-theme="dark"] .theme-switch {
    background: #2563eb;         /* Correct blue from albright.link */
    border-color: #2563eb;
}

[data-bs-theme="dark"] .theme-switch-handle {
    transform: translateX(28px);
    background: white;
    border-color: #2563eb;
}

[data-bs-theme="dark"] .theme-switch-handle i {
    color: #2563eb;             /* Correct blue from albright.link */
}

[data-bs-theme="dark"] .auth-overlay {
    background: linear-gradient(135deg, #1e1e1e 0%, #000000 100%); /* Match card colors */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-speed) ease;
        width: 300px;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .mobile-toggle {
        display: block !important;
    }

    .page-title {
        font-size: 1.875rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .setup-steps li {
        padding-left: 2.5rem;
    }

    .setup-steps li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }

    .markdown-content {
        padding: 1.5rem;
    }

    .copyright-footer {
        margin-top: 2rem;
        padding: 1.5rem 0 1rem;
    }

    .theme-toggle-label {
        display: none;
    }

    .theme-toggle-container {
        top: 4.5rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .plugin-card {
        padding: 1.5rem;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .setup-instructions {
        margin: 0;
    }

    .markdown-content {
        padding: 1rem;
    }

    .copyright-footer {
        padding: 1rem 0;
    }

    .copyright-footer p {
        font-size: 0.8rem;
    }
}

/* Smooth transitions for theme switching */
* {
    transition: background-color var(--transition-speed) ease,
    color var(--transition-speed) ease,
    border-color var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

/* Loading state for theme switching */
.theme-switching * {
    transition: none !important;
}

/* Ensure Prism.js code blocks work well in deep black dark mode */
[data-bs-theme="dark"] .token.comment,
[data-bs-theme="dark"] .token.prolog,
[data-bs-theme="dark"] .token.doctype,
[data-bs-theme="dark"] .token.cdata {
    color: #8b8b8b;              /* Medium gray for comments */
}

[data-bs-theme="dark"] .token.property,
[data-bs-theme="dark"] .token.tag,
[data-bs-theme="dark"] .token.boolean,
[data-bs-theme="dark"] .token.number,
[data-bs-theme="dark"] .token.constant,
[data-bs-theme="dark"] .token.symbol,
[data-bs-theme="dark"] .token.deleted {
    color: #60a5fa;              /* Keep syntax highlighting blue for readability */
}

[data-bs-theme="dark"] .token.selector,
[data-bs-theme="dark"] .token.attr-name,
[data-bs-theme="dark"] .token.string,
[data-bs-theme="dark"] .token.char,
[data-bs-theme="dark"] .token.builtin,
[data-bs-theme="dark"] .token.inserted {
    color: #93c5fd;              /* Keep syntax highlighting light blue for readability */
}