.chatbot-container .chatbot-collapse-btn.dashicons.dashicons-format-chat {
    font-family: dashicons;
}
.chatbot-container * {
    font-family: sans-serif;
}
#chat-sajjad {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    height: 450px;
    background-color: #f1f1f1;
    border: 1px solid #f3f3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

#chat-sajjad-header {
    background-color: #f1f1f1;
    color: #000;
    padding: 10px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#chat-sajjad-conversation {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}

#chat-sajjad-input {
    display: flex;
    padding: 10px;
}

#chat-sajjad-message {
    flex-grow: 1;
    border: 1px solid #f3f3;
    border-radius: 3px;
    padding: 5px;
}

#chat-sajjad-submit {
    background-color: black;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 6px 12px;
    margin-left: 5px;
    cursor: pointer;
}

.chat-message {
    margin: 5px;
    padding: 5px;
    max-width: 100%;
    word-wrap: break-word;
}

.user-message {
    text-align: right;
}

.user-text {
    display: inline-block;
    background-color: limegreen;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    border-bottom-right-radius: 0;
    overflow-wrap: anywhere;
}

.bot-message {
    text-align: left;
}

.bot-text {
    display: inline-block;
    background-color: purple;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    overflow-wrap: anywhere;
}

.error-message {
    text-align: center;
}

.error-text {
    color: red;
    font-weight: bold;
}

.message-space {
    height: 10px;
}

.chatbot-collapse-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1.5%;
    right: 2%;
    background-color: yellowgreen;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 15px;
    border-radius: 10%;
}

.chatbot-collapse-btn:hover {
    background-color: #0257b3;    
}

.chatbot-collapsed {
    width: 48px;
    height: 48px;
    background-color: yellowgreen;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

#chatbot-open-btn {
    position: fixed;
    bottom: 5%;
    right: 5%;
    background-color: red;
    border: none;
    cursor: pointer;
    padding: 5px;
    float: right;
}

#chatgpt-open-btn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    background-color: yellowgreen;
    border: none;
    cursor: pointer;
    padding: 15px;
    float: right;
    box-shadow: 2px 4px 15px rgb(102, 92, 143);
    border-radius: 10%;
    z-index: 100;
}

#chatgpt-open-btn:hover {
    background-color: #0257b3;
}

#chatgptTitle.title {
    color: yellow;
    font-size: 30px;
    background-color: #000;
    padding: 20px;
}

.typing-indicator {
    display: inline-flex;
    justify-content: flex-start;
    background-color: #5BC236; 
    border-radius: 12px;
    padding: 5px 10px; 
    border-bottom-left-radius: 0; 
}

.typing-dot {
    margin-right: 3px;
    animation: typing 1s infinite;
    color: #000ff; 
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}