
#fmjgh-chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 480px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}


#fmjgh-chat-header {
    background-color: #214fcccb;
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}


#fmjgh-chat-box {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
}


.user-msg, .ai-msg {
    padding: 10px 14px;
    margin: 8px 0;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}

.user-msg {
    background-color: #e2e2e2;
    color: #333;
    border-radius: 15px 15px 5px 15px;
    align-self: flex-end;
}

.ai-msg {
    background-color: #214fcccb;
    color: white;
    border-radius: 15px 15px 15px 5px;
    align-self: flex-start;
}


#fmjgh-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
}

#fmjgh-user-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

#fmjgh-send-btn {
    background-color: #214fcccb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;

    
    font-size: 20px;


}


#fmjgh-chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background-color: transparent;
    border-radius: 50%;
    cursor: move;

    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;   
    margin: 0 !important;    
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10001;
    transition: transform 0.2s ease;
    overflow: hidden;
}


#fmjgh-chat-launcher img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;

    
    
    object-position: 58% center !important;

    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    pointer-events: none;
    -webkit-user-drag: none;
}

#fmjgh-chat-launcher:hover { transform: scale(1.05); }