#chatgpt-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #f7f9fc;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    z-index: 9999;
}

#chatgpt-chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #e9eef5;
    color: #333;
}

#chatgpt-chat-form {
    display: block;
    border-top: 1px solid #ccc;
    background-color: #dfe6ed;
}

#chatgpt-chat-form button {
    padding: 8px 12px;
    border: none;
    background-color:  #1fb125;
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    min-height: 45px;
    margin: 0;
    font-weight: 600;
}

.chat-message {
    margin: 8px 0;
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 12px;
}

.chat-message.user {
    background-color:  #1fb125;
    color: #fff;
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
    border-radius: 12px 12px 0 12px;
}

.chat-message.assistant {
    background-color: #dfe6ed;
    color: #333;
    align-self: flex-start;
    border-radius: 12px 12px 12px 0;
}

.chat-message.error {
    background-color: #d9534f;
    color: #fff;
}

#chatgpt-chat-widget .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
}

#chatgpt-user-message {
    width: 100%;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: none;
    border-radius: 0;
    max-height: 300px;
    padding: 8px;
    outline: none;
    background-color: #fff;
    color: #333;
    margin: 0;
    border-top: 1px solid #ccc;
}

#chatgpt-toggle-btn {
    display: inline-block;
    padding: 10px;
    text-align: center;
    background-color:  #1fb125;
    color: #fff;
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 62px;
    margin: 0;
    border-radius: 6px;
    font-weight: 600;
}

.chatbox-title {
    display: inline-block;
    width: 80%;
    text-align: center;
    max-height: 20px;
}

.chatbox-title h3 {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
