body {
    font-family: monospace;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#cat-container {
    width: 100px;
    height: 100px;
    background-color: #ff9800; /* Placeholder for the cat */
    margin-bottom: 20px;
}

#chat-container {
    width: 80%;
    max-width: 600px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#chat-log {
    height: 300px;
    overflow-y: scroll;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 5px;
}

#chat-input {
    width: 100%;
    border: none;
    padding: 5px;
    box-sizing: border-box;
}

#content-container {
    width: 80%;
    max-width: 600px;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: none; /* Hidden by default */
}