/* https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/stylesheets/main/_colors.scss */

/* not sure why, had to add the ,[...] or it didn't get picked up. documentation wrong? */

:root,[data-md-color-scheme=default] {
    /* primary color of header, etc */

    /* color of original traquito header -- horrible as a theme color*/
    /* --md-primary-fg-color: rgb(173, 216, 230); */
    /* color of map ocean -- horrible as a theme color */
    /* --md-primary-fg-color: rgb(170, 211, 223); */



    /* original values: */
    /* --md-default-fg-color--lightest: 00000012; */
    /* --md-shadow-z1: 0 0.2rem 0.5rem #0000000d,0 0 0.05rem #0000001a; */
    /* --md-shadow-z2: 0 0.2rem 0.5rem #0000001a,0 0 0.05rem #00000040; */
    /* --md-shadow-z3: 0 0.2rem 0.5rem #0003,0 0 0.05rem #00000059; */

    /* used as border of cards */
    --md-default-fg-color--lightest: rgba(0, 0, 0, 0.30);

    /* used on admonishions, not sure what else */
    /* --md-shadow-z1: 0 0.2rem 0.5rem #ffe600,0 0 0.05rem #00f7ff; */

    /* used on cards, "scroll to top", ...? */
    --md-shadow-z2: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.576),0 0 0.05rem rgba(0, 0, 0, 0.251);

    /* not sure what used on */
    /* --md-shadow-z3: 0 0.2rem 0.5rem rgba(0, 17, 255, 0.877),0 0 0.05rem #cc14e4d2; */
}


/*
 * allow the content to grow, and push the nav/toc bars out.
 * in effect keeps the side margin of the page much less.
 * need to balance how horizontally huge the content section can
 * get, which can be ugly.
 */
.md-grid {
    max-width: 1400px; 
}


/*
 * Set of changes to expand the width of the TOC.
 * Eh, on second thought just let it be for now, keeping the css below
 * in case I want to revisit.
 */
.md-sidebar--primary {
    /* previous value was 12.1 */
    /* width: 13.8rem; */
}



@supports selector(::-webkit-scrollbar) {
[dir=ltr] .md-sidebar__inner {
    /* previous value was calc(100% - 11.5rem) (therefore 0.6rem) */
    /* padding-right: 0.6rem; */
}



/*
 * Cut down on some of the horizontal table cell padding
 */
.md-typeset table:not([class]) td {
    /* padding: .9375em 1.25em; */
    padding: .9375em 1.0em;
}





/*
 * decrease the height of the footer navigation (prev/next) bar.
 * pretty excessive margin, corrected now.
 */
.md-footer__link {
    margin-bottom: 0px;
    margin-top: 0px;
}

.md-footer__title {
    margin-bottom: 0px;
}

.md-footer__button {
    margin-top: 0px;
    margin-bottom: 0px;
}

/*
 * decrease the height of the footer advertising material for mkdocs.
 */
.md-footer-meta__inner {
    padding: 0px;
}