.pws-app-usage-counter {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 4px;
  padding: 8px 13px;
  border: 1px solid rgba(17, 83, 145, 0.16);
  border-radius: 999px;
  background: #f7fbff;
  color: #174f82;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 3px 10px rgba(21, 73, 117, 0.07);
}

.pws-app-usage-counter[hidden] {
  display: none !important;
}

.pws-app-usage-counter__dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #57b447;
  box-shadow: 0 0 0 3px rgba(87, 180, 71, 0.15);
}

.pws-app-usage-counter__text {
  min-width: 0;
}

@media (max-width: 480px) {
  .pws-app-usage-counter {
    width: 100%;
    border-radius: 10px;
    font-size: 13px;
  }
}

