.download-feedback {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 40px));
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.24);
  color: #F8FAFC;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.download-feedback--visible {
  opacity: 1;
  transform: translateY(0);
}

.download-feedback__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 118, 110, 0.18);
  color: #5EEAD4;
}

.download-feedback__text {
  min-width: 0;
}

.download-feedback__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.download-feedback__meta {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #CBD5E1;
  word-break: break-word;
}
