

html,body{
    background:#223039;
    display: flex;
    justify-content: center;
    font-family: "Lexend", serif;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #3e4f58;
    transition: 0.2s;
    border-radius: 10px;
    z-index: 5;
}

*{
    font-family: "Lexend", serif !important;
    vertical-align: sub;
}

.container{
    width:calc(90vw - 250px);
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    position: relative;
    height:calc(100vh - 110px);
    margin-top: 78px;
    margin-left: 250px;
    box-sizing: border-box;
    align-items: center;
}

.welcome{
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    top:100px;
    left:calc(50% + 125px);
    transform: translateX(-50%);
    z-index: 5;
    overflow: hidden;
    max-height: 800px;
}

.error_page_logo{
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    top:40%;
    left:50%;
    transform: translateX(-50%);
    z-index: 5;
}

.title{
    display: flex;
    flex-direction: row;
    gap:16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    white-space: nowrap;
}

.sub_title{
    font-size: 20px;
    color:#D9D8D8;
    margin-bottom: 8px;
}

h1{
    color:#f0f0f0;
    font-size: 32px;
    margin:0;

}


.message-container{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
    gap:32px;
    max-height: 80%;
    overflow-y: scroll;
    padding:0px 8px;
}

.lower_buttons{
    position: absolute;
    bottom: 16px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap:8px;
    background-color: #3e4f58;
    padding: 8px 12px;
    border-radius: 32px;
}

.bottom_text{
    color:#c0c0c0;
    font-size: 12px;
    text-align: center;
    position: absolute;
    bottom: -16px;
    width: 80%;
}


.bottom_text > .speed{
    float: right;
    display: none;
}

.bottom_text_local{
    position: absolute;
    left:50%;
    bottom:0px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.time_speed{
    float: left;
    display: none;
}

.lower_buttons > .buttons{
    width:100%;
    display: flex;
    gap:8px;
    align-items: center;
    justify-content: center;
}

.lower_buttons > .buttons > button:not(.thinkingEnable){
    min-width:32px !important;
    padding: 0px !important;
    height:32px;
    border-radius: 20px;
    border:none;
    background-color: #3e4f58;
    color:#f0f0f0;
    display: flex;
    gap:8px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: .2s background-color;
    font-size:20px;
}



.send_button{
    border:none !important;
    background:#fff !important;
}

.send_button > svg{
    fill: #3e4f58;
    height: 18px;
    width: 18px;
}

.send_button > svg > path{
    fill: #3e4f58;
}

.send_button:disabled{
    background:#686868 !important;
    cursor: not-allowed !important;

}

.lower_buttons > .buttons> input{
    width:100%;
    border-radius: 20px;
    border:none;
    background-color: #3e4f58;
    color:#edf8ff;
    padding:8px 15px;
    height:40px;
    box-sizing: border-box;
    font-size: 16px;
}

.lower_buttons > .buttons> input::placeholder{
    color:#E4E4E4;
}

.lower_buttons > .buttons> input:focus{
    outline:none;
}

.message{
    color:#f0f0f0;
    word-wrap: break-word;
    position: relative;

}

.user_icon  svg{
    width:16px;
    height:16px;
    fill: #5593F0;
}

.user_icon svg > path{
    fill: #5593F0;
}

.message > div{
    display: flex;
    gap:16px;
    align-items: center;
    margin-bottom: 8px;
}

.message > div > span{
    background-color: #2A3642;
    width:24px;
    height:24px;
    font-size: 14px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    color:#55B8F0;
    background-color: #2a3042;
}

.modal > svg{
    width:16px;
    height:16px;
    fill: #f0b255;
}

.modal > svg > path{
    fill: #f0b255;
}

.user_icon{
    width: 14px;
    height:14px;
    fill: #55B8F0;
}

.modal{
    color: #f0b255 !important;
    background-color: #42412A !important;
}



.message > div > type{
    font-weight: 600;
}

.message  > p{
    margin:0;
    margin-left:40px;
    line-height: 1.5;
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.message  > p:has(img){
    flex-direction: row;
}

@keyframes examples_load {
    from{
        opacity:0;
        transform: translateY(20px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

.examples{
    height:40px;
    position: absolute;
    bottom: 64px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap:8px;
    animation: examples_load .6s;
}

.examples > button{
    width:100%;
    background-color: #3e4f58;
    border:none;
    border-radius: 8px;
    display: flex;
    gap:16px;
    justify-content: center;
    align-items: center;
    color:#f0f0f0;
    cursor: pointer;
    transition: .2s background-color;
    font-size: 14px;

}

.examples > button > img{
    height: 24px;
    width: 24px;
}

.examples > button:hover{
    background-color: #333539;
}

.examples > :first-child{
    border-radius:20px 8px 8px 20px;
}

.examples > :last-child{
    border-radius:8px 20px 20px 8px;
}

.logo{
    position: absolute;
    top:32px;
    left:32px;
    display: none;
    gap:8px;
    color: #D9D8D8;
    align-items: center;
    font-size: 14px;
}

.image_loading{
    background-color: #3e4f58;
    display: block;
    width: 272px;
    border-radius: 16px;
    padding:16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:8px;
    color:#f0f0f0;
    margin-left: 30px;
    margin-top: 16px;
}


@keyframes slide-in {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


  @keyframes slideGradient {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: -100% 0%;
    }
  }
  
@keyframes loading_dots {
    from{
        transform: translateY(4px);
    }
    50%{
        transform: translateY(-4px);
    }
    to{
        transform: translateY(4px);
    }
}




.search{
    margin-left: 40px;
    display: flex;
    gap:8px;
    align-items: center;
    font-size: 14px;
    background: linear-gradient(to right, #8fadff, #00eafa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search > svg{
    width: 16px;
    height: 16px;
}

.search > svg > path{
    width: 14px;
    height: 14px;
    fill: #8fadff;
}

.search_URL{
    background: #27282B;
    border: 1px solid #333539;
    color: #f0f0f0;
    padding: 4px 8px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    display: none;
    font-size: 12px;
    border-radius: 14px;
    margin-left: 40px;
    cursor: pointer;
    transition: .2s border-color;
}

.search_URL:hover{
    border-color: #397BE1;
}

.search_URL > img{
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.message pre{
    background:#3e4f58;
    border-radius: 16px;
    padding:16px;
}

.message pre:focus{
    outline: none;
}


.side_bar_tools > tool > .powered{
    color:#9F9F9F;
    font-size: 10px;
    text-align: right;
    margin-top:16px;
}

.pre_prompts{
    display: flex;
    gap:16px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-height: 320px;
    width: 616px;
    flex-direction: column;
}

.pre_prompts > div{
    background-color: #3e4f58;
    border-radius: 32px;
    padding:8px;
    display: flex;
    height:152px;
    width: 300px;
    cursor: pointer;
    flex-direction: row;
    color:#f0f0f0;
    gap:14px;
    box-sizing: border-box;
}

.pre_prompts > div > div{
    display: flex;
    flex-direction: column;
    gap:8px;
    margin: 8px;
    margin-top:auto;
}

.pre_prompts > div > div > button{
    display: flex;
    max-width: fit-content;
    padding:8px;
    color:#4A4A4A;
    border:none;
    border-radius: 16px; 
    font-size: 14px;
}

.local_news{
    display: flex;
    flex-direction: column !important;
}

.local_news > div > p:not(.prompt_type){
    font-size: 20px;
}

.local_news > div{
    margin-top:auto;
    display: flex;
    flex-direction: column;
    gap:8px;
    margin-bottom: 8px;
}

.prompt_type{
    color:#9F9F9F;
    font-size: 12px !important;
}

.pre_prompts > div > div > p{
    margin:0px;
    font-size: 14px;
}

.pre_prompts > div:not(.local_news) > img{
    height:136px;
    width: 136px;
}

.local_news > img{
    height:160px;
    width:100%;
}


.pre_prompts > div > p{
    margin:0px;
    font-size: 14px;
}

.pre_prompts svg{
    width: 24px;
    height: 24px;
}





table{
    border: 1px solid #494c4f;
    padding: 08px;
    border-radius: 16px;
    margin-top:8px;
}

.ai_guide{
    width:700px;
    padding: 0px;
    border:none;
    border-radius: 32px;
    overflow: hidden;
    background-color: #282D33;
    animation: view_image_load .4s;
    padding:32px;
    color:#f0f0f0;
}

.ai_guide a{
    color: #b5c3ff;
    cursor: pointer;
}

.ai_guide a:hover{
    color: #9caeff;
}

.ai_guide a:focus{
    outline: none;
    color: #9caeff;
}

.ai_guide h2{
    font-size: 24px;
    margin:0;

}

.ai_guide p{
    margin:4px;
    color: #d8d8d8;
    font-size: 14px;
}

.ai_guide li{
    margin:6px;
    color: #f0f0f0;
    font-size: 15px;
}

.ai_guide:focus{
    outline: none;
}

.ai_guide::backdrop{
    background-color: #000000bd;
    transition: .4;
}

@media screen and (max-width:900px){
    .pre_prompts{
        display: none;
    }
}

@media screen and (max-width:700px) {
    .bottom_text_local{
        display: none;
    }
}

.position{
    margin-left: 40px;
    display: flex;
    gap:8px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.position > svg{
    width: 18px;
    height: 18px;
}

.position > svg > path{
    width: 16px;
    height: 16px;
    fill: #8fadff;
}

@keyframes genning {
    0%{transform: scale(1.2) rotate(10deg);}
    50%{transform: scale(1) rotate(-10deg);}
    100%{transform: scale(1.2) rotate(10deg);}
}

.searching{
    color:#82b4d1 !important;
}

.searching > svg > path{
    fill: #82b4d1 !important;
}

.searching > svg{
    width: 18px;
    height: 18px;
}

.genning{
    color:#CF82D1 !important;
}

.genning > svg > path{
    fill: #CF82D1 !important;
}

.genning > svg{
    width: 18px;
    height: 18px;
}

.thinking{
    color:#82d1d1 !important;
}

.thinking > svg > path{
    fill: #82d1d1 !important;
}

.thinking > svg{
    width: 18px;
    height: 18px;
    animation: genning 1s infinite;
}

.done{
    color:#84D182 !important;
}

.done > svg> path{
    fill: #84D182 !important;
}

.done > svg{
    width: 18px;
    height: 18px;
}

.center_container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:16px;
}

.voice_container{
    padding:32px;
    border-radius: 100px;
    border:4px solid #333539;
    background-color: #3e4f58;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    height:100px;
}

.voice_container > svg{
    height: 64px;
    width: 64px;
}

.voice_container > svg > path{
    fill: #333539;
    height: 64px;
    width: 64px;
}

.voice_info_text{
    font-size: 20px;
    color:#363636;
    font-weight: 900;
}

.voice_chat{
    background-color: #3e4f58;
    display: flex;
    position: absolute;
    padding:5px 13px;
    border-radius: 20px;
    color: #f0f0f0;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap:8px;
    top:16px;
    right:16px;
    cursor: pointer;
}

.voice_chat:hover{
    background-color: #333539;
}

.voice_chat > svg{
    width: 18px;
    height: 18px;
}

.voice_chat > svg > path{
    fill: #f0f0f0;
}

.phase{
    position: absolute;
    bottom: 128px;
    left: 50%;
    transform: translateX(-50%);
    color: #ABABAB;
    font-size: 20px;
    transition: .5s opacity;
}

.phase > span{
    color:#f0f0f0;
}

.current_word{
    font-size: 24px;
    color: #f0f0f0;
    height:50px;
    text-align: center;
    font-weight: 500;
    transition: .5s opacity;
}

.file_message{
    width: auto;
    background: #3e4f58;
    display: inline-flex;
    gap:8px;
    align-items: center;
    padding: 8px 16px 8px 8px;
    border-radius: 25px;
    margin-top: 8px;
}

.file_message > .file_icon{
    height:24px;
    width: 24px;
    background: #CE5F87;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.file_message > .file_icon > svg{
    width: 16px;
    height: 16px;
}

.file_message > .file_text{
    display: flex;
    justify-content: center;
}

.file_message > .file_text > strong{
    font-size: 12px;
    color:#f0f0f0;
    font-weight: normal;
}

.file_message{
    margin-left:40px;
}

.file_holding{
    width:100%;
    height:64px;
    background-color: #3e4f58;
    border-radius: 16px;
    display: none;
}

.file_holding > a{
    background-color: #3b3c3d;
    display: flex;
    color: #f0f0f0;
    height: 48px;
    width:200px;
    margin: 8px;
    border-radius: 32px;
    align-items: center;
    gap:8px;
    padding:0px 8px
}

.file_holding > a > .file_icon{
    width: 32px;
    height: 32px;
    fill: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CE5F87;
    border-radius: 16px;
}

.file_holding > a > .file_icon > svg{
    width: 16px;
    height: 16px;

}

.file_holding > a > .file_text{
    display: flex;
    flex-direction: column;
    font-size: 12px;
    justify-content: space-between;
}

.file_holding > a > .file_text > span{
    color: #ccc;
}

.file_holding > a > .file_text > strong{
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat_history{
    position: fixed;
    top:0;
    left:0;
    background-color: #3e4f58;
    width:250px;
    height:100vh;
    padding:16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:8px
}

.chat_history:hover .past_chats{
    display: flex;
}



.history_title{
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    height:40px;

    border-radius: 32px;

}

.history_title > button{
    background:none;
    cursor: pointer;
    border:none;
    margin-left: auto;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    padding:4px 9px;
    transition: .2s filter;
    width: 100%;
    height:36px;
    justify-content: center;
    transition: .2s;
}


.history_title > button:active{
    filter: brightness(90%);
    scale: .99;
}

.history_title > button:hover{
    filter: brightness(90%);
}

.history_title > strong{
    display: flex;
    align-items: center;
    gap:8px;
}

.history_title > button > svg{
    width: 16px;
    height: 16px;
}

.history_title > button > svg > path{
    fill: #000;
}

.past_chats{
    display: flex;
    flex-direction: column-reverse;
    gap:4px;
}

.history_element{
    color:#C3C3C3;
    padding:9px 0px;
    font-size: 14px;
    display: flex;
    cursor: pointer;
    border-radius: 8px;
    padding-left:16px;
    padding-right: 8px;
    box-sizing: border-box;
}

.current_chat{
    background: #4e626d;
    color: #fff;

}

.history_element:not(.current_chat):hover{
    background: #2a2b2d;
}

.history_element > span{
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding:4px 0px;
    box-sizing: border-box;
}

.history_element:hover button{
    display: flex;
}

.current_chat > button{
    display: flex !important;
}

.history_element > button{
    background:none;
    border:none;
    cursor: pointer;
    color:#f0f0f0;
    display: none;
    align-items: center;
    gap:8px;
    margin-left: auto;
}
.history_element > button > svg{
    width: 16px;
    height: 16px;
}

.history_element > button > svg > path{
    fill: #f0f0f0;
}

.history_element > button:hover > svg > path{
    fill: #ffb7b7;
}

.clear_chats{
    display: flex;
    align-items: center;
    gap:8px;
    background-color: #4e626d;
    padding: 8px;
    color: #f0f0f0;
    border:none;
    border-radius: 8px;
    margin-top: auto;
    font-size: 16px;
    cursor: pointer;
}

.clear_chats > svg{
    width: 20px;
    height: 20px;
}

.clear_chats > svg > path{
    fill: #f0f0f0;
}

.clear_chats:hover{
    background-color: #42454A;
}

.saved_chats{
    margin: 0px;
    margin-bottom: 8px;
    font-size: 12px;
    color:#999999;
    margin-top:8px
}

.sidebar_buttons{
    display: flex;
    flex-direction: row;
    gap:8px;
    margin-top: auto;
    width: 100%;
}

.sidebar_buttons > button, .sidebar_buttons > a{
    width: 100%;
    height:32px;
    background-color: #4e626d;
    border:none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar_buttons > button > svg, .sidebar_buttons > a > svg{
    width: 16px;
    height: 16px;
}

.choseModelContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 200;
    flex-direction: column;
    top:8px;
    cursor: pointer;
}

.choseModelHover{
    background-color: #212121;
    width: 150px;
    height: 6px;
    box-sizing: border-box;
    border-radius: 40px;
    cursor: pointer;
    z-index: 200;
    top:8px;
    transition: .2s width ease, .2s height ease, .2s background-color ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8px;
}

.choseModelHover:hover{
    width: 435px;
    height: 45px;
    background-color: #212121;
}

@keyframes choseModelLoadButton {
    0%{
        opacity: 0;
    }
    40%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.choseModelHover:hover button{
    animation: choseModelLoadButton .4s forwards;
}


.choseModelHover > button{
    opacity: 0;
    display: flex;
    padding:5px 9px;
    border-radius: 20px;
    border:none;
    font-size: 14px;
    display: flex;
    gap:8px;
    align-items: center;
    justify-content: center;
    background-color: #333539;
    color: #f0f0f0;
    cursor: pointer;
}

.choseModelHover > button > svg{
    width: 16px;
    height: 16px;
}


.choseModel{
    background-color: #ccc;
    width: 500px;
    height: 40px;
    display: none;
    margin:8px;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
}

.wanning_container{
    position: absolute;
    bottom: 32px;
    width: 450px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    align-items: center;
}

.wanning_container > .title{
    color:#fff;
    margin: 0px;
}

.wanning_container > p{
    font-size: 12px;
    text-align: center;
    color: #C2C2C2;
    margin:0px;
}

.wanning_container > a{
    display: flex;
    padding: 8px 13px;
    border-radius: 8px;
    border:none;
    cursor: pointer;
    margin-top:8px;
    transition: .2s filter;
}

.wanning_container > a:hover{
    filter: brightness(90%);
}

.error_button{
    background-color: #D18282;
}

.wanning_button{
    background-color: #D1AD82;
}

.download_bar{
    width:70%;
    max-width: 400px;
    background:#323538;
    height:4px;
    border-radius: 4px;
    overflow: hidden;
    margin-top:16px;
    display: none;
}

.download_bar > span{
    width: 50%;
    height: 100%;
    background-color: #D1AD82;
    display: block;
    border-radius: 8px;
}

.pastChats{
    display: none !important;
    width: 100%;
    height: 152px;
    background-color: #3e4f58;
    margin-top:16px;
    border-radius: 32px;
    display: flex;
    gap: 8px;
    padding: 8px;
    box-sizing: border-box;
}

.pastChats:hover{
    transform: translateY(-320px);
    height: 900px;
    margin-top: 0px;
}

.pinned_chats{
    display: flex;
    gap: 8px;
    width: 100%;
    height:136px;
}

.pastChats > .pinned_chats > span{
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.pastChats> .pinned_chats > span > img{
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.newsContainer{
    width: calc(100% - 40px);
    margin-left: 40px;
}

.newsReports{
    overflow-x: scroll;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
    text-decoration: none !important;
    box-sizing: border-box;
    padding-bottom: 8px;
    margin-top: 16px;
}

.newsContainerTitle{
    color: #f0f0f0;
    font-size: 14px;
    margin: 0px;
    display: flex;
    gap:8px;
}

.newsContainerTitle > span{
    background-color: #5D7A8A;
    color: #E7F6FF;
    font-weight: normal;
    padding:2px 7px;
    font-size: 11px;
    border-radius: 4px;
}



.newsReports > a{
    background-color: #3e4f58;
    border-radius: 16px;
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none !important;
    height: 200px;
    gap:8px;
}

.newsReports > a > img{
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.newsReports > a > p{
    font-size: 14px;
    color: #f0f0f0 !important;
    margin: 8px;
    text-decoration: none !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

a {
    text-decoration: none;
}

.searchReports{
    overflow-x: scroll;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
    text-decoration: none !important;
    box-sizing: border-box;
    padding-bottom: 8px;
    margin-top: 16px;
}

.searchContainerTitle{
    color: #f0f0f0;
    font-size: 14px;
    margin: 0px;
    display: flex;
    gap:8px;
}

.searchContainerTitle > span{
    background-color: #5D7A8A;
    color: #E7F6FF;
    font-weight: normal;
    padding:2px 7px;
    font-size: 11px;
    border-radius: 4px;
}

.searchContainer{
    width: calc(100% - 40px);
    margin-left: 40px;
}

.searchReports > a{
    background-color: #3e4f58;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none !important;
    gap:8px;
    padding: 7px 13px;
}

.searchReports > a > p{
    font-size: 14px;
    color: #f0f0f0 !important;
    text-decoration: none !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin:0px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.thinkingEnable{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height:32px;
    border:none;
    border-radius: 16px;
    padding:0px 12px;
    font-size: 14px;
    cursor: pointer;
    border:1px solid #85C3EB;
    color: #85C3EB;
}

.thinkingEnable > span{
    color: #85C3EB;
}

.thinkingEnable > svg{
    width: 20px;
    height: 20px;
}

.thinkingEnable > svg > path{
    fill: #85C3EB;
}

.thinkingEnabledActive{
    background-color: #85C3EB;
    color: #223039;
}

.thinkingEnabledActive > svg > path{
    fill: #223039;
}

.thinkingEnabledActive > span{
    color: #223039;
}