/* UnifyApps Bot Widget - paste before </body> in your skin */
  #unify-bot-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  #unify-bot-frame {
    width: 0;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: width 0.35s cubic-bezier(.4,0,.2,1),
                height 0.35s cubic-bezier(.4,0,.2,1),
                opacity 0.25s;
    opacity: 0;
    background: #fff;
  }
  #unify-bot-frame.open {
    width: 375px;
    height: 550px;
    opacity: 1;
  }
  #unify-bot-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
  }
  #unify-bot-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000000; /* swap to your brand color */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.25); /* rgba(0,0,0,0.25) */
    transition: background 0.2s, transform 0.2s;
  }
  #unify-bot-btn:hover { background: #000; transform: scale(1.09); box-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);}
  #unify-bot-btn svg { width: 28px; height: 28px; fill: white; }
  .unify-icon-close { display: none; }
  #unify-bot-btn.open .unify-icon-chat { display: none; }
  #unify-bot-btn.open .unify-icon-close { display: block; }

.unify-icon-chat {
    position: relative;
    width: 44px;
    height: 21px;
    background-color: #F68026;
    border-radius: 50%;
    transform: rotate(0deg);
}
.unify-icon-chat .swoosh-inner {
    position: absolute;
    width: 44px;
    height: 21px;
    background-color: #000;
    border-radius: 50%;
    top: 2px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unify-icon-chat .swoosh-inner .chat-text {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 13px;
    margin-top: 4px;
    margin-left: 0px;
    line-height: 1;
	transform: rotate(0deg);
}


#unify-bot-frame {
    position: relative;
}
#unify-bot-newwindow {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    color: #fff;
    background: rgba(0,0,0,0.45);
    border-radius: 4px;
    font-size: 14px;
    padding: 2px 5px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}
#unify-bot-newwindow:hover { opacity: 1; }
