.signout-button {
  cursor: pointer;
}

/* Tickets Page Specific Styles */
.tickets-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
}

.section-title {
  font-family: "Anybody", sans-serif;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.tickets-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.welcome-message {
  font-size: 1.5rem;
  text-align: center;
  color: #d9d9d9;
  font-family: "Space Mono", monospace;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
}

.tickets-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.ticket-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.1s ease;
  position: relative;
}

.ticket-card:hover {
  transform: translateY(-5px);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-title {
  font-family: "Anybody", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.ticket-stock {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: #d9d9d9;
}

.ticket-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 8px;
}

.ticket-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #d9d9d9;
}

.buy-button {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #2c2c2c;
  font-family: "Helvetica Now Text", sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.buy-button:hover {
  background-color: #f0f0f0;
}

.buy-button:disabled {
  background-color: #555555;
  color: #a0a0a0;
  cursor: not-allowed;
}

.my-tickets-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.my-tickets-container {
  display: flex;
  max-width: 90vw;
  flex-wrap: wrap;
  /* align-items: center; */
  justify-content: center;
  gap: 20px;
}

.purchased-ticket-card {
  display: flex;
  flex-direction: column;
  background: rgba(15, 113, 135, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(15, 113, 135, 0.5);
  position: relative;
}

.purchased-ticket-card::before {
  content: "Purchased";
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #388e3c;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.no-tickets-message {
  font-family: "Space Mono", monospace;
  text-align: center;
  color: #d9d9d9;
  font-size: 1rem;
}

.section-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.ticket-info {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ticket-info span {
  color: #ffffff;
  font-weight: 700;
}

/* Ticket */

.ticketContainer {
  display: flex;
  flex-direction: row; /* Display tickets side-by-side */
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 50px;
}

/* Main Ticket Style */
.ticket {
  background-color: transparent; /* Parent container is transparent */
  width: 320px; /* Set a fixed width */
  height: 400px; /* Set a fixed height */
  perspective: 1000px; /* Gives the 3D effect */
  cursor: pointer;
  position: relative;
}

/* Card Flipping Container */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d; /* Key to making the 3D flip work */
}

/* Flip the card on hover */
.ticket:hover .card-inner {
  transform: rotateY(180deg);
}

/* Style for the front and back of the card */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: darkslategray;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.1s ease;
  color: white;
  border-radius: 12px;
  backface-visibility: hidden; /* This hides the back side of the card when it's not facing you */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.card-back {
  background-color: #333; /* Different background for the back */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transform: rotateY(180deg); /* Initial rotation to hide the back side */
  padding: 20px;
}

/* Back of the card styles */
.music-event-image {
  width: 90%;
  height: 60%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}
.music-event-info h3 {
  margin: 0;
  font-size: 1.5rem;
}
.music-event-info p {
  font-style: italic;
  font-size: 0.9rem;
}
.buy-button {
  background-color: #fff; /* Netflix red, for style */
  color: #000;
  border: none;
  padding: 10px 20px;
  width: 250px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}
.buy-button:hover {
  background-color: rgb(11, 75, 90);
  color: white;
}

/* Front of the card content - adapted from your original styles */
.ticketTitle {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 16px 4px;
}
hr {
  width: 100%;
  border: 1px solid #d9d9d9;
}
.ticketDetail {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 4px 16px;
}
.ticketSubDetail {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  padding: 12px 16px;
}
.ticketSubDetail .code {
  margin-right: 24px;
}

/* Ticket Ripper */
.ticketRip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.circleLeft,
.circleRight {
  width: 15px;
  height: 30px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
}
.circleLeft {
  left: -2px;
  border-radius: 0 12px 12px 0;
}
.circleRight {
  right: -2px;
  border-radius: 12px 0 0 12px;
}
.ripLine {
  width: 100%;
  border-top: 3px solid #d9d9d9;
  border-top-style: dashed;
}


