:host {
  line-height: initial;
  font-family: var(--dyte-font-family, sans-serif);

  font-feature-settings: normal;
  font-variation-settings: normal;
}

p {
  margin: var(--dyte-space-0, 0px);
  padding: var(--dyte-space-0, 0px);
}


:host {
  position: relative;
  display: block;
}

/* useful for removing from layouts that may have gap */
:host([data-hidden]) {
  display: none;
}

.unread-count {
  position: absolute;
  right: var(--dyte-space-3, 12px);
  box-sizing: border-box;
  padding: var(--dyte-space-0\.5, 2px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-brand-500, 33 96 253) / var(--tw-bg-opacity));
  font-size: 12px;
  color: rgb(var(--dyte-colors-text-on-brand-1000, var(--dyte-colors-text-1000, 255 255 255)));
  display: flex;
  height: var(--dyte-space-5, 20px);
  min-width: var(--dyte-space-5, 20px);
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  z-index: 1;
}

.unread-count-dot {
  position: absolute;
  right: var(--dyte-space-3, 12px);
  z-index: 10;
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-brand-500, 33 96 253) / var(--tw-bg-opacity));
  border-radius: 50%;
  display: flex;
  height: var(--dyte-space-4, 16px);
  width: var(--dyte-space-4, 16px);
  align-items: center;
  justify-content: center;
}

:host([variant='horizontal']) .unread-count {
  right: var(--dyte-space-4, 16px);
  top: auto;
}
