.rap-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999999;
  width: min(360px, calc(100vw - 40px));
  background: #fff;
  color: #18202a;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  font-family: Inter, system-ui, sans-serif;
}
.rap-popup.is-visible { opacity: 1; transform: translateY(0); }
.rap-popup__icon {
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 50%; display: grid; place-items: center;
  background: #eef8f1; color: #208a49; font-weight: 700;
}
.rap-popup__text { min-width: 0; line-height: 1.4; font-size: 13px; }
.rap-popup__name { font-weight: 700; }
.rap-popup__time { display:block; margin-top: 3px; color: #77808a; font-size: 11px; }
.rap-popup__close {
  border: 0; background: transparent; padding: 0; margin-left: auto;
  color: #89919a; cursor: pointer; font-size: 18px; line-height: 1;
}
@media (max-width: 600px) {
  .rap-popup { left: 12px; bottom: 12px; width: calc(100vw - 24px); }
}
