#nameDiv {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #0067B3;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
  font-family: Arial, sans-serif;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: all .6s ease;
  transform: translateX(-200%);
  box-sizing: border-box;
}

.popup-text {
  font-size: 14px;
  line-height: 1.35;
}

.minutes-row {
  opacity: 0.95;
}

.verified-inline {
  margin-left: 8px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.checkmark {
  background: #ffffff;
  color: #0067B3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
  #nameDiv {
    bottom: 16px;
    left: 16px;
    max-width: 92%;
    font-size: 13px;
    transform: translateY(120%);
  }

  .popup-text,
  .verified-inline {
    font-size: 13px;
  }
}
