.date-code-wrapper {
  height: 100%;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  gap: 2rem;
}

.date-code-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 80%;
  background-color: #e6e6e6;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.date-code-label {
  width: 50%;
  border-radius: 1rem;
}

.date-code-wrapper h1 {
  font-size: 4rem;
}

.mobile-scroll-msg {
  display: none;
}

@media (max-width: 768px) {
  .date-code-wrapper {
    margin-top: 100px;
    height: 100%;
    padding-top: 60px;
    padding: 60px 1rem 1rem 1rem;
  }

  .date-code-wrapper h1 {
    font-size: 2.5rem;
  }

  .date-code-container {
    width: 100%;
  }

  .date-code-label {
    width: 100%;
  }

  .date-code-sheet-container {
    width: 100%;
    overflow-x: scroll;
  }

  .mobile-scroll-msg {
    display: block;
    font-style: italic;
  }
}
