body {
    font-family: Arial, sans-serif;
    background: #121212;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
}

h1 {
    color: #ffcc00;
    margin-bottom: 5px;
}

.subtitle {
    color: #aaa;
    font-size: 14px;
}

.test-box {
    padding: 15px;
    border: 1px solid #444;
    background: #222;
    border-radius: 5px;
    margin: 15px 0;
    min-height: 80px;
}

#textDisplay {
    font-size: 18px;
    line-height: 1.5;
    color: #ddd;
}

textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #333;
    color: white;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

button {
    background: #ffcc00;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #ffaa00;
}
