body {
    margin: 40px;
    font-family: monospace;
    background: #000000;
    color: #ffffff;
}

h1 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #ff8800;
    background: #414141;
    color: #ffffff;
    padding: 5px;
    font-family: monospace;
    resize: vertical;
}

input[type="text"] {
    width: 100%;
    border: 1px solid #ff8800;
    background: #414141;
    color: #ffffff;
    padding: 5px;
    margin-top: 10px;
    font-family: monospace;
}

input[type="password"] {
    width: 100%;
    border: 1px solid #ff8800;
    background: #414141;
    color: #ffffff;
    padding: 5px;
    margin-top: 10px;
    font-family: monospace;
}


select {
    margin-top: 10px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 5px;
    font-family: monospace;
}

label {
    margin-top: 10px;
    display: block;
}

button {
    margin-top: 20px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 8px 12px;
    cursor: pointer;
    font-family: monospace;
}

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

#result {
    margin-top: 20px;
    white-space: pre-wrap;
    word-break: break-word;
}

#output {
    white-space: pre-wrap;
    word-break: break-word;
    font-family: monospace;
}

.toggle-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
}

.toggle-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    appearance: none;
    border: 1px solid #ff8800;
    background: #414141;
}

.toggle-container input[type="checkbox"]:checked {
    background: #ff8800;
}

.toggle-container label {
    margin: 0;
    cursor: pointer;
}