body {
    background-color: #0a3d4e; /* Dark Blue from the logo */
    margin: 0;
    font-family: 'Arial', sans-serif;
}

#chat-section {
    background-color: #ffffff; /* White background for chat section */
    border-right: 2px solid #2aa397; /* Gradient color for border */
    border-left: 2px solid #2aa397;
}

.chat-window {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 15px;
    background-color: #39d0b8; /* Teal color from the logo */
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #e0f7f5; /* Light background for the chat messages */
}

.chat-message {
    margin-bottom: 10px;
    clear: both;
}

.bot-message {
    background-color: #e1f5fe;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    max-width: 80%;
    text-align: left;
    float: left;
    margin-right: 20px;
}

.user-message {
    background-color: #d1e7dd;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    max-width: 80%;
    text-align: right;
    float: right;
    margin-left: 20px;
}

.chat-input {
    display: flex;
    padding: 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #2aa397;
}

.chat-input input {
    flex: 1;
    margin-right: 10px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #39d0b8; /* Border with Teal color */
}

.chat-input button {
    padding: 10px 20px;
    background-color: #39d0b8; /* Teal color for the send button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #2aa397; /* Darker teal on hover */
}

/* Empty sections on left and right */
#left-section, #right-section {
    background-color: #0a3d4e; /* Match the dark blue of the logo */
}
