    body {
      margin: 0;
      font-family: 'Courier New', Courier, monospace;
      background-color: #fff;
      color: #000;
    }
    .container {
      max-width: 800px;
      margin: 40px auto;
      padding: 40px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    h1 {
      font-size: 24px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 10px;
    }
    .info-block {
      margin-top: 30px;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #f9f9f9;
    }
    .label {
      font-weight: bold;
      margin-bottom: 5px;
    }
    .value {
      font-size: 16px;
      word-break: break-all;
    }
   .qr {
  margin-top: 20px;
  text-align: center;
   }
    .qr img {
  width: 125px;
  height: 125px;
  display: inline-block;
  }



.waiting-section {
  margin-top: 10px;
  text-align: center;
}

.waiting-text {
  font-size: 18px;
  font-family: 'Courier New', Courier, monospace;
  color: #333;
}

.dots::after {
  content: "";
  display: inline-block;
  animation: dots 1.5s infinite steps(4);
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
  100% { content: ""; }
}



.logo-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  width: 100%;
}

.logo-img {
  height: 40px;
  display: block;
  margin-left: 20px; /* базовый отступ слева на мобильных */
}

/* Адаптивное центрирование на больших экранах */
@media (min-width: 768px) {
  .logo-header {
    justify-content: center;
  }

  .logo-img {
    margin-left: -120px; /* сдвигает логотип чуть левее центра */
  }
}

.guarantee-box {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  font-family: 'Courier New', Courier, monospace;
}

.guarantee-box button {
  margin-top: 10px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: inherit;
}