/* style.css - Dark Mode & Layout */

/* Container */
.container {
    width: 80%;
    max-width: 1200px;  /* Optional: verhindert zu breite Darstellung auf großen Monitoren */
    margin: 0 auto;     /* horizontal zentrieren */
}

/* Body & Text */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: sans-serif;
    margin: 20px;
}

h2 {
    color: #ffffff;
}

/* Breadcrumb */
div.breadcrumb {
    font-size: 0.9em;
    color: #aaaaaa;
    margin-bottom: 15px;
}
div.breadcrumb a {
    color: #90caf9;
    text-decoration: none;
}
div.breadcrumb a:hover {
    text-decoration: underline;
}

/* Table */
table {
    border-collapse: collapse;
    width: 100%;            /* volle Container-Breite */
    background-color: #1e1e1e;
}
th, td {
    border: 1px solid #333;
    padding: 6px;
}
th {
    background-color: #2c2c2c;
    color: #ffffff;
}
tr:nth-child(even) {
    background-color: #1a1a1a;
}
tr:nth-child(odd) {
    background-color: #222222;
}
a {
    color: #90caf9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* README box */
.readme-box {
    background-color: #1e1e1e;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    width: 100%;          /* füllt Container */
    box-sizing: border-box;
    color: #e0e0e0;
}

/* Small text (relative time) */
small {
    color: #bbbbbb;
}

/* Pre/code blocks */
pre, code {
    background-color: #2c2c2c;
    color: #f5f5f5;
    padding: 5px;
    border-radius: 4px;
    overflow-x: auto;
}
