.welcomeModal {
    display: none;
    width: 100%;
    height: 100dvh; /* Modern, adjusts to visible height */
    height: 100vh;  /* Fallback for older browsers */
    position: fixed;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
  }

  .welcomeBox {
    display: flex;
    flex-direction: column;
    text-align: start;
    height: fit-content;
    width: 100%;
    position: relative;
    background-color: #1a1a1a;
    border: 2px solid #232323;
    max-width: 27rem;
    border-radius: 24px;
    padding: 2rem;
  }

  @media (max-width:450px) {
    .welcomeBox {
      max-width: 95dvw;
      max-height: 70vh;
    }
    .autooverflow {
      overflow-y: scroll;
    }
  }

  .welcomeBox>div>h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .welcomeBox>div>h6 {
    color: #FF4D01;
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 0;

  }

  .welcomeBox>div>p,
  .welcomeBox>div>ul {
    font-size: 14px;
  }

  .welcomeBox>div>span {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
  }

  .welcomeBox #closeWelcomeModal img {
    width: 18px;
    height: 18px;
  }