/* style.css */

body {
    background-color: #f2f2f2; /* Light gray background */
    font-family: Arial, sans-serif; /* Default font family */
}

.container {
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #952424; /* Dark red border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Drop shadow effect */
    background-color: #fff; /* White background */
}

#chat-log {
    height: 500px;
    overflow-y: auto;
    border: 2px solid #1bbc46; /* Green border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px;
    background-color: #f9f9f9; /* Light gray background */
}

.message {
    margin-bottom: 10px;
    font-size: 14px; /* Increased font size */
    padding: 8px 12px; /* Padding inside message box */
    border-radius: 5px; /* Rounded corners */
}

.User {
    color: #007bff; /* Blue color for user messages */
}

.AI {
    color: #333; /* Dark color for AI messages */
}

#user-input {
    width: calc(100% - 110px); /* Adjusted width for input field */
    padding: 8px; /* Padding inside input field */
    border: 1px solid #4820ea; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    margin-top: 10px; /* Spacing from chat log */
}

#send-btn {
    width: 80px; /* Fixed width for send button */
    padding: 7px; /* Padding inside button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    background-color: #007bff; /* Blue background color */
    color: #fff; /* White text color */
    cursor: pointer; /* Cursor style */
    margin-top: 10px; /* Spacing from input field */
}

#send-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.User {
    color: green; /* Green color for user name */
}

.ByteNeedsSupport {
    color: blue; /* Blue color for ByteNeeds Support name */
}

.AI {
    /* Black color for AI name */
}

/* Styling for message content */
.message {
    margin-bottom: 0; /* Remove the margin-bottom to remove space between messages */
    font-size: 14px; /* Keep font-size as per your preference */
    padding: 8px 12px; /* Keep padding as per your preference */
    border-radius: 5px; /* Keep border-radius as per your preference */
    line-height: 1.5; /* Increase line-height for better readability */
}

.product {
    font-weight: normal; /* Bold font for product names */
    color: black; /* Blue color for product names */
}

