@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.layoutTicket {
  font-family: "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(103.24deg, #0ab39c, #0f5682, #0766a2, #09c0a8);
  background-size: 200% 200%;
  animation: moveBackground 30s linear infinite;
  margin: 0;
}

.ticketcontainer {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.sidetext {
  background: #14679a;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 10px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sideline {
  width: 10px;
  background: #14679a;
}

.ticket-content {
  padding: 20px;
  flex: 1;
}

.ticketheader {
  background: #14679a;
  color: #fff;
  text-align: center;
  padding: 4px;
  margin: 8px 10px 0px 20px;
  border-radius: 10px 10px 0px 0px !important;
}

.ticketbody {
  padding: 20px 0;
  text-align: center;
}

.ticketbody p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

.transactionid {
  font-weight: bold;
  color: #e74c3c;
  font-size: 24px;
  letter-spacing: 1px;
}

.ticketfooter {
  /* background: #f0f0f0; */
  text-align: center;
  position: relative;
  bottom: -50px !important;
  padding: 10px;
  border-bottom-right-radius: 10px;
  border-top: 2px dotted #14679a;
}

.ticketfooter p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.downloadbutton {
  margin: 20px 0;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0bb264;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.downloadbutton:hover {
  background-color: #34495e;
}
