/* Launchpad-specific styles */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem;
}

.slot-grid button {
  background: #0078f3;
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
}

.slot-grid button.slot-available:hover {
  background: #005fcc;
}

.slot-grid button.slot-booked {
  background: #ccc;
  cursor: not-allowed;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}

