*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

:host {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  position: relative;
}

.duet-indicator {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.duet-indicator-new {
  background: rgb(0, 119, 179);
}
.duet-indicator-change {
  background: rgb(247, 178, 40);
}
.duet-indicator-error {
  background: rgb(185, 16, 74);
}
.duet-indicator-success {
  background: rgb(29, 106, 88);
}

:host(.duet-theme-turva2) .duet-indicator-new {
  background-color: rgb(230, 23, 64);
}