body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    transition: cursor 0.3s;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

#status {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    text-align: center;
    max-width: 500px;
}

#resetButton {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
}

#resetButton:hover {
    background-color: #5a6268;
}

#output {
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}
