/* HUMANITZ DARK THEME */

body {
    background: #000000;
    color: #C6C6C6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #E79543;
    font-weight: 600;
}

/* Links */
a {
    color: #E79543;
    text-decoration: none;
}
a:hover {
    color: #ffb97a;
    text-decoration: underline;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}
th, td {
    border: 1px solid #333;
    padding: 8px 10px;
}
th {
    background: #111111;
    color: #E79543;
}
td {
    background: #0A0A0A;
}

/* Code blocks */
pre {
    background: #111111;
    color: #E79543;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #333;
    overflow-x: auto;
}
code {
    background: #111111;
    color: #E79543;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Blockquotes */
blockquote {
    background: #0F0F0F;
    border-left: 4px solid #E79543;
    padding: 10px 16px;
    margin: 16px 0;
}

/* Collapsible sections */
details {
    background: #0A0A0A;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px 14px;
    margin: 12px 0;
}
summary {
    cursor: pointer;
    color: #E79543;
    font-weight: 600;
}

/* Cards / panels (if you use them) */
.dark-card {
    background: #0A0A0A;
    color: #C6C6C6;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    margin: 16px 0;
}

/* Images */
img {
    display: block;
    margin: 16px auto;
}

/* Nav bar list at top */
.nav-inline {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nav-inline li {
    display: inline-block;
}
.nav-inline a {
    padding: 4px 8px;
    border-radius: 4px;
    background: #111111;
}
.nav-inline a:hover {
    background: #1a1a1a;
}

/* Footer text */
.footer-text {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #777777;
}
