input{
    font-family: 'Kanit', sans-serif;
}
#eilik {
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
    padding-bottom: 2px;
}
#body {
    display: flex;
    justify-content: center;
    padding: 0;
    width: 300px;
    height: 120px;
    align-items: start;
    background: url('../img/body.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#face {
    position: relative;
    background-color: #000;
    width: 30px;
    height: 20px;
    border-radius: 36%;
    margin-top: 7%;
}
#left-eye, #right-eye {
    width: 5px;
    height: 9px;
    background-color: #25f4fe;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -4px;
}
#left-eye {
  left: 7px;
}
#right-eye {
  right: 7px;
}
#mouth {
  width: 17px;
  height: 1.2px;
  background-color: #25f4fe;
  border-radius: 5px;
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.yp_search{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}
input.yp_search_box {
    border: solid #ddd 2px;
    border-radius: 50px;
    height: 43px;
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #222;
    outline: none;
}
.voice-btn {
    display: flex;
    background: #71c7be;
    color: #FFF;
    align-items: center;
    justify-content: center;
    height: 35px;
    border-radius: 50px;
    width: 35px;
}
span.voice-btn.record_button {
    background: #f01a1a;
}
#yp_voice_search {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    right: 55px;
    min-width: 35px;
    bottom: 10px;
    z-index: 1;
}
.voice-btn svg {
    stroke: #FFF;
    width: 22px;
    height: 22px;
}
.wi-title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.with-in {
    flex-direction: column;
}
.chat-logs {
    margin: 0 !important;
    margin-top: -5px !important;
    padding: 0;
    padding-top: 5px;
    height: calc(100% - 190px);
    position: relative;
    width: calc(100% - 10px) !important;
    margin-left: 7px !important;
}
/* .chat-logs:before {
    content: '';
    width: 100%;
    height: 20px;
    display: block;
    background: #ffffff;
    background: -webkit-linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 255 255 / 71%) 100%);
background: -moz-linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 255 255 / 71%) 100%);
background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 255 255 / 71%) 100%);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
} */
.chat-box-header {
  height: 40px;
  font-size: 17px;
  padding-top: 9px;
}
.chat-box-body {
    height: calc(100% - 90px);
}

.chat-with{
    padding: 5px;
}
.chat-with .with-in{
    gap: 2px;
}



.clear-history-btn {
    background: #0c2334;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
    border-radius: 5px;
}

.clear-history-btn svg {
  stroke: #FFF; /* Adjust color to match your theme */
  width: 15px;
  height: 15px;
}

.clear-history-btn:hover svg {
  stroke: #ff5555; /* Red hover effect to indicate deletion */
}