#typewriter-chat-container {
    font-family: 'DM Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

#typewriter-chat-input {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    padding: 10px;
    width: 60%;
    border: 2px solid whitesmoke;
    background-color: #f5f5f5;
    color: #222;
    outline: none;
    margin-bottom: 20px;
}

#typewriter-chat-submit {
    font-family: 'DM Mono', monospace;
    font-size: 18px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#typewriter-chat-submit:hover {
    background-color: #555;
}

#typewriter-chat-response {
    margin-top: 30px;
    max-width: 80%;
    font-size: 18px;
    white-space: pre-wrap;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}