#gpt-chatbox {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    border: 1px solid #cccccc;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    background: #dfdfdf;
    display: none;
}

.GPT_tooltip {
    position: absolute;
    background: #007223;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
}

.GPT_tooltip::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 15px;
    border-width: 13px;
    border-style: solid;
    border-color: #007223 transparent transparent transparent;
}

.chatbox_title_toggle {
    background: #ffffff;
    text-align: center;
    padding: 6px;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 800;
    display: inline-block;
    width: 100%;
    line-height: 24px;
    cursor: pointer;
    border: 2px solid #005600;
    color: #005600;
    position: relative;
}
.chatbox_title_toggle img {
    filter: invert(29%) sepia(66%) saturate(1736%) hue-rotate(65deg) brightness(96%) contrast(108%);
}

#gpt-chatbox .typing-message {
    width: 100% !important;
    display: inline-block;
	color: #000;
}

#gpt-chatbox-messages {
    height: 420px;
    overflow-y: auto;
    padding: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #cccccc;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}




#gpt-chatbox-messages::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

#gpt-chatbox-messages::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
    border-radius: 5px; /* Roundness of the track */
}

#gpt-chatbox-messages::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scroll thumb */
    border-radius: 5px; /* Roundness of the scroll thumb */
}

#gpt-chatbox-messages::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scroll thumb when hovered */
}



#gpt-chatbox-messages .user-message,
#gpt-chatbox-messages .chatbot-message {
    padding: 10px 20px;
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 15px;
}

#gpt-chatbox-messages .user-message {
    background-color: #f0f0f0;
    color: #333333;
    align-self: flex-end;
    max-width: 93%;
    float: right;
}

#gpt-chatbox-messages .chatbot-message {
    background-color: #0468d3;
    color: #ffffff;
    max-width: 93%;
    float: left;
}

#gpt-chatbox-form {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

#gpt-chatbox-input {
    flex-grow: 1;
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    font-size: 16px;
}

#gpt-chatbox-form button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: #4094d1;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#gpt-chatbox-form button:hover {
    background-color: #0056b3;
}

#gpt-chatbox-messages a {
    color: #c5ffd1;
}

.chatbox-warning {
    text-align: center;
    margin: 9px 10px;
    color: #000;
    font-size: 11px;
    line-height: 14px;
}

.w-100 {
    width: 100% !important;
    display: inline-block;
}
.gpt-floating-chatbox {
    max-width: 420px;
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 20px;
}