/* Queue Screen Shadow CSS */

/* Queue Screen Styles */
.queue-screen {
  padding: 24px;
  text-align: center;
}

.queue-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.queue-icon svg {
  width: 24px;
  height: 24px;
}

.queue-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
}

.queue-message {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.queue-position {
  font-size: 24px;
  font-weight: bold;
  color: #667eea;
  margin: 16px 0;
}

/* Responsive */
@media (max-width: 480px) {
  .queue-screen {
    padding: 20px;
  }
}