

/*--------------------------------------------------------------
# FASES
--------------------------------------------------------------*/


.ticket-card {
    transition: transform 0.3s ease-in-out;
  }
  
  .ticket-card .card-header h4{
    color: white !important;
  }
  
  .ticket-card:hover {
    transform: scale(1.05);
  }
  
  .current-stage {
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
    animation: breathe 3s infinite ease-in-out;
  }
  
  
  
  .sold-stage {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .sold-stage .card-header {
    background-color: #e22322 !important;
  }
  
  .disabled-stage {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  @keyframes breathe {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.04);
    }
  
    100% {
      transform: scale(1);
    }
  }


  /*--------------------------------------------------------------
  # SEATING
  --------------------------------------------------------------*/

  .resumen-funcion {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08), 0px 4px 8px rgba(0, 0, 0, 0.06);
    border-radius: 1rem !important;
    background: white;
    padding: 1rem;
  }

  /* 🎟️ Estilos para la tabla de asientos */
.selected-seats {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 1rem !important;
  background: white;
}

.selected-seats h3 {
  background-color: black;
  text-align: center;
  letter-spacing: .25rem;
  color: #ffffff;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
  text-transform: uppercase;
}


