/* Botón Agregar Ticket grande y visible */
a#new_ticket {
  background-color: #007bff !important;
  color: white !important;
  font-weight: bold;
  border-radius: 12px;
  padding: 18px 36px !important;
  font-size: 20px !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

/* Efecto al pasar el mouse */
a#new_ticket:hover {
  background-color: #0056b3 !important;
  transform: scale(1.08);
}

