body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #0f0; /* Grüne Schrift für den Titel */
}

.beschreibung {
    line-height: 1.6;
    margin-bottom: 30px;
}

.interaktion-box {
    border: 1px solid #444;
    padding: 20px;
}

#jailbreak-form {
    display: flex;
    flex-direction: column;
}

textarea {
    background-color: #111;
    color: #fff;
    border: 1px solid #555;
    padding: 10px;
    font-family: inherit;
    height: 100px;
    margin-bottom: 10px;
}

button {
    background-color: #0f0;
    color: #000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #fff;
}

#holmes-antwort-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px dashed #444;
    min-height: 50px;
}

#holmes-antwort {
    white-space: pre-wrap; /* Sorgt dafür, dass der Text umbricht */
    word-wrap: break-word;
}

.footer {
    text-align: center;
    margin-top: 30px;
}

.footer a {
    color: #0f0;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
