#chat-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#chat-box {
    width: 100%;
    height: 500px;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
}

#chat-input {
    width: 80%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

#chat-send {
    width: 18%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#chat-send:hover {
    background-color: #005a87;
}

.chat-message {
    max-width: 70%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    line-height: 1.5;
    font-size: 14px;
    word-wrap: break-word;
}

.chat-message.user {
    background-color: #0073aa;
    color: white;
    align-self: flex-end;
    text-align: left;
}

.chat-message.bot {
    background-color: #e6e6e6;
    color: black;
    align-self: flex-start;
    text-align: left;
}
