 /* Basic Styling */
 body {
    font-family: 'Arial', sans-serif;
   
    background-color: #e3efd3;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h2 {
position: relative;
top: -250px;
right: 290px;
font-size: large;
color: #0d2b1d;
}

/* Chat Container */
.chat-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 80%; /* Adjust height */
    width: 70%;
    max-width: 10000px;
    position: relative;
    left: 55px;
    max-height:400px ;
    border-radius: 20px;
    background-color: #345635;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    padding: 15px;
}

/* Chatbox */
.chatbox {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    max-height: 100%;
}

/* Chat Messages */
.chat-message {
    margin: 8px;
    padding: 12px;
    border-radius: 15px;
    max-width: 70%;
}

.bot {
    background-color: #eae0d5;
    align-self: flex-start;
}

.user {
    background-color: #0d2b1d;
    color: #aec3b0;
    align-self: flex-end;
}

/* Input Container (Fixed to the bottom of the screen) */
.input-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
}

/* Input Field */
.user-input {
    width: 80%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-right: 10px;
    font-size: 16px;
}

/* Send Button */
.send-button {
    padding: 10px 15px;
    background-color: #2c2d2d;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.send-button:hover {
    background-color: #aeafb1;
}