
:root {
    --bg: #f0f0f0;
    --text: #000000;
    --muted: #555555;
    --link: #0000ee;
    --link-hover: #551a8b;
    --highlight: #ffff00;
    --code-bg: #e0e0e0;
    --code-text: #1a1a1a;
    --code-border: #b0b0b0;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Courier New', ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 1rem;
    line-height: 1.35;
}

a { color: var(--link); text-decoration: underline; }
a:hover { color: var(--link-hover); text-decoration: underline; background-color: var(--highlight); }


#nav {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.5rem 1rem 0;
}

.navTab {
    color: var(--link);
    font-size: 1rem;
    text-decoration: underline;
}

.navTab:hover { color: var(--link-hover); background-color: var(--highlight); }

.navTab.home {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.navTab.home:hover {
    color: var(--text);
    background-color: transparent;
    text-decoration: none;
}


.siteHead {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.25rem 1rem 0.5rem;
}

.siteHead hr.line {
    margin: 0.35rem 0 0;
}

#siteTitle {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}


#container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.75rem 1rem 0.25rem;
}

#pageTitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

#sideImage {
    float: right;
  }

main { line-height: 1.35; }

h2 { font-size: 1.05rem; margin: 1rem 0 0.25rem; }
h3 { font-size: 1rem; margin: 0.75rem 0 0.25rem; }

hr.line {
    border: none;
    border-top: 1px dashed var(--text);
    margin: 1.25rem 0 0.5rem;
}

code {
    background: var(--code-bg);
    padding: 0 0.2rem;
    font-size: 0.95em;
}


pre {
    background: var(--code-bg);
    color: var(--code-text);
    border: 1px solid var(--code-border);
    padding: 0.4rem 0.5rem;
    overflow-x: auto;
    font-family: 'Courier New', ui-monospace, monospace;
}
pre code { background: none; padding: 0; color: inherit; }

.pageGroup { margin-bottom: 0.75rem; }

#pageIndex h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

#pageIndex ul { list-style: none; padding-left: 1rem; margin: 0; }

#pageIndex li { margin: 0.1rem 0; }

.pageItem a { font-weight: 400; }


table {
    border-collapse: collapse;
    margin: 0.5rem 0;
    width: auto;
}
th, td {
    border: 1px solid var(--text);
    padding: 0.15rem 0.4rem;
    text-align: left;
    vertical-align: top;
    font-size: 0.9rem;
}
th { font-weight: 700; }
tr.active td { background: #f0fff0; }


img.cover {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0.4rem 0;
    border: 1px solid var(--text);
}

ul.log { list-style: none; padding-left: 1rem; }
ul.log li { margin: 0.1rem 0; }
ul.log li a { color: var(--link); }
.log-ok {background: url(../images/icons/ok.png) left center no-repeat;padding-left: 25px;vertical-align: text-bottom;}
.log-pending {background:url(../images/icons/pending.png) left center no-repeat;padding-left: 25px;vertical-align: text-bottom;}

#footer {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.5rem 1rem 1rem;
}

@media (max-width: 720px) {

    #sideImage {
        display: none;
    }
}
