    :root {
        --primary-color: #3b82f6;
        --secondary-color: #1e40af;
        --text-color: #333;
        --light-bg: #f9fafb;
        --sidebar-bg: #f1f5f9;
        --hover-bg: #e2e8f0;
        --border-color: #e5e7eb;
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-color);
        background: var(--light-bg);
        line-height: 1.6;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    

    /* Header styles */
    .site-header {
        background-color: white;
        box-shadow: var(--shadow);
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 100;
        height: auto;
        min-height: 70px;
        width: 100% !important;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo-container img {
        height: 40px;
        width: auto;
        margin-right: 10px;
    }

    .site-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-color);
    }

    .horizontal-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-link {
        color: var(--text-color);
        text-decoration: none;
        padding: 0.5rem;
        border-radius: 0.25rem;
        transition: all 0.2s;
    }

    .nav-link:hover {
        background-color: var(--hover-bg);
        color: var(--primary-color);
    }

    .signin-button {
        background-color: var(--primary-color);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        text-decoration: none;
        transition: background-color 0.2s;
    }

    .signin-button:hover {
        background-color: var(--secondary-color);
    }

    .hamburger-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .content-container {
        display: flex;
        min-height: calc(100vh - 70px);
        /* Adjust for header height */
    }

    /* Sidebar styles */
    .sidebar {
        width: 250px;
        background: var(--sidebar-bg);
        border-right: 1px solid var(--border-color);
        padding: 1rem 0.75rem;
        overflow-y: auto;
        position: sticky;
        top: 70px;
        /* Position below header */
        height: calc(100vh - 70px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .sidebar-menu {
        margin-top: 1rem;
    }

    /* Category styles */
    .category-group {
        margin-bottom: 0.5rem;
    }

    .parent-category {
        font-size: 0.85rem;
        font-weight: 600;
        background: var(--primary-color);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 0.25rem;
        margin-bottom: 0.35rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        transition: background-color 0.2s;
        cursor: pointer;
    }

    .parent-category:hover {
        background: var(--secondary-color);
    }

    .parent-category.active {
        background: var(--secondary-color);
    }

    .parent-category::after {
        content: "▼";
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .parent-category.collapsed::after {
        transform: rotate(-90deg);
    }

    .nav-heading {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #64748b;
        margin-top: 0.75rem;
        margin-bottom: 0.35rem;
        padding-left: 0.5rem;
    }

    .subcategories-container {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease-out;
    }

    .subcategories-container.open {
        max-height: 1000px;
        transition: max-height 0.35s ease-in;
    }

    .subcategory {
        padding: 0.35rem 0.65rem;
        margin: 0.2rem 0;
        margin-left: 0.5rem;
        display: block;
        text-decoration: none;
        color: var(--text-color);
        border-radius: 0.25rem;
        transition: all 0.2s;
        border-left: 2px solid #cbd5e1;
        font-size: 0.8rem;
    }

    .subcategory:hover {
        background: var(--hover-bg);
        border-left-color: var(--primary-color);
    }

    .post-link {
        padding: 0.35rem 0.65rem;
        margin: 0.2rem 0;
        margin-left: 0.75rem;
        display: block;
        text-decoration: none;
        color: var(--text-color);
        border-radius: 0.25rem;
        transition: all 0.2s;
        font-size: 0.75rem;
    }

    .post-link:hover {
        background: var(--hover-bg);
        color: var(--primary-color);
    }

    .post-link.active {
        background: #dbeafe;
        color: var(--primary-color);
        font-weight: 500;
    }

    .main-content {
        flex: 1;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Post styles */
    .post-container {
        background: white;
        border-radius: 0.5rem;
        box-shadow: var(--shadow);
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .post-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .post-meta {
        display: flex;
        align-items: center;
        color: #64748b;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .post-date {
        margin-right: 1rem;
    }

    .post-author {
        font-weight: 500;
    }

    .featured-image {
        width: 100%;
        border-radius: 0.375rem;
        margin-bottom: 1.5rem;
        height: auto;
    }

    .post-content {
        font-size: 1.125rem;
        line-height: 1.75;
    }

    .post-content p {
        margin-bottom: 1.5rem;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 0.375rem;
        margin: 1.5rem 0;
    }

    .post-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-button {
        background: var(--primary-color);
        color: white;
        padding: 0.625rem 1.25rem;
        border-radius: 0.375rem;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s;
        display: inline-flex;
        align-items: center;
    }

    .nav-button:hover {
        background: var(--secondary-color);
    }

    .nav-button.prev:before {
        content: "←";
        margin-right: 0.5rem;
    }

    .nav-button.next:after {
        content: "→";
        margin-left: 0.5rem;
    }

    .category-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        color: #1e293b;
    }

    .post-list {
        display: grid;
        gap: 1.5rem;
    }

    .post-card {
        background: white;
        border-radius: 0.5rem;
        box-shadow: var(--shadow);
        padding: 1.5rem;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .post-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .post-card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .post-card-title a {
        color: #1e293b;
        text-decoration: none;
    }

    .post-card-title a:hover {
        color: var(--primary-color);
    }

    .post-card-meta {
        color: #64748b;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-card-excerpt {
        color: #4b5563;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .welcome-section {
        background: white;
        border-radius: 0.5rem;
        box-shadow: var(--shadow);
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .welcome-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .welcome-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        color: #4b5563;
    }

    .recent-posts-heading {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #1e293b;
    }

    .mobile-menu-toggle {
        display: none;
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        background: var(--primary-color);
        color: white;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        z-index: 100;
        border: none;
        cursor: pointer;
    }

    /* Footer styles */
    .site-footer {
        background-color: #1e293b;
        color: #f8fafc;
        padding: 2rem 0;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: white;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-section a:hover {
        color: white;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        color: #cbd5e1;
        font-size: 1.2rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: white;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sidebar-close {
        display: none;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .scrollmenu {
            margin-top:71px;
        }
        
        .content-container {
            flex-direction: column;
        }

        .sidebar {
            width: 80%;
            /* Reduce from 100% for better UX */
            height: 100vh;
            position: fixed;
            top: 0;
            left: -80%;
            /* Start off-screen */
            z-index: 1000;
            /* Higher z-index */
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
            padding-top: 70px;
            /* Account for header height */
            overflow-y: auto;
        }

        .sidebar.open {
            left: 0;
        }

        .main-content {
            padding: 0rem;
            margin-top: 1rem;
            width: 100%;
        }

        .post-container {
            padding-top: 5rem;
        }

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

        .mobile-menu-toggle {
            display: flex;
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: var(--primary-color);
            color: white;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            /* Above sidebar */
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

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

        .mobile-menu-toggle:active {
            transform: scale(0.95);
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            /* Just below sidebar */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar-overlay.show {
            display: block;
            opacity: 1;
        }

        /* Make hamburger menu more visible */
        .hamburger-menu {
            display: block;
            font-size: 1.5rem;
            padding: 0.5rem;
            cursor: pointer;
        }

        .site-header {
            justify-content: space-between;
            padding: 0.75rem 1rem;
            width: 100vw; /* Use viewport width instead of 100% */
            position: fixed; /* Optional: Lock header during scroll */
            left: 0;
            right: 0;
        }

        .horizontal-nav .nav-link {
            display: none;
        }

        /* Make close button inside sidebar */
        .sidebar-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            display: block;
        }
        
        .sidebar-close {
            display: block;
        }

        /* Mobile sidebar header */
        .sidebar-header {
            padding: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            background: var(--sidebar-bg);
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    }

    /* Code content within <code> tag */
    /* Inline code styling */
    code {
        font-family: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
        font-size: 0.9em;
        background-color: #f8f9fa;
        color: #e83e8c;
        padding: 0.2em 0.4em;
        border-radius: 3px;
        border: 1px solid #eaecef;
        font-feature-settings: "calt" 1;
        /* For font ligatures if supported */
        white-space: nowrap;
    }

    /* Code block styling */
    pre {
        background-color: #f8f9fa;
        border: 1px solid #eaecef;
        border-radius: 6px;
        padding: 1em;
        margin: 1.5em 0;
        overflow: auto;
        position: relative;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    pre code {
        font-family: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
        background: transparent;
        color: #24292e;
        padding: 0;
        border: none;
        display: block;
        white-space: pre;
        overflow-x: auto;
        line-height: 1.6;
        font-size: 0.6em;
        tab-size: 4;
        hyphens: none;
    }

    /* Language-specific header bar */
    pre[class*="language-"]::before {
        content: attr(data-language);
        position: absolute;
        top: 0;
        right: 0;
        color: #6c757d;
        font-size: 0.75em;
        font-weight: 600;
        padding: 0.25em 0.75em;
        background: #f1f3f5;
        border-bottom-left-radius: 4px;
        border-left: 1px solid #eaecef;
        border-bottom: 1px solid #eaecef;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Default to "CODE" if no language specified */
    pre:not([class*="language-"])::before {
        content: "CODE";
        position: absolute;
        top: 0;
        right: 0;
        color: #6c757d;
        font-size: 0.6em;
        font-weight: 600;
        padding: 0.25em 0.75em;
        background: #f1f3f5;
        border-bottom-left-radius: 4px;
        border-left: 1px solid #eaecef;
        border-bottom: 1px solid #eaecef;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Line numbers */
    pre.line-numbers {
        counter-reset: line;
        padding-left: 3.8em;
    }

    pre.line-numbers code {
        position: relative;
    }

    pre.line-numbers code::before {
        content: "";
        position: absolute;
        left: -3.8em;
        width: 3em;
        height: 100%;
        border-right: 1px solid #eaecef;
        background-color: #f1f3f5;
    }

    pre.line-numbers code>span {
        display: block;
        position: relative;
        counter-increment: line;
    }

    pre.line-numbers code>span::before {
        content: counter(line);
        position: absolute;
        left: -3.5em;
        width: 3em;
        text-align: right;
        color: #959da5;
        padding-right: 0.5em;
    }

    /* Syntax highlighting colors - GitHub-like theme */
    .token.comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #6a737d;
        font-style: italic;
    }

    .token.namespace {
        opacity: 0.7;
    }

    .token.string,
    .token.attr-value {
        color: #032f62;
    }

    .token.punctuation,
    .token.operator {
        color: #24292e;
    }

    .token.keyword {
        color: #d73a49;
        font-weight: 600;
    }

    .token.entity,
    .token.url,
    .language-css .token.string,
    .style .token.string,
    .token.variable {
        color: #e83e8c;
    }

    .token.property,
    .token.tag,
    .token.boolean,
    .token.number,
    .token.constant,
    .token.symbol,
    .token.deleted {
        color: #005cc5;
    }

    .token.selector,
    .token.attr-name,
    .token.char,
    .token.builtin,
    .token.inserted {
        color: #22863a;
    }

    .token.function,
    .token.class-name {
        color: #6f42c1;
    }

    .token.regex,
    .token.important {
        color: #e36209;
    }

    .token.important,
    .token.bold {
        font-weight: bold;
    }

    .token.italic {
        font-style: italic;
    }

    /* For dark mode support */
    @media (prefers-color-scheme: dark) {
        code {
            background-color: #fff;
            color: #1f2bea;
        }

        pre {
            background-color: #2d333b;
            border-color: #444c56;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        pre code {
            color: #fff;
        }

        pre::before,
        pre[class*="language-"]::before {
            background: #22272e;
            color: #adbac7;
            border-color: #444c56;
        }

        pre.line-numbers code::before {
            background-color: #22272e;
            border-color: #444c56;
        }

        pre.line-numbers code>span::before {
            color: #768390;
        }

        .token.comment,
        .token.prolog,
        .token.doctype,
        .token.cdata {
            color: #768390;
        }

        .token.string,
        .token.attr-value {
            color: #a5d6ff;
        }

        .token.punctuation,
        .token.operator {
            color: #adbac7;
        }

        .token.keyword {
            color: #ff7b72;
        }

        .token.entity,
        .token.url,
        .language-css .token.string,
        .style .token.string,
        .token.variable {
            color: #f47067;
        }

        .token.property,
        .token.tag,
        .token.boolean,
        .token.number,
        .token.constant,
        .token.symbol,
        .token.deleted {
            color: #6cb6ff;
        }

        .token.selector,
        .token.attr-name,
        .token.char,
        .token.builtin,
        .token.inserted {
            color: #aff5b4;
        }

        .token.function,
        .token.class-name {
            color: #d2a8ff;
        }

        .token.regex,
        .token.important {
            color: #f69d50;
        }
    }

    /* Copy button for code blocks */
    pre {
        position: relative;
    }

    pre .copy-button {
        position: absolute;
        top: 5px;
        right: 5px;
        background: rgba(255, 255, 255, 0.8);
        color: #333;
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 2px 6px;
        font-size: 0.8em;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.2s;
    }

    pre:hover .copy-button {
        opacity: 1;
    }

    pre .copy-button:hover {
        background: rgba(255, 255, 255, 1);
    }

    pre .copy-button:active {
        background: rgba(240, 240, 240, 1);
    }

    /* Base link styling */
    a {
        color: #2563eb;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    /* Hover effect with animated underline */
    a:hover {
        color: #1d4ed8;
    }

    a:not(.no-style):after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -2px;
        left: 0;
        background-color: currentColor;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease-out;
    }

    a:not(.no-style):hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    /* Different styling for links in content areas */
    .post-content a,
    .page-content a {
        color: #2563eb;
        text-decoration: none;
        background-image: linear-gradient(transparent calc(100% - 2px), rgba(37, 99, 235, 0.3) 2px);
        background-size: 0% 100%;
        background-repeat: no-repeat;
        background-position: 0 100%;
        transition: background-size 0.3s ease-in-out, color 0.2s ease;
    }

    .post-content a:hover,
    .page-content a:hover {
        color: #1d4ed8;
        background-size: 100% 100%;
    }

    /* External links with subtle icon */
    a[href^="http"]:not([href*="yourdomain.com"]):after {
        content: " \2197";
        font-size: 0.8em;
        vertical-align: super;
        opacity: 0.7;
        text-decoration: none;
    }

    /* Button-style links */
    a.button-link {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background-color: #2563eb;
        color: white;
        border-radius: 4px;
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
        transition: all 0.3s ease;
        text-align: center;
    }

    a.button-link:hover {
        background-color: #1d4ed8;
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
        transform: translateY(-1px);
    }

    a.button-link:active {
        transform: translateY(0);
        box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
    }

    /* Secondary button style */
    a.button-link.secondary {
        background-color: transparent;
        color: #2563eb;
        border: 1px solid #2563eb;
    }

    a.button-link.secondary:hover {
        background-color: rgba(37, 99, 235, 0.1);
    }

    /* Breadcrumb links */
    .breadcrumbs a {
        color: #6b7280;
        font-size: 0.9em;
    }

    .breadcrumbs a:hover {
        color: #4b5563;
    }

    .breadcrumbs a:after {
        content: '/';
        margin: 0 0.5rem;
        color: #d1d5db;
    }

    .breadcrumbs a:last-of-type:after {
        content: '';
        margin: 0;
    }

    /* Card links - for when the entire card is clickable */
    a.card-link {
        display: block;
        color: inherit;
        text-decoration: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    a.card-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    /* Sidebar links */
    .sidebar a {
        display: block;
        padding: 0.5rem 0;
        color: #4b5563;
        border-bottom: 1px solid #e5e7eb;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .sidebar a:hover {
        color: #2563eb;
        padding-left: 0.5rem;
    }

    .sidebar a.active {
        color: #2563eb;
        font-weight: 600;
        border-left: 3px solid #2563eb;
        padding-left: 0.5rem;
        background-color: rgba(37, 99, 235, 0.05);
    }

    /* Footer links */
    .site-footer a {
        color: #e5e7eb;
        transition: color 0.2s ease;
    }

    .site-footer a:hover {
        color: white;
    }

    /* Skip links for accessibility */
    a.skip-link {
        position: absolute;
        top: -50px;
        left: 0;
        background: #2563eb;
        color: white;
        padding: 8px;
        z-index: 100;
        transition: top 0.3s ease;
    }

    a.skip-link:focus {
        top: 0;
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        a {
            color: #158e7d;
        }

        a:hover {
            color: #93c5fd;
        }

        .post-content a,
        .page-content a {
            color: #158e7d;
            background-image: linear-gradient(transparent calc(100% - 2px), rgba(96, 165, 250, 0.3) 2px);
        }

        .post-content a:hover,
        .page-content a:hover {
            color: #93c5fd;
        }

        a.button-link {
            background-color: #3b82f6;
        }

        a.button-link:hover {
            background-color: #2563eb;
        }

        a.button-link.secondary {
            color: #158e7d;
            border-color: #158e7d;
        }

        .sidebar a {
            color: #345793;
            border-bottom-color: #374151;
        }

        .sidebar a:hover,
        .sidebar a.active {
            color: #158e7d;
        }

        .sidebar a.active {
            border-left-color: #158e7d;
            background-color: rgba(96, 165, 250, 0.1);
        }
    }