
body {
    background-color: #2a2a2a;
    padding: 32px;
    font-family: Helvetica, sans-serif;
}
* {
    color: white
}

input {
    border-radius: 8px;
    padding: 8px;
    background-color: #1c1c1c;
    border: none;
    width: 100%;
}

button {
    border: none;
    border-radius: 8px;
    padding: 8px;
    background-color: #1c1c1c;
    width: 100%;
    cursor: pointer;
}

.gap {
    height: 8px;
}

#result {
    display: none;
    padding: 16px;
    border: 1px solid #000;
    border-radius: 8px;
}

#result.visible {
    display: block
}

.monospace {
    font-family: monospace;
    border-radius: 4px;
    background-color: #0c0c0c;
    padding: 2px
}

#result.success {
    border: 1px solid #00ff00;
    background-color: #00ff0011;
}

#result.error {
    border: 1px solid #ff0000;
    background-color: #ff000011;
}