/* 
 * Queue Page Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout, spacing, and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Queue page background - brand gradient */
.queue-page {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Queue card - brand-specific backdrop blur */
.queue-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* Brand-specific join queue button */
.btn-join-queue-primary {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
  color: white;
  border: 2px solid white;
  border-radius: 12px;
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 109, 143, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
}

.btn-join-queue-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 143, 0.5);
  background: linear-gradient(135deg, #AA00CC 0%, #006D8F 100%);
  color: white;
}

.btn-join-queue-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 109, 143, 0.3);
}

.btn-join-queue-primary:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Queue status badges - brand-specific styling */
.queue-status-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Leave queue button - brand-specific styling */
.btn-leave-queue {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-leave-queue:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-leave-queue:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Queue step numbers - brand color */
.queue-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #006D8F;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Queue info card - brand-specific styling */
.queue-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Queue profile card - brand-specific styling */
.queue-profile-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.queue-profile-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 109, 143, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.queue-profile-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #006D8F;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  border: 3px solid rgba(0, 109, 143, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Fit check button - brand-specific styling */
.btn-fit-check-profile {
  background: #f8f9fa;
  color: #006D8F;
  border: 1px solid #e4e6eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-fit-check-profile:hover {
  background: #006D8F;
  color: white;
  border-color: #006D8F;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 109, 143, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .queue-welcome {
    font-size: 2rem;
  }
  
  .queue-card h2 {
    font-size: 1.8rem;
  }
}
