/* Osnovna temna tema */
body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
}
a {
    color: #569cd6;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
nav {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
nav li {
    margin-right: 15px;
}
section {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}
h1, h2, h3, h4 {
    color: #ffffff;
}
h2 {
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    margin-top: 40px;
}
h3, h4 {
    margin-top: 25px;
}
p {
    margin-top: 10px;
    margin-bottom: 10px;
}
pre, code {
    background-color: #2d2d2d;
    color: #d4d4d4;
    font-family: Consolas, monospace;
    font-size: 0.95em;
    border-radius: 4px;
}
pre {
    padding: 10px;
    overflow-x: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
}
code {
    padding: 2px 4px;
}
.example {
    border-left: 4px solid #444;
    padding-left: 10px;
    margin-top: 15px;
    background-color: #2a2a2a;
    border-radius: 4px;
}
.example pre {
    background-color: #3c3c3c;
    border: 1px solid #444;
}
.desc {
    margin-top: 5px;
    font-style: italic;
    color: #bbbbbb;
}
.subnav {
    margin-top: 10px;
    margin-bottom: 10px;
}
.subnav li {
    margin: 5px 0;
}
.subnav a {
    font-size: 0.95em;
    color: #9cdcfe;
}