<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: sans-serif;
    background-color: #46a1dd;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #8dc5d6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #5a3838;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

textarea {
    resize: vertical;
}

button {
    background-color: #3498db;
    color: rgb(202, 199, 236);
    border: none;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

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

button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

#status {
    margin-top: 20px;
    font-weight: bold;
    min-height: 20px; /* Reserve space */
}

#controls {
    margin-top: 10px;
}

.disclaimer {
    margin-top: 30px;
    font-size: 0.8em;
    color: hsl(357, 88%, 19%);
}
</pre></body></html>