.pump-demo-chat-label {
  margin: 0 0 12px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 227, 150, 0.2);
  border-radius: 8px;
  color: #00e396;
  background: rgba(0, 227, 150, 0.06);
  font-size: 11px;
  text-align: center;
}

a#tv-attr-logo {
  --fill: #131722;
  --stroke: #fff;
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 35px;
  height: 19px;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 3;
}

a#tv-attr-logo[data-dark] {
  --fill: #d1d4dc;
  --stroke: #131722;
}

.pump-chat-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  animation: pump-chat-in 0.28s ease-out both;
}

.pump-chat-message-initial {
  animation: none;
}

.pump-chat-avatar {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 9px;
  font-weight: 800;
  overflow: hidden;
}

.pump-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-lightweight-charts[data-sparse-chart="true"]::after {
  content: "Waiting for the next live trades";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  transform: translate(-50%, -50%);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #8b8c92;
  background: rgba(24, 25, 27, 0.9);
  font-size: 12px;
  pointer-events: none;
}

.pump-chat-name {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
}
.pump-chat-text {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.35;
}

@keyframes pump-chat-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
