.witty-read-aloud {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(23, 32, 27, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 40px rgba(23, 32, 27, .16);
  color: #17201b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.witty-read-aloud[hidden] {
  display: none;
}

.witty-read-aloud__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.witty-read-aloud__button {
  min-height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #176b55;
  border-radius: 6px;
  padding: 8px 11px;
  background: #176b55;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.witty-read-aloud__button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.witty-read-aloud[data-state="loading"] .witty-read-aloud__button::before,
.witty-read-aloud[data-state="playing"] .witty-read-aloud__button::before {
  width: 10px;
  height: 10px;
  border: 0;
  background: currentColor;
}

.witty-read-aloud__status {
  min-width: 0;
  color: #607069;
  font-size: 12px;
  line-height: 1.35;
}

.witty-read-aloud__provider {
  color: #607069;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .witty-read-aloud {
    right: 12px;
    bottom: 12px;
    width: min(230px, calc(100vw - 24px));
  }
}
