.ticket-demo {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ticket-list {
  width: 30%;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  min-height: 200px;
}

.ticket-list h2 {
  text-align: center;
  margin-bottom: 15px;
}

.ticket-list ul {
  list-style: none;
  padding: 0;
}

.ticket-list li {
  background: #0a3d91;
  color: white;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ticket-list li.ready {
  background: #28a745;
}

.ticket-list li.completed {
  background: #6c757d;
}

.ticket-list li:hover {
  transform: scale(1.05);
}

.controls {
  margin-top: 30px;
  text-align: center;
}

.controls input {
  padding: 10px;
  font-size: 16px;
  width: 120px;
  margin-right: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.controls button {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  background: #0a3d91;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.controls button:hover {
  transform: translateY(-3px);
}