/* General chat container styling */
body {
    font-family: Arial, sans-serif;
    background-color: #1c1c1c; /* Dark background */
    color: #fff; /* White text */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.chat-container {
    width: 90%; /* Cover 90% of the screen width */
    max-width: 800px;
    background-color: #333; /* Slightly lighter background for the chat box */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%; /* Adjust height to leave space around the chat */
}

/* Chat history area */
.chat-history {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Each message styling */
.message {
    max-width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    line-height: 1.5;
    white-space: pre-line; /* Keeps line breaks intact */
    font-size: 16px;
}

/* User's message styling */
.user {
    background-color: #4a90e2; /* Blue background for the user */
    color: white;
    align-self: flex-end; /* Align to the right */
    text-align: right;
}

/* Bot's message styling */
.bot {
    background-color: #f1f1f1; /* Light grey background for the bot */
    color: #333;
    align-self: flex-start; /* Align to the left */
}

/* Input form container */
.chat-input-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
}

.chat-input-container input {
    width: 85%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #444;
    color: white;
    font-size: 16px;
}

.chat-input-container button {
    width: 12%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #4a90e2;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.chat-input-container button:hover {
    background-color: #3578e5; /* Darker blue when hovering */
}

/* Typing indicator styling */
.bot-typing {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
    text-align: center;
    display: none;
}

