/**
 * Onboarding Steps Styles
 * Visual styles for step indicators and transitions
 */

/* Step Indicators */
.step-indicator {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-indicator.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.step-indicator.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.step-indicator.disabled {
    background: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

/* Step Navigation */
.step-nav-item {
    transition: all 0.2s ease;
}

.step-nav-item.clickable {
    cursor: pointer;
}

.step-nav-item.clickable:hover .step-indicator {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Progress Lines */
#progress-line-1,
#progress-line-2,
#progress-line-3 {
    transition: background 0.4s ease;
}

.progress-line.completed,
#progress-line-1.completed,
#progress-line-2.completed,
#progress-line-3.completed {
    background: linear-gradient(to right, #10b981, #059669) !important;
}

/* Step Container Transitions */
#step-container {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.loading-spinner {
    animation: spin 1s linear infinite;
}

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