/* Add custom CSS styles below */ 

#liveVisitorsWidget {
    position: fixed;
    right: 15px;
    bottom: 110px;
    z-index: 999999;
    cursor: grab;
}

.lvw-content {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    animation: lvwFade 0.6s ease;
    position: relative;
}

.lvw-icon {
    font-size: 16px;
}

.lvw-text {
    font-weight: bold;
}

.lvw-close {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4d4f;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
}

@keyframes lvwFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

















#abiora-eid-audio-widget {
  position: fixed;
  right: 14px;
  top: 42%;
  z-index: 999999;
  background: linear-gradient(135deg, #0057d9, #00a6ff);
  color: #fff;
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  cursor: grab;
  user-select: none;
  max-width: 230px;
  direction: rtl;
}

#abiora-eid-audio-widget.closed {
  display: none;
}

#abiora-eid-audio-text {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

#abiora-eid-play,
#abiora-eid-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

#abiora-eid-close {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 480px) {
  #abiora-eid-audio-widget {
    right: 10px;
    top: 38%;
    max-width: 200px;
  }

  #abiora-eid-audio-text {
    font-size: 12px;
  }
}