/* Standalone Onboarding Step Styles */
.standalone-onboarding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.onboarding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.onboarding-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.onboarding-header h2 i {
    margin-right: 10px;
    color: #28a745;
}

.step-navigation {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 5px;
}

.step-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    min-width: 100px;
    text-decoration: none;
    color: #495057;
    position: relative;
    transition: all 0.2s;
}

.step-button:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #dee2e6;
}

.step-button.active {
    color: #28a745;
}

.step-button.active .step-number {
    background-color: #28a745;
    color: white;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 50%;
    margin-bottom: 5px;
    font-weight: bold;
    transition: all 0.2s;
}

.step-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.step-content-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .step-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-button {
        margin: 5px;
    }
    
    .step-button:not(:last-child)::after {
        display: none;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .navigation-buttons .btn {
        width: 100%;
    }
    
    .progress-text-responsive {
        font-size: 0.75rem !important;
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .onboarding-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .onboarding-header h2 {
        font-size: 20px;
    }
}
