.read-aloud-widget {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: min(94vw, 520px);
  padding: 7px;
  color: #172026;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e0e7;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.read-aloud-button,
.read-aloud-select,
.read-aloud-stop {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #172026;
  border-radius: 6px;
  font: 700 12px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.read-aloud-button {
  color: #ffffff;
  background: #172026;
}

.read-aloud-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.read-aloud-stop {
  color: #172026;
  background: #ffffff;
}

.read-aloud-select {
  color: #172026;
  background: #ffffff;
}

.read-aloud-status {
  max-width: 190px;
  overflow: hidden;
  color: #5a6a75;
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .read-aloud-widget {
    right: 8px;
    bottom: 8px;
    left: 8px;
    justify-content: center;
  }

  .read-aloud-status {
    max-width: 42vw;
  }
}

@media print {
  .read-aloud-widget {
    display: none;
  }
}
