.cip-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;              /* fixed width */
    height: 60px;             /* fixed height */
    background: #0073aa;
    color: #fff;
    font-size: 28px;          /* adjust size of emoji/icon */
    display: flex;            /* center the icon */
    align-items: center;
    justify-content: center;
    border-radius: 50%;       /* makes it perfectly round */
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
    z-index: 9999;
}

.cip-chat-icon:hover {
    background: #005177;
}
