.ybla-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
  padding: 10px 13px;
  border: 1px solid #dbe9df;
  border-radius: 12px;
  background: #f5fbf7;
  color: #173d26;
  max-width: 100%;
  box-sizing: border-box;
  direction: ltr;
}

.ybla-widget[hidden] {
  display: none !important;
}

.ybla-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23a455;
  box-shadow: 0 0 0 0 rgba(35, 164, 85, 0.4);
  animation: yblaPulse 1.8s infinite;
  flex: 0 0 auto;
}

.ybla-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.ybla-copy strong {
  font-size: 14px;
  font-weight: 700;
  unicode-bidi: plaintext;
}

.ybla-copy small {
  margin-top: 2px;
  font-size: 12px;
  color: #56705f;
}

#ybla-count {
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: isolate;
}

@keyframes yblaPulse {
  0% { box-shadow: 0 0 0 0 rgba(35, 164, 85, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(35, 164, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(35, 164, 85, 0); }
}

@media (max-width: 640px) {
  .ybla-widget {
    width: 100%;
    padding: 11px 12px;
    border-radius: 11px;
  }

  .ybla-copy strong {
    font-size: 14px;
  }

  .ybla-copy small {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ybla-dot { animation: none; }
}
