/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #343541;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Chat Container */
#chat-container {
    width: 80%;	
    max- width: 800px;
    height: 600px;
    max-height: 80vh;
    padding: 10px;
    background-color: #444654;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Chat Box */
#chat-box {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Chat Bubbles */
.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.user {
    align-self: flex-end;
    background-color: #0A84FF;
    color: white;
    text-align: right;
}

.bot {
    align-self: flex-start;
    background-color: #3C3F46;
    color: white;
}

/* Input Area */
#input-area {
    display: flex;
    padding: 10px;
    background-color: #343541;
    border-top: 1px solid #555;
}

#user-input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #555;
    color: white;
}

button {
    margin-left: 10px;
    padding: 10px;
    border: none;
    background-color: #0A84FF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0071E3;
}

/* Typing Animation */
.typing {
    font-style: italic;
    color: #999;
}
