
#simplefaqchat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #e36829;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9998;
}
#simplefaqchat-toggle img {
    width: 30px;
    height: 30px;
}
#simplefaqchat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ddd;
}
#simplefaqchat-header {
    background: #e36829;
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}
#simplefaqchat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
#simplefaqchat-messages {
    padding: 10px;
    max-height: 320px;
    overflow-y: auto;
    background: #f9f9f9;
}
#simplefaqchat-messages .bot, #simplefaqchat-messages .user {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
#simplefaqchat-messages .bot img, 
#simplefaqchat-messages .user img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border-radius: 50%;
}
#simplefaqchat-messages .user {
    justify-content: flex-end;
}
#simplefaqchat-messages .user .bubble {
    background: #e36829;
    color: white;
    border-radius: 18px;
    padding: 10px 14px;
    max-width: 70%;
}
#simplefaqchat-messages .bot .bubble {
    background: #eeeeee;
    color: #333;
    border-radius: 18px;
    padding: 10px 14px;
    max-width: 70%;
}
#simplefaqchat-input {
    border: none;
    border-top: 1px solid #ccc;
    padding: 12px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}
