.elementor-kit-106{--e-global-color-accent:#2270E2;--e-global-color-secondary:#FFFFFF;--e-global-color-primary:#212121;--e-global-color-text:#4D4D4D;--e-global-color-c742624:#FFFFFF;--e-global-color-e0b99f2:#FFFFFF;--e-global-color-45d598c:#FFFFFF;--e-global-color-40b28bc:#000000;--e-global-color-95d2432:#F4F8FD;--e-global-color-0bbe810:#F3F4F6;--e-global-color-9ce2928:#222222;--e-global-color-fab3c72:#49A078;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:50px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-line-height:1.1em;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:1.1em;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:300;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:400;--e-global-typography-0e838b8-font-family:"Poppins";--e-global-typography-0e838b8-font-size:28px;--e-global-typography-0e838b8-font-weight:500;--e-global-typography-0e838b8-line-height:1.4em;--e-global-typography-48643ca-font-family:"Poppins";--e-global-typography-48643ca-font-size:20px;--e-global-typography-48643ca-font-weight:600;--e-global-typography-48643ca-line-height:1.1em;background-color:#FFFFFF;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-106{--e-global-typography-primary-font-size:30px;--e-global-typography-primary-line-height:1em;--e-global-typography-secondary-font-size:26px;--e-global-typography-secondary-line-height:1.1em;--e-global-typography-text-font-size:16px;--e-global-typography-text-line-height:1.4em;--e-global-typography-0e838b8-font-size:22px;--e-global-typography-0e838b8-line-height:1em;--e-global-typography-48643ca-font-size:20px;--e-global-typography-48643ca-line-height:1em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.chat-widget {
    width: 90%;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 80vh;
}

.chat-header {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

.chat-message {
    margin: 10px 0;
}

.chat-message.bot {
    text-align: left;
    color: #007bff;
}

.chat-message.user {
    text-align: right;
    color: #000;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #ccc;
    background-color: #fff;
    align-items: center;
    padding: 10px;
}

#userInput {
    flex: 1;
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

#sendButton {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#sendButton:hover {
    background-color: #0056b3;
}/* End custom CSS */