.ticket-prices-dialog {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  margin: 0 auto;
}

.ticket-prices-close-btn {
  cursor: pointer;
  font-size: 1.5rem;
}
/* .ticket-prices-btn {
  z-index: 1;
  position: absolute;
  top: 20px;
  right: 15px;
  outline: none;
  background-color: #000c !important;
  border-color: transparent;
  border: none;
  color: #fffc !important;
  box-shadow: none;
} */
.ticket-type {
  font-weight: 500;
  color: #333;
}

.ticket-price {
  font-weight: 700;
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .ticket-prices-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
}