body {  
    font-family: Arial, sans-serif;  
    background-color: #f4f4f4;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    margin: 0;  
}  

.container {  
    background: white;  
    padding: 20px;  
    border-radius: 10px;  
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
    max-width: 600px;  
    width: 100%;  
    text-align: center;  
}  

.title {  
    font-size: 24px;  
    margin-bottom: 20px;  
}  

.anime-gif {  
    width: 100px;  
    margin-bottom: 20px;  
}  

.chat-area {  
    background: #eaeaea;  
    max-height: 400px;  
    overflow-y: auto;  
    padding: 10px;  
    border-radius: 8px;  
    margin-bottom: 20px;  
}  

.input-area {  
    display: flex;  
    justify-content: space-between;  
}  

input[type="text"] {  
    width: 80%;  
    padding: 10px;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
}  

button {  
    padding: 10px;  
    background-color: #28a745;  
    color: white;  
    border: none;  
    border-radius: 5px;  
    cursor: pointer;  
}  

button:hover {  
    background-color: #218838;  
}  

.chat-log {  
    margin-bottom: 10px;  
}  

.chat-log .message {  
    padding: 8px;  
    margin-bottom: 5px;  
    border-radius: 5px;  
}  

.chat-log .user {  
    background-color: #d1e7dd;  
    text-align: right;  
}  

.chat-log .ai {  
    background-color: #f8d7da;  
    text-align: left;  
}