
.feedback-button {
    height: 50px;
    width :fit-content;
   margin-left: 10px;
   background-color: #4729a3;
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   padding: 5px 10px;
   font-size: 14px; /* Optional: adjust text size */
}

.feedback-button:hover {
   background-color: #583bb7; /* Slightly lighter shade on hover */
}

#search-iframe {
    position: absolute; /* Position it absolutely */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    border: none; /* Remove border */
    z-index: 1000; /* Higher z-index to overlay */
}
.disabled {
    pointer-events: none; /* Prevents clicking */
    opacity: 0.5; /* Makes it look disabled */
}
.suggestions-list {
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }
  
  .suggestion-item {
    padding: 10px;
    cursor: pointer;
  }
  
  .suggestion-item:hover {
    background-color: #f0f0f0;
  }
  
.input-message {
    width:100%;
    padding: 10px;
    font-size: 14px;
    border:none;
    border-radius: 4px;
    margin-right: 0px;
}

.send-button {
    padding: 10px;
    background-color: initial;
    color: #8b70db;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.send-button:hover {
    background-color: #000;
}
  
.chat-window {
    display: flex;
    flex-direction: column;
  }
  
  .user-message {
    background-color: #e0e0e0;
    text-align: left;
    
  }
  
  .bot-message {
    background-color: #d0f0d0;
    text-align: left;
  }
  
  .send-container {
    position: relative;
    top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -22px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px #ebebeb;
    padding: 4px;
    gap: 0px; /* Add spacing between elements */
}
.send-container .input-message{border-radius: 7px 0 0 7px;}

.input-message {
    flex: 1; /* Make the input field take remaining space */
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.send-button {
    background-color: #4729a3;
    color: #fff;
    border: none;
    padding: 12.5px 15px;
    border-radius: 0 7px 7px 0;
    cursor: pointer;
    margin-right: 20px;
    margin-left: 0px;
}

.toggle-button {
    background-color: #4729a3;
    color: #ffff;
    border: none;
    padding: 13px 15px;
    border-radius:7px;
    cursor: pointer;
    display: none;
}
  
  .options ul {
    list-style-type: none;
  }
  
  .options ul li {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 20px;
    margin: 5px 0;
    cursor: pointer;
  }
  


ul.chat-window {
    width: 100%;
    height: 100%;
    /*overflow-y: scroll;*/
    margin-top: 0;
    padding: 20px;
    list-style: none;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid #c4d2f1;
    border-radius: 8px;
    display: block;
    height: calc(100% - 120px);
    background:#f0f8fc;
}

ul.chat-window>li .text {
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px 15px;
    line-height: 20px;
}

ul.chat-window>li.bot .text {
    background-color: #fff;
    color: #190b41;
    float: left;
}

ul.chat-window>li {
    clear: both;
    max-width: 80%;
    box-sizing: border-box;
    white-space: pre-wrap;
}

ul.chat-window>li.user {
    float: right;
}

ul.chat-window>li.bot {
    float: left;
}

ul.chat-window>li.user .text {
    background-color:#f000b4;
color: #ffff;
}

ul.chat-window>li.options {
    margin-top: 10px;
    list-style: none;
    max-width: 100%;
    width: 100%;
    float: left;
    text-align: right;
}

ul.chat-window>li.options>ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

ul.chat-window>li.options>ul>li {
    border-radius: 10px;
    padding: 5px 10px;
    border: 1px solid #4729a3;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
    margin-bottom: 10px;
}

.typing-indicator {
    background-color: #E6E7ED;
    will-change: transform;
    width: auto;
    border-radius: 50px;
    padding: 10px;
    display: table;
    margin: 0;
    margin-left: 10px;
    position: relative;
    -webkit-animation: 2s bulge infinite ease-out;
    animation: 2s bulge infinite ease-out;
}

.typing-indicator::before,
.typing-indicator::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #E6E7ED;
}

.typing-indicator::after {
    height: 10px;
    width: 10px;
    left: -10px;
    bottom: -10px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    -webkit-animation: 1s blink infinite 0.3333s;
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    -webkit-animation: 1s blink infinite 0.6666s;
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    -webkit-animation: 1s blink infinite 0.9999s;
    animation: 1s blink infinite 0.9999s;
}

.flow :is([type="color"], [type="date"], [type="datetime-local"], [type="email"], [type="file"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea):focus {
    border: initial;
    outline: initial;
}
.flow @supports (outline-style: double) {
    :is([type="color"], [type="date"], [type="datetime-local"], [type="email"], [type="file"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea):focus {
        border-width: initial;
        outline-width: initial;
        outline-style: initial;
        outline-offset: initial;
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}