
  /* Card styling */
  .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
  }

  /* Poster container */
  .card-img-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  /* Poster image */
  .card-img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Event details styling */
  .event-details {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
    max-width: 600px;
  }

  .event-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .event-date,
  .event-venue,
  .event-price,
  .event-description,
  .event-category {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* Icons */
  .fas {
    color: #141313;
  }

  /* Quantity controls */
  .quantity-controls .fas {
    color: red;
  }

  .quantity-controls .ticket-input {
    color: red;
    font-weight: bold;
  }

  /* Purchase Tickets Section */
  .purchase-tickets-section {
    max-width: 800px;
    margin: 0 auto;
  }

  /* Ticket Box */
  .ticket-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }

  /* Quantity Controls */
  .quantity-controls {
    align-items: center;
  }

  .quantity-controls .btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .quantity-controls .ticket-input {
    width: 50px;
    text-align: center;
  }

  /* Grand Total */
  .grand-total {
    text-align: right;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }

  /* Guest form styling */
  .guest-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
  }

  .guest-form h3 {
    margin-bottom: 20px;
  }

  /* Sold out styling */
  .sold-out {
    color: #dc3545;
    font-weight: bold;
  }
