  body {
    overflow-x: hidden;
  }

  .scroll-box {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
  }

  .scroll-box::-webkit-scrollbar {
    width: 6px;
  }

  .scroll-box::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 3px;
  }

  .header-with-back {
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем заголовок */
    gap: 1rem;
  }
  .back-button {
    position: absolute;
    left: 1.5rem; /* отступ слева */
    top: 50%;
    transform: translateY(-50%);
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
  }

  .pulse-button {
    animation: pulse 2s infinite;
  }