.ticket-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.ticket-container .ticket-header {
  display: block;
  text-align: center;
  background-color: #e6007e;
  color: white;
  padding: 20px;
}
.ticket-container .ticket-header img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}
.ticket-container .ticket-header h1 {
  margin: 0;
  font-size: 24px;
}
.ticket-container .logo-container {
  justify-content: center;
  padding: 20px 0;
  display: none;
}
.ticket-container .logo-container img {
  width: 100px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}
.ticket-container .ticket-details,
.ticket-container .bet-section {
  padding: 10px;
}
.ticket-container .ticket-details table,
.ticket-container .bet-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.ticket-container .ticket-details table th,
.ticket-container .bet-section table th,
.ticket-container .ticket-details table td,
.ticket-container .bet-section table td {
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.ticket-container .ticket-details table th,
.ticket-container .bet-section table th {
  color: #888;
  font-weight: 500;
  width: 45%;
}
.ticket-container .bet-section .bet {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}
.ticket-container .bet-section .bet h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #2c3e50;
}
.ticket-container .bet-section .bet p {
  margin: 5px 0;
  font-size: 14px;
}
.ticket-container .footer {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #aaa;
  background-color: #f9f9f9;
}
.boolean-true {
  color: green;
  font-weight: bold;
}
.boolean-false {
  color: red;
  font-weight: bold;
}
#ticketDetailContent {
  min-height: 400px;
  /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/*# sourceMappingURL=Ticket.css.map */