/*
I'm not big on styling so this stylesheet was mainly done by AI.
*/

/* Base */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container (keeps things stacked nicely) */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    background: #1e1e1e;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

/* Main character */
#char-needed {
    font-size: 3rem;
    margin: 0;
}

/* Input */
#char-input {
    font-size: 1rem;
    padding: 8px 10px;
    width: 200px;

    border: 1px solid #333;
    border-radius: 5px;
    outline: none;

    background: #2a2a2a;
    color: #e0e0e0;
}

#char-input:focus {
    border-color: #555;
}

/* Explanation text */
#char-explained {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0;
}