.ticket-qty-input {
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: bold !important;
    font-size: 22px !important;
    outline: none !important;
    box-shadow: none !important;
}

.ticket-qty-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ticket-qty-input:read-only {
    background: transparent !important;
    opacity: 0.65;
}

.ticket-card {
    max-width: 800px !important;
    width: 90% !important;
    margin: 0 auto;
}

.ticket-wrapper {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgb(57, 54, 79);
  letter-spacing: 0.25px;
  font-size: 18px;
}

.ticket-title {
  font-weight: 500; /* slightly bolder */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: help; /* shows pointer to indicate tooltip */
}

.ticket-price {
  font-weight: 400;
  color: rgb(100, 98, 120); /* a bit lighter than main text */
  letter-spacing: 0.25px;
  font-size: 16px;
}

/* Optionally style the quantity controls too to blend nicely */
.qty-buttons button,
.ticket-qty-input {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.25px;
    width: 50px !important;
    text-align: center;
}

.qty-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
}

.qty-buttons .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* makes it circular */
}
 
/* Default state for minus */
.qty-minus {
    background-color: #f8f9fa;
    border-radius: 50%;
    align-items: center;
    text-align: center;
    text-justify: center;
}

/* Filled minus when quantity > 0 */
.qty-minus.active {
    border-color: #ccc !important;
    color: #fff;
    border-radius: 50%;
    border: 1px solid;

}

.qty-minus:hover {
    background-color: #ccc !important;
    color: #fff;
    border-color: #ccc !important;
    border-radius: 50%;
    border: 1px solid;

}

@media (max-width: 576px) {
  .ticket-info {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .ticket-title {
    font-size: 16px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ticket-price {
    font-size: 14px !important;
  }

  .ticket-wrapper {
    font-size: 16px !important;
  }

  .qty-buttons {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .qty-buttons button,
  .ticket-qty-input {
    width: 40px !important;
    font-size: 16px !important;
  }

  .qty-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 130px;
    }

  .quantity-controls {
    text-align: right !important;
  }

  .badge.bg-info {
    font-size: 12px;
    max-width: 80px;
  }
}
