/* public/assets/test/css/chat-widget.css */

#fm_chat_widget {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
}

.fm-chat-toggle {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.fm-chat-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.28);
}

.fm-chat-toggle__icon {
    font-size: 26px;
}
