@media screen {
  .app-version {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 11px 5px 0;
    padding-top: 10px;
    color: #a1a4bc;
    border-top: 1px solid rgba(90, 44, 245, 0.1);
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }

  .app-version b {
    color: #5a2cf5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  @media (max-width: 820px) {
    .app-version {
      grid-column: 1 / -1;
      justify-content: flex-start;
      width: max-content;
      margin: 0 2px;
      padding: 0;
      border: 0;
      font-size: 8px;
    }

    .app-version b {
      font-size: 9px;
    }
  }
}

@media print {
  .app-version {
    display: none;
  }
}
