.qr-wrapper {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 100%; /* Fill parent container height */
}

.entry-container {
  display: flex;
  flex-direction: column; /* Stack QR code and logo vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  padding: 20px;
  border: 5px solid #d2b48c; /* Thick light brown border */
  border-radius: 15px; /* Rounded corners */
  background-color: #fff; /* Optional: white background inside the rectangle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
}

.entry-container img {
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}

.entry-container img:last-child {
  margin-bottom: 0; /* Remove margin for the last image (logo) */
}

