body {
    margin: 40px auto;
    background-color: black;
    color: white;
    font-size: 150%;
    max-width: 650px;
    font-family: monospace;
}

a {
    text-decoration: none;
}
a:link    { color: chartreuse; }
a:visited { color: chartreuse; }
a:hover   { color: cyan; }
a:active  { color: red; }

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

/* ===== NATIVE COMMENTS ===== */

.native-comments-wrapper {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.native-comments-wrapper h3 {
    margin: 0 0 1.2em;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: chartreuse;
}

/* Kommentar-Liste */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 2.5em;
}

/* Einzelner Kommentar */
.comment {
    padding: 1em 1.2em;
    border-left: 2px solid rgba(255,255,255,0.15);
}

/* Kopfbereich */
.comment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.6em;
    margin-bottom: 0.4em;
}

.comment-header strong {
    font-size: 0.85em;
    color: chartreuse;
}

.comment-header a {
    font-size: 0.75em;
    color: chartreuse;
    text-decoration: none;
}

.comment-header a:hover {
    color: cyan;
    text-decoration: underline;
}

.comment-date {
    font-size: 0.7em;
    color: rgba(255,255,255,0.45);
}

/* Kommentar-Text */
.comment-body {
    font-size: 0.85em;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-top: 0.3em;
    word-break: break-word;
}

/* Keine Kommentare vorhanden */
.no-comments {
    font-size: 0.8em;
    color: rgba(255,255,255,0.5);
}

/* Feedback nach Absenden */
.comment-feedback {
    margin-bottom: 1.5em;
    padding: 0.75em 1em;
    font-size: 0.8em;
    line-height: 1.5;
    border-left: 3px solid;
}

.comment-feedback--success {
    border-color: chartreuse;
    color: chartreuse;
    background: rgba(127,255,0,0.06);
}

.comment-feedback--info {
    border-color: cyan;
    color: cyan;
    background: rgba(0,255,255,0.06);
}

.comment-feedback--error {
    border-color: red;
    color: #ff8080;
    background: rgba(255,0,0,0.06);
}

/* Formular-Wrapper */
.comment-form-wrapper {
    margin-top: 1em;
}

/* Formular */
.comment-form {
    padding: 1.25em 1.25em 1.5em;
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 2px solid rgba(255,255,255,0.2);
}

.comment-form .form-group {
    margin-bottom: 1em;
}

.comment-form .form-group:last-of-type {
    margin-bottom: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 0.3em;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
}

/* Inputs + Textarea – font-family und font-size EXPLIZIT setzen */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.4em 0.6em;
    font-family: monospace;    /* ← explizit, Browser erben das sonst nicht */
    font-size: 0.8em;          /* ← em statt rem, relativ zum body */
    line-height: 1.4;
    background: #111;
    color: #f0f0f0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.15s;
}

.comment-form textarea {
    min-height: 7em;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: chartreuse;
}

/* Hinweistext unter E-Mail */
.comment-form small {
    display: block;
    margin-top: 0.2em;
    font-size: 0.65em;
    color: rgba(255,255,255,0.4);
}

/* Button */
.comment-form button[type="submit"] {
    margin-top: 0.8em;
    padding: 0.4em 1.2em;
    font-family: monospace;    /* ← explizit */
    font-size: 0.8em;
    font-weight: bold;
    background: transparent;
    color: chartreuse;
    border: 1px solid chartreuse;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.comment-form button[type="submit"]:hover {
    background: chartreuse;
    color: #000;
    box-shadow: 0 0 10px rgba(127,255,0,0.4);
}

.comment-form button[type="submit"]:active {
    transform: translateY(1px);
}
