#llm-td-box{
  position: fixed;
  bottom: 20px;

  /* БЫЛО: left: 20px;  -> СТАЛО: по центру */
  left: 50%;
  transform: translateX(-50%);

  width: 295px;
  max-width: calc(100vw - 20px);

  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  z-index: 999999;
  font-family: Arial, sans-serif;
  display: none;
}

#llm-td-box .llm-td-head{
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.2;
}

#llm-td-box a{
  display: block;
  background: #1c1c1c;
  color: #fff;
  padding: 8px 10px;
  margin-bottom: 6px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
}

#llm-td-box a:hover{ background:#333; }

#llm-td-close{
  position: absolute;
  top: 6px;
  right: 8px;
  cursor: pointer;
  font-size: 14px;
  opacity: .7;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 6px;
  line-height: 1;
}

#llm-td-close:hover{ opacity: 1; }

@media (max-width: 600px){
  #llm-td-box{
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;

    /* на мобиле убираем центрирование, чтобы заняло ширину */
    transform: none;
  }
}