@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

/* --- SEARCH COMPONENT OVERRIDES --- */
/* Force FURY theme colors for the search button in dark mode */
html[data-theme="dark"] button.btn.search-button__button,
html[data-theme="dark"] .bd-header .search-button__button {
    color: #f8f8f8 !important;
    border-color: rgba(255, 68, 68, 0.5) !important;
    background-color: transparent !important;
}

html[data-theme="dark"] button.btn.search-button__button .search-button__default-text,
html[data-theme="dark"] button.btn.search-button__button i {
    color: #f8f8f8 !important;
}

html[data-theme="dark"] button.btn.search-button__button:hover,
html[data-theme="dark"] .bd-header .search-button__button:hover {
    border-color: #ff4444 !important;
    background-color: rgba(255, 68, 68, 0.1) !important;
}

html[data-theme="dark"] button.btn.search-button__button .search-button__kbd-shortcut kbd,
html[data-theme="dark"] .bd-header .search-button__kbd-shortcut {
    color: #ff4444 !important;
    border-color: rgba(255, 68, 68, 0.5) !important;
    background-color: transparent !important;
}

/* --- NAVIGATION BAR OVERRIDES --- */

/* Shared navbar base */
.bd-header.navbar {
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 0.6rem 1.5rem;
}

/* Light mode navbar (Clean Glassmorphism) */
html[data-theme="light"] .bd-header.navbar {
    background-color: rgba(250, 245, 242, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html[data-theme="light"] .bd-header .navbar-brand,
html[data-theme="light"] .bd-header .nav-link,
html[data-theme="light"] .bd-header .bd-navbar-elements .nav-link {
    color: #1a1a1a !important;
}

html[data-theme="light"] .bd-header .nav-link:hover {
    color: #e60000 !important;
}

html[data-theme="light"] .bd-header .btn.theme-switch-button,
html[data-theme="light"] .bd-header .navbar-btn {
    color: #1a1a1a !important;
    border-color: rgba(0,0,0,0.15) !important;
}


html[data-theme="dark"] .bd-header .navbar-brand,
html[data-theme="dark"] .bd-header .nav-link,
html[data-theme="dark"] .bd-header .bd-navbar-elements .nav-link {
    color: #e8e0e0 !important;
}

html[data-theme="dark"] .bd-header .nav-link:hover {
    color: #ff4444 !important;
}

html[data-theme="dark"] .bd-header .btn.theme-switch-button,
html[data-theme="dark"] .bd-header .navbar-btn {
    color: #e8e0e0 !important;
    border-color: rgba(255,255,255,0.12) !important;
}

.bd-header .navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.9rem !important;
    text-decoration: none !important;
}

html[data-theme="dark"] .bd-header .navbar-brand,
html[data-theme="dark"] .bd-header .navbar-brand .logo__title,
html[data-theme="dark"] .fury-footer__logo-text {
    color: #ffffff !important;
}

html[data-theme="light"] .bd-header .navbar-brand,
html[data-theme="light"] .bd-header .navbar-brand .logo__title,
html[data-theme="light"] .fury-footer__logo-text {
    color: #1a1a1a !important;
}

.bd-header .navbar-brand .logo__title,
.fury-footer__logo-text {
    font-family: "Gotham", "Montserrat", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    font-size: 1.6rem !important;
    display: inline-block !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
    transform: scaleX(1.2) translateY(6px) !important;
    transform-origin: left center !important;
}

/* The shared .logo__title rule above nudges the wordmark down 6px, which leaves
   "FURY" sitting lower than the nav links, search field and version switcher --
   they all centre on the same line. Keep the horizontal stretch but drop the
   vertical offset in the header; the footer keeps its own treatment. */
.bd-header .navbar-brand .logo__title {
    transform: scaleX(1.2) !important;
}

/* Between the theme's 960px mobile breakpoint and ~1440px, the nav links plus
   the search/version/icon-links group don't fit on one row, so the icon-links
   wrap to an orphaned second row. The theme reserves 25% of the header for the
   logo (col-lg-3) even though it needs far less, so reclaim that space and keep
   the row from wrapping. Collapsing to the hamburger here is not an option: the
   drawer only works below 960px, and the homepage has no sidebar to fall back
   on. */
@media (min-width: 960px) and (max-width: 1439.98px) {
    .bd-header .navbar-header-items__start {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        /* the logo is scaleX(1.2), so it paints wider than its layout box */
        margin-right: 2rem !important;
    }

    .bd-header .navbar-header-items {
        width: auto !important;
        max-width: none !important;
        flex: 1 1 auto !important;
        padding-left: 0 !important;
    }

    .bd-header .navbar-header-items__end {
        flex-wrap: nowrap !important;
    }

    .bd-header .bd-navbar-elements .nav-link {
        white-space: nowrap !important;
    }
}

/* Reclaiming the logo column is enough down to ~1230px. Below that the row
   still overruns, so drop to the search field's icon-only form -- the same
   presentation the theme itself uses under 960px -- and tighten nav spacing.
   Above 1230px none of this applies, so the full search pill stays put. */
@media (min-width: 960px) and (max-width: 1229.98px) {
    .bd-header .search-button-field > :not(svg) {
        display: none !important;
    }

    .bd-header .search-button-field {
        padding: 0.4rem !important;
    }

    .bd-header .navbar-header-items__end {
        column-gap: 0.5rem !important;
    }

    .bd-header .navbar-header-items__center {
        column-gap: 0.2rem !important;
    }

    .bd-header .bd-navbar-elements .nav-link {
        font-size: 0.92rem !important;
        padding-left: 0.2rem !important;
        padding-right: 0.2rem !important;
    }

    .bd-header .version-switcher__button {
        font-size: 0.85rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

/* --- CUSTOM FULL-WIDTH FOOTER --- */

/* Override PyData Sphinx Theme Footer Constraints */
footer.bd-footer {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

footer.bd-footer .bd-footer__inner {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-items__start {
    width: 100%;
    margin: 0 !important;
    display: block !important;
}

.footer-items__center, .footer-items__end {
    display: none !important;
}

/* FURY Custom Footer Wrapper */
.fury-footer-wrapper {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Main Footer Section */
.fury-footer__main {
    background: #ebe6e4; /* Light mode main footer */
    padding: 4rem 0 2rem 0;
}

.fury-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fury-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.fury-footer__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fury-footer__logo {
    width: 70px;
    margin-bottom: 0.5rem;
}

.fury-footer__desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    max-width: 250px;
}

.fury-footer__socials {
    display: flex;
    gap: 0.75rem;
}

.fury-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: #1c1919;
    text-decoration: none;
    transition: all 0.2s;
}

.fury-footer__social-btn:hover {
    background: rgba(0,0,0,0.05);
    color: #e60000;
}

.fury-footer__heading {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #1c1919;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.fury-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fury-footer__links li {
    margin: 0;
}

.fury-footer__links a {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.fury-footer__links a:hover {
    color: #e60000;
}

.fury-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
    color: #777;
}

.fury-footer__joss a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.fury-footer__joss a:hover {
    color: #e60000;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .fury-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .fury-footer__grid {
        grid-template-columns: 1fr;
    }
    .fury-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- DARK MODE FOOTER --- */
html[data-theme="dark"] .fury-footer__main {
    background: #060404;
}

html[data-theme="dark"] .fury-footer__heading {
    color: #ffffff;
}

html[data-theme="dark"] .fury-footer__desc,
html[data-theme="dark"] .fury-footer__links a {
    color: #a09b9b;
}

html[data-theme="dark"] .fury-footer__links a:hover {
    color: #ffffff;
}

html[data-theme="dark"] .fury-footer__social-btn {
    border-color: rgba(255,255,255,0.1);
    color: #c0b8b8;
}

html[data-theme="dark"] .fury-footer__social-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
}

html[data-theme="dark"] .fury-footer__bottom {
    border-top-color: rgba(255,255,255,0.1);
    color: #888;
}

html[data-theme="dark"] .fury-footer__joss a {
    color: #888;
}

html[data-theme="dark"] .fury-footer__joss a:hover {
    color: #ffffff;
}

/* --- GLOBAL THEME BACKGROUND --- */
html[data-theme="dark"] {
    --pst-color-primary: #ff4444;
    --pst-color-secondary: #ff1a1a;
    --pst-color-accent: #d6b85c;
    --pst-color-info: #151111;
    --pst-color-background: transparent;

    /* Sphinx-Gallery Button Overrides (Outlined Style) */
    --sg-download-a-background-color: transparent;
    --sg-download-a-background-image: none;
    --sg-download-a-border-color: #ff4444;
    --sg-download-a-color: #ff4444;
    --sg-download-a-hover-background-color: rgba(255, 68, 68, 0.1);

    background-color: #0d0808;
    background-image:
        radial-gradient(circle, rgba(230,0,0,0.28) 0%, transparent 65%),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 900px 900px, 4.5rem 100%;
    background-position: top -50px right -50px, top left;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed;
}

/* Light mode: cream base + red radial glow, fixed to viewport. */
html[data-theme="light"] {
    --pst-color-primary: #e60000;
    --pst-color-secondary: #cc0000;
    --pst-color-accent: #a88b32;
    --pst-color-info: #faf5f2;
    --pst-color-background: transparent;

    /* Sphinx-Gallery Button Overrides (Outlined Style) */
    --sg-download-a-background-color: transparent;
    --sg-download-a-background-image: none;
    --sg-download-a-border-color: #e60000;
    --sg-download-a-color: #e60000;
    --sg-download-a-hover-background-color: rgba(230, 0, 0, 0.05);

    background-color: #faf5f2;
    background-image: radial-gradient(circle, rgba(230,0,0,0.12) 0%, transparent 65%);
    background-size: 900px 900px;
    background-position: top -50px right -50px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*
 * Create a clean "glassmorphism" effect for the sticky header.
 * We keep it minimalistic to match the light mode header (no borders or drop shadows),
 * but use a semi-transparent background + blur so scrolling text remains hidden
 * while the global red glow and grid gently show through.
 */
html[data-theme="dark"] .bd-header.navbar {
    background-color: rgba(13, 8, 8, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Scope FURY red inline-code style to article content only; sidebar nav links are unaffected. */
html[data-theme="light"] .bd-article code.docutils.literal:not(.download),
html[data-theme="light"] .bd-article code.xref:not(.download) {
    color: #e60000;
    background-color: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.15);
}

html[data-theme="dark"] .bd-article code.docutils.literal:not(.download),
html[data-theme="dark"] .bd-article code.xref:not(.download) {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

/* On mobile, PyData turns the primary/secondary sidebars into fixed off-canvas
   drawers that slide on top of the article (see pydata-sphinx-theme's
   max-width:959.98px / 1199.98px rules). --pst-color-background is transparent
   above so the desktop sidebar blends into the global grid/glow, but that same
   transparency makes the mobile drawer unreadable since the article text
   underneath shows straight through the nav links. Force an opaque,
   theme-matched background only at the widths where the sidebar overlays content. */
@media (max-width: 959.98px) {
    html[data-theme="light"] .bd-sidebar-primary {
        background-color: #faf5f2 !important;
    }
    html[data-theme="dark"] .bd-sidebar-primary {
        background-color: #151111 !important;
    }
}

@media (max-width: 1199.98px) {
    html[data-theme="light"] .bd-sidebar-secondary {
        background-color: #faf5f2 !important;
    }
    html[data-theme="dark"] .bd-sidebar-secondary {
        background-color: #151111 !important;
    }
}

/* Reset PyData's code-badge styling on sidebar nav links so they render as plain text. */
.bd-sidebar-primary li a code.literal,
.bd-sidebar-primary li a code.xref,
.bd-sidebar-primary li a code.docutils {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

/* --- CODE BLOCK OVERRIDES --- */
/* PyData sets `pre { background: var(--pst-color-surface) }` globally, which covers our
   custom div.highlight background. We override div.highlight and reset pre inside it. */
html[data-theme="light"] div.highlight {
    background-color: #fcfcfc !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px;
}
html[data-theme="light"] div.highlight pre {
    background-color: transparent !important;
    border: none !important;
}

html[data-theme="dark"] div.highlight {
    background-color: #151111 !important;
    border: 1px solid #332b2b !important;
    border-radius: 4px;
}
html[data-theme="dark"] div.highlight pre {
    background-color: transparent !important;
    border: none !important;
}


/* --- SPHINX GALLERY DOWNLOAD BUTTON --- */
div.sphx-glr-download a code.download {
    color: inherit !important;
}

/* --- ADMONITION OVERRIDES --- */
html[data-theme="light"] .admonition.note,
html[data-theme="light"] .admonition.info {
    border-color: #cc0000 !important;
    background-color: #faf5f2 !important;
}
html[data-theme="light"] .admonition.note > .admonition-title,
html[data-theme="light"] .admonition.info > .admonition-title {
    background-color: rgba(230, 0, 0, 0.08) !important;
    color: #e60000 !important;
}
html[data-theme="light"] .admonition.note > .admonition-title::before,
html[data-theme="light"] .admonition.info > .admonition-title::before {
    color: #e60000 !important;
}

html[data-theme="dark"] .admonition.note,
html[data-theme="dark"] .admonition.info {
    border-color: rgba(255, 68, 68, 0.4) !important;
    background-color: #151111 !important;
}
html[data-theme="dark"] .admonition.note > .admonition-title,
html[data-theme="dark"] .admonition.info > .admonition-title {
    background-color: rgba(255, 68, 68, 0.1) !important;
    color: #ff4444 !important;
}
html[data-theme="dark"] .admonition.note > .admonition-title::before,
html[data-theme="dark"] .admonition.info > .admonition-title::before {
    color: #ff4444 !important;
}

/* --- BACK TO TOP BUTTON --- */
#pst-back-to-top,
#pst-back-to-top * {
    color: #ffffff !important;
}

/* --- COMMUNITY PAGE GITHUB STATS --- */
.github_visualization_basic_stats_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .github_visualization_basic_stats_container {
        grid-template-columns: 1fr;
    }
}

.github_visualization_basic_stats {
    position: relative;
    border-radius: 12px;
    padding: 20px 25px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.github_visualization_basic_stats:hover {
    transform: translateY(-2px);
}

.stat_holder {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat_holder > span {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: baseline;
}

.basic_stat_icon_holder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.basic_stat_icon {
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4caf50;
    margin-right: 8px;
}

.background_icon {
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 130px;
    z-index: 0;
    pointer-events: none;
}

/* Light mode specific styles for stats */
html[data-theme="light"] .github_visualization_basic_stats {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .github_visualization_basic_stats:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .basic_stat_icon_holder {
    background-color: rgba(230, 0, 0, 0.08);
}

html[data-theme="light"] .basic_stat_icon {
    color: #e60000;
}

html[data-theme="light"] .stat_holder > span {
    color: #333333;
}

html[data-theme="light"] .background_icon {
    color: rgba(230, 0, 0, 0.03);
}

/* Dark mode specific styles for stats */
html[data-theme="dark"] .github_visualization_basic_stats {
    background-color: rgba(25, 21, 21, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .github_visualization_basic_stats:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

html[data-theme="dark"] .basic_stat_icon_holder {
    background-color: rgba(255, 68, 68, 0.12);
}

html[data-theme="dark"] .basic_stat_icon {
    color: #ff4444;
}

html[data-theme="dark"] .stat_holder > span {
    color: #e0e0e0;
}

html[data-theme="dark"] .background_icon {
    color: rgba(255, 68, 68, 0.03);
}

/* --- JOIN US BUTTONS OVERRIDE --- */
.join-us__container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.join-us__icon-background {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.2s, background-color 0.2s;
}

.join-us__icon-background:hover {
    transform: scale(1.1);
}

.join-us__icon {
    font-size: 1.5rem;
}

html[data-theme="light"] .join-us__icon-background {
    background-color: rgba(230, 0, 0, 0.08);
}

html[data-theme="light"] .join-us__icon-background:hover {
    background-color: rgba(230, 0, 0, 0.15);
}

html[data-theme="light"] .join-us__icon {
    color: #e60000;
}

html[data-theme="dark"] .join-us__icon-background {
    background-color: rgba(255, 68, 68, 0.12);
}

html[data-theme="dark"] .join-us__icon-background:hover {
    background-color: rgba(255, 68, 68, 0.25);
}

html[data-theme="dark"] .join-us__icon {
    color: #ff4444;
}

/* --- CONTRIBUTORS LIST --- */
#github_visualization_contributors_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #github_visualization_contributors_wrapper {
        grid-template-columns: 1fr;
    }
}

#github_visualization_contributors_wrapper a {
    text-decoration: none !important;
}

.github_visualization_contributor_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; /* Reduced gap between rows */
    padding: 15px 20px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.github_visualization_contributor_info:hover {
    transform: translateY(-2px);
}

.github_visualization_contributor_stat_row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.stat_icon_holder {
    width: 40px;
    height: 30px; /* Reduced height to remove extra space */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat_icon {
    font-size: 1.1rem; /* Slightly smaller icon to fit nicely */
}

.github_visualization_contributor_img_holder {
    width: 40px; /* Matching width with icon holder */
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0,0,0,0.05);
}

.github_visualization_contributor_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.github_visualization_contributor_name {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.github_visualization_contributor_diffs {
    display: flex;
    gap: 15px;
}

.github_visualization_contributor_commits,
.github_visualization_contributor_additions,
.github_visualization_contributor_deletions {
    font-size: 0.95rem;
    font-weight: 600;
}

html[data-theme="light"] .github_visualization_contributor_info {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

html[data-theme="light"] .github_visualization_contributor_info:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

html[data-theme="light"] .github_visualization_contributor_name {
    color: #333333;
}

html[data-theme="light"] .github_visualization_contributor_commits {
    color: #666666;
}

html[data-theme="light"] .github_visualization_contributor_additions {
    color: #4caf50;
}

html[data-theme="light"] .github_visualization_contributor_deletions {
    color: #f44336;
}

html[data-theme="light"] .stat_icon {
    color: #666666;
}

html[data-theme="dark"] .github_visualization_contributor_info {
    background-color: rgba(25, 21, 21, 0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
}

html[data-theme="dark"] .github_visualization_contributor_info:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

html[data-theme="dark"] .github_visualization_contributor_name {
    color: #e0e0e0;
}

html[data-theme="dark"] .github_visualization_contributor_commits {
    color: #aaaaaa;
}

html[data-theme="dark"] .github_visualization_contributor_additions {
    color: #4caf50;
}

html[data-theme="dark"] .github_visualization_contributor_deletions {
    color: #f44336;
}

html[data-theme="dark"] .github_visualization_contributor_img_holder {
    border-color: rgba(255,255,255,0.1);
}

html[data-theme="dark"] .stat_icon {
    color: #aaaaaa;
}
