/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Grundlayout */
body {
    font-family: "JetBrains Mono", "Fira Code", "Source Code Pro",
                 Consolas, Monaco, "Courier New", monospace;
    background-color: #0b0f0c;
    color: #9ae6b4;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #0e1411;
    border-left: 1px solid #1f3d2b;
    border-right: 1px solid #1f3d2b;
}

/* Header */
.header {
    background-color: #0b0f0c;
    border-bottom: 1px solid #1f3d2b;
}

/* Menü */
.menu {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.5rem;
}

/* Links */
.menu a {
    text-decoration: none;
    color: #6ee7b7;
    font-weight: 500;
}

.menu a:hover {
    color: #a7f3d0;
    text-decoration: underline;
}

/* Content */
.content {
    flex: 1;
    padding: 2rem 1.5rem;
}

/* Typografie im Content */
.content h1,
.content h2,
.content h3 {
    color: #a7f3d0;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
}

/* Key-Value-Blöcke (passt zu deiner Statusseite) */
.kv-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0.8rem;
    border-bottom: 1px dashed #1f3d2b;
}

.kv-key {
    color: #6ee7b7;
}

.kv-value {
    color: #a7f3d0;
}

/* Footer */
.footer {
    background-color: #0b0f0c;
    border-top: 1px solid #1f3d2b;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    color: #4ade80;
}
