/* OYICF floating chat badge */
.oyicf-float{
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 999999;
}
.oyicf-float-btn{
  appearance:none; border:0; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 9999px;
  font-size: 14px; line-height: 1; font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 40%, #000000 100%);
  box-shadow: 0 8px 22px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  opacity: .94;
}
.oyicf-float-btn:hover{ transform: translateY(-1px); opacity: 1; box-shadow: 0 10px 26px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08); }
.oyicf-float-btn:active{ transform: translateY(0); }

/* Small screens: push up a bit */
@media (max-width: 640px){
  .oyicf-float{ left: 12px; bottom: 16px; }
  .oyicf-float-btn{ padding: 10px 12px; font-size: 13px; }
}
