.workstation-selector {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.workstation-header {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.workstation-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.workstation-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.workstation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.workstation-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.workstation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.workstation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #667eea;
}

.workstation-card:hover::before {
  transform: scaleX(1);
}

.workstation-icon {
  font-size: 64px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
}

.workstation-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px 0;
  text-align: center;
}

.workstation-card > p {
  color: #64748b;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.workstation-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.workstation-features strong {
  color: #1e293b;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.workstation-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workstation-features li {
  color: #64748b;
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.workstation-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.workstation-features .more-features {
  color: #6366f1;
  font-weight: 500;
}

.workstation-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: #667eea;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.workstation-card:hover .workstation-arrow {
  opacity: 1;
  transform: translateX(0);
}

.workstation-loading {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.workstation-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.workstation-empty {
  text-align: center;
  padding: 60px 20px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.workstation-empty p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .workstation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .workstation-header h1 {
    font-size: 2rem;
  }
}

