/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

.full-page-container {
    width: 100%;
    /* max-width: 450px; */
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.landing-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    text-align: center;
}

header h2 {
    color: #0078d4;
    margin-bottom: 10px;
}

header p {
    color: #666;
    margin-bottom: 20px;
}

.input-container {
    /* width: 100%; */
}

.input-container input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.start-chat-btn {
    padding: 10px 20px;
    background-color: #0078d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.start-chat-btn:hover {
    background-color: #005ea2;
}

.chat-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background-color: #0078d4;
    color: white;
    padding: 15px;
    text-align: center;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}

.chat-messages p {
    margin: 10px 0;
    padding: 10px;
    border-radius: 20px;
    max-width: 75%;
    line-height: 1.4em;
    word-wrap: break-word;
    display: inline-block;
}

.chat-messages .user-message {
    text-align: right;
    background-color: #0078d4;
    color: white;
    align-self: flex-end;
}

.chat-messages .bot-message {
    text-align: left;
    background-color: #e4e6eb;
    color: #333;
}

.chat-input-container {
    display: flex;
    padding: 10px;
    background-color: #f9f9f9;
}

.chat-input-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    margin-right: 10px;
}

/* .chat-header {
    text-align: center;
    padding: 20px;
    background-color: #0078d4;
    color: white;
} */

.chat-header-image {
    display: flex;
    width: 100%;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    
    height: auto;  /* Keep aspect ratio intact */
    margin-bottom: 10px;  /* Space between the image and the heading */
}
.chat-header-image img {
    display: flex;
    width: 100%;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    width: 80px;  /* Adjust image width */
    height: auto;  /* Keep aspect ratio intact */
    /* margin-bottom: 10px;  Space between the image and the heading */
}



.send-btn {
    padding: 10px;
    background-color: #0078d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
